blob: 53d6c331806988e6a45189abbdae4edbce44f6ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03002 * thinkpad_acpi.c - ThinkPad ACPI Extras
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
Henrique de Moraes Holschuh1c762ca2009-04-04 04:25:42 +00006 * Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
Henrique de Moraes Holschuha62bc912007-03-23 17:33:58 -030020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
Borislav Deianov78f81cc2005-08-17 00:00:00 -040022 */
23
Henrique de Moraes Holschuhb57f7e72009-04-14 02:44:14 +000024#define TPACPI_VERSION "0.23"
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +000025#define TPACPI_SYSFS_VERSION 0x020600
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
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300148/* HKEY events */
149enum tpacpi_hkey_event_t {
150 /* Hotkey-related */
151 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
152 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
153 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
154 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
155 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
156 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
157
158 /* Reasons for waking up from S3/S4 */
159 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
160 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
161 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
162 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
163 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
164 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
165
166 /* Auto-sleep after eject request */
167 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
168 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
169
170 /* Misc bay events */
171 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
172
173 /* User-interface events */
174 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
175 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
176 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
177 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
178 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
179 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
180 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
181
182 /* Thermal events */
183 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
184 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
185 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
186 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
187 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
188
189 /* Misc */
190 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
191};
192
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200193/****************************************************************************
194 * Main driver
195 */
196
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200197#define TPACPI_NAME "thinkpad"
198#define TPACPI_DESC "ThinkPad ACPI Extras"
199#define TPACPI_FILE TPACPI_NAME "_acpi"
200#define TPACPI_URL "http://ibm-acpi.sf.net/"
201#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200202
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200203#define TPACPI_PROC_DIR "ibm"
204#define TPACPI_ACPI_EVENT_PREFIX "ibm"
205#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300206#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200207#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200208
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300209#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300210#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300211
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200212#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200213
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000214/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200215#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000216#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
217#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
218#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
219#define TPACPI_ERR KERN_ERR TPACPI_LOG
220#define TPACPI_WARN KERN_WARNING TPACPI_LOG
221#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
222#define TPACPI_INFO KERN_INFO TPACPI_LOG
223#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200224
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000225/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200226#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000227#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200228#define TPACPI_DBG_INIT 0x0001
229#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +0000230#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000231#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000232#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000233#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200234
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200235#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
236#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
237#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200238
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200239
240/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200241 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200242 */
243
244struct ibm_struct;
245
246struct tp_acpi_drv_struct {
247 const struct acpi_device_id *hid;
248 struct acpi_driver *driver;
249
250 void (*notify) (struct ibm_struct *, u32);
251 acpi_handle *handle;
252 u32 type;
253 struct acpi_device *device;
254};
255
256struct ibm_struct {
257 char *name;
258
259 int (*read) (char *);
260 int (*write) (char *);
261 void (*exit) (void);
262 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200263 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200264 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200265
266 struct list_head all_drivers;
267
268 struct tp_acpi_drv_struct *acpi;
269
270 struct {
271 u8 acpi_driver_registered:1;
272 u8 acpi_notify_installed:1;
273 u8 proc_created:1;
274 u8 init_called:1;
275 u8 experimental:1;
276 } flags;
277};
278
279struct ibm_init_struct {
280 char param[32];
281
282 int (*init) (struct ibm_init_struct *);
283 struct ibm_struct *data;
284};
285
286static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200287 u32 bluetooth:1;
288 u32 hotkey:1;
289 u32 hotkey_mask:1;
290 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200291 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200292 u32 light:1;
293 u32 light_status:1;
294 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300295 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200296 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200297 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200298 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300299 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300300 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200301 u32 input_device_registered:1;
302 u32 platform_drv_registered:1;
303 u32 platform_drv_attrs_registered:1;
304 u32 sensors_pdrv_registered:1;
305 u32 sensors_pdrv_attrs_registered:1;
306 u32 sensors_pdev_attrs_registered:1;
307 u32 hotkey_poll_active:1;
308} tp_features;
309
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300310static struct {
311 u16 hotkey_mask_ff:1;
312} tp_warned;
313
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200314struct thinkpad_id_data {
315 unsigned int vendor; /* ThinkPad vendor:
316 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
317
318 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
319 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
320
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300321 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200322 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300323 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
324 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200325
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300326 char *model_str; /* ThinkPad T43 */
327 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200328};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200329static struct thinkpad_id_data thinkpad_id;
330
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300331static enum {
332 TPACPI_LIFE_INIT = 0,
333 TPACPI_LIFE_RUNNING,
334 TPACPI_LIFE_EXITING,
335} tpacpi_lifecycle;
336
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200337static int experimental;
338static u32 dbg_level;
339
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300340static struct workqueue_struct *tpacpi_wq;
341
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000342enum led_status_t {
343 TPACPI_LED_OFF = 0,
344 TPACPI_LED_ON,
345 TPACPI_LED_BLINK,
346};
347
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300348/* Special LED class that can defer work */
349struct tpacpi_led_classdev {
350 struct led_classdev led_classdev;
351 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000352 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300353 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300354};
355
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200356#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
357static int dbg_wlswemul;
358static int tpacpi_wlsw_emulstate;
359static int dbg_bluetoothemul;
360static int tpacpi_bluetooth_emulstate;
361static int dbg_wwanemul;
362static int tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200363static int dbg_uwbemul;
364static int tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200365#endif
366
367
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000368/*************************************************************************
369 * Debugging helpers
370 */
371
372#define dbg_printk(a_dbg_level, format, arg...) \
373 do { if (dbg_level & (a_dbg_level)) \
374 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
375 } while (0)
376
377#ifdef CONFIG_THINKPAD_ACPI_DEBUG
378#define vdbg_printk dbg_printk
379static const char *str_supported(int is_supported);
380#else
381#define vdbg_printk(a_dbg_level, format, arg...) \
382 do { } while (0)
383#endif
384
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000385static void tpacpi_log_usertask(const char * const what)
386{
387 printk(TPACPI_DEBUG "%s: access by process with PID %d\n",
388 what, task_tgid_vnr(current));
389}
390
391#define tpacpi_disclose_usertask(what, format, arg...) \
392 do { \
393 if (unlikely( \
394 (dbg_level & TPACPI_DBG_DISCLOSETASK) && \
395 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
396 printk(TPACPI_DEBUG "%s: PID %d: " format, \
397 what, task_tgid_vnr(current), ## arg); \
398 } \
399 } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000400
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300401/*
402 * Quirk handling helpers
403 *
404 * ThinkPad IDs and versions seen in the field so far
405 * are two-characters from the set [0-9A-Z], i.e. base 36.
406 *
407 * We use values well outside that range as specials.
408 */
409
410#define TPACPI_MATCH_ANY 0xffffU
411#define TPACPI_MATCH_UNKNOWN 0U
412
413/* TPID('1', 'Y') == 0x5931 */
414#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
415
416#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
417 { .vendor = PCI_VENDOR_ID_IBM, \
418 .bios = TPID(__id1, __id2), \
419 .ec = TPACPI_MATCH_ANY, \
420 .quirks = (__quirk) }
421
422#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
423 { .vendor = PCI_VENDOR_ID_LENOVO, \
424 .bios = TPID(__id1, __id2), \
425 .ec = TPACPI_MATCH_ANY, \
426 .quirks = (__quirk) }
427
428struct tpacpi_quirk {
429 unsigned int vendor;
430 u16 bios;
431 u16 ec;
432 unsigned long quirks;
433};
434
435/**
436 * tpacpi_check_quirks() - search BIOS/EC version on a list
437 * @qlist: array of &struct tpacpi_quirk
438 * @qlist_size: number of elements in @qlist
439 *
440 * Iterates over a quirks list until one is found that matches the
441 * ThinkPad's vendor, BIOS and EC model.
442 *
443 * Returns 0 if nothing matches, otherwise returns the quirks field of
444 * the matching &struct tpacpi_quirk entry.
445 *
446 * The match criteria is: vendor, ec and bios much match.
447 */
448static unsigned long __init tpacpi_check_quirks(
449 const struct tpacpi_quirk *qlist,
450 unsigned int qlist_size)
451{
452 while (qlist_size) {
453 if ((qlist->vendor == thinkpad_id.vendor ||
454 qlist->vendor == TPACPI_MATCH_ANY) &&
455 (qlist->bios == thinkpad_id.bios_model ||
456 qlist->bios == TPACPI_MATCH_ANY) &&
457 (qlist->ec == thinkpad_id.ec_model ||
458 qlist->ec == TPACPI_MATCH_ANY))
459 return qlist->quirks;
460
461 qlist_size--;
462 qlist++;
463 }
464 return 0;
465}
466
467
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300468/****************************************************************************
469 ****************************************************************************
470 *
471 * ACPI Helpers and device model
472 *
473 ****************************************************************************
474 ****************************************************************************/
475
476/*************************************************************************
477 * ACPI basic handles
478 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300480static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200482#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 static acpi_handle object##_handle; \
484 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400485 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 static char *object##_paths[] = { paths }
487
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200488TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400489 "\\_SB.PCI.ISA.EC", /* 570 */
490 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
491 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
492 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
493 "\\_SB.PCI0.ICH3.EC0", /* R31 */
494 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300495 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200497TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
498TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200500TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
501 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400502 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
503 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300504 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400505
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200506TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400507 "^HKEY", /* R30, R31 */
508 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300509 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400510
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200511TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
512 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
513 "\\_SB.PCI0.VID0", /* 770e */
514 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
515 "\\_SB.PCI0.AGP.VID", /* all others */
516 ); /* R30, R31 */
517
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400518
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300519/*************************************************************************
520 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200521 */
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523static int acpi_evalf(acpi_handle handle,
524 void *res, char *method, char *fmt, ...)
525{
526 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400527 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200528 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400529 struct acpi_buffer result, *resultp;
530 union acpi_object out_obj;
531 acpi_status status;
532 va_list ap;
533 char res_type;
534 int success;
535 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200538 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
540 }
541
542 if (*fmt == 'q') {
543 quiet = 1;
544 fmt++;
545 } else
546 quiet = 0;
547
548 res_type = *(fmt++);
549
550 params.count = 0;
551 params.pointer = &in_objs[0];
552
553 va_start(ap, fmt);
554 while (*fmt) {
555 char c = *(fmt++);
556 switch (c) {
557 case 'd': /* int */
558 in_objs[params.count].integer.value = va_arg(ap, int);
559 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
560 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400561 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200563 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 "with invalid format character '%c'\n", c);
565 return 0;
566 }
567 }
568 va_end(ap);
569
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400570 if (res_type != 'v') {
571 result.length = sizeof(out_obj);
572 result.pointer = &out_obj;
573 resultp = &result;
574 } else
575 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400577 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400580 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (res)
582 *(int *)res = out_obj.integer.value;
583 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
584 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400585 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 success = status == AE_OK;
587 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400588 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200590 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 "with invalid format character '%c'\n", res_type);
592 return 0;
593 }
594
595 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200596 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 method, fmt0, status);
598
599 return success;
600}
601
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200602static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300603{
604 int v;
605
606 if (ecrd_handle) {
607 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
608 return 0;
609 *p = v;
610 } else {
611 if (ec_read(i, p) < 0)
612 return 0;
613 }
614
615 return 1;
616}
617
618static int acpi_ec_write(int i, u8 v)
619{
620 if (ecwr_handle) {
621 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
622 return 0;
623 } else {
624 if (ec_write(i, v) < 0)
625 return 0;
626 }
627
628 return 1;
629}
630
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300631static int issue_thinkpad_cmos_command(int cmos_cmd)
632{
633 if (!cmos_handle)
634 return -ENXIO;
635
636 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
637 return -EIO;
638
639 return 0;
640}
641
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300642/*************************************************************************
643 * ACPI device model
644 */
645
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200646#define TPACPI_ACPIHANDLE_INIT(object) \
647 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200648 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
649
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300650static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300651 acpi_handle *handle, acpi_handle parent,
652 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300653{
654 int i;
655 acpi_status status;
656
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300657 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
658 name);
659
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300660 for (i = 0; i < num_paths; i++) {
661 status = acpi_get_handle(parent, paths[i], handle);
662 if (ACPI_SUCCESS(status)) {
663 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300664 dbg_printk(TPACPI_DBG_INIT,
665 "Found ACPI handle %s for %s\n",
666 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300667 return;
668 }
669 }
670
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300671 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
672 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300673 *handle = NULL;
674}
675
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300676static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300677{
678 struct ibm_struct *ibm = data;
679
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300680 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
681 return;
682
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300683 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300684 return;
685
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300686 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300687}
688
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300689static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300690{
691 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300692 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300693
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300694 BUG_ON(!ibm->acpi);
695
696 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300697 return 0;
698
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300699 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300700 "setting up ACPI notify for %s\n", ibm->name);
701
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300702 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
703 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200704 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300705 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300706 return -ENODEV;
707 }
708
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700709 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300710 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200711 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300712 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300713
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300714 status = acpi_install_notify_handler(*ibm->acpi->handle,
715 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300716 if (ACPI_FAILURE(status)) {
717 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200718 printk(TPACPI_NOTICE
719 "another device driver is already "
720 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300721 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200722 printk(TPACPI_ERR
723 "acpi_install_notify_handler(%s) failed: %d\n",
724 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300725 }
726 return -ENODEV;
727 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300728 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300729 return 0;
730}
731
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300732static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300733{
734 return 0;
735}
736
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300737static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300738{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300739 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300740
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300741 dbg_printk(TPACPI_DBG_INIT,
742 "registering %s as an ACPI driver\n", ibm->name);
743
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300744 BUG_ON(!ibm->acpi);
745
746 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
747 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300748 printk(TPACPI_ERR
749 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300750 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300751 }
752
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200753 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300754 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200755
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300756 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300757
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300758 rc = acpi_bus_register_driver(ibm->acpi->driver);
759 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200760 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200761 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300762 kfree(ibm->acpi->driver);
763 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300764 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300765 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300766
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300767 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300768}
769
770
771/****************************************************************************
772 ****************************************************************************
773 *
774 * Procfs Helpers
775 *
776 ****************************************************************************
777 ****************************************************************************/
778
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300779static int dispatch_procfs_read(char *page, char **start, off_t off,
780 int count, int *eof, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300781{
782 struct ibm_struct *ibm = data;
783 int len;
784
785 if (!ibm || !ibm->read)
786 return -EINVAL;
787
788 len = ibm->read(page);
789 if (len < 0)
790 return len;
791
792 if (len <= off + count)
793 *eof = 1;
794 *start = page + off;
795 len -= off;
796 if (len > count)
797 len = count;
798 if (len < 0)
799 len = 0;
800
801 return len;
802}
803
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300804static int dispatch_procfs_write(struct file *file,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200805 const char __user *userbuf,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300806 unsigned long count, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300807{
808 struct ibm_struct *ibm = data;
809 char *kernbuf;
810 int ret;
811
812 if (!ibm || !ibm->write)
813 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300814 if (count > PAGE_SIZE - 2)
815 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300816
817 kernbuf = kmalloc(count + 2, GFP_KERNEL);
818 if (!kernbuf)
819 return -ENOMEM;
820
821 if (copy_from_user(kernbuf, userbuf, count)) {
822 kfree(kernbuf);
823 return -EFAULT;
824 }
825
826 kernbuf[count] = 0;
827 strcat(kernbuf, ",");
828 ret = ibm->write(kernbuf);
829 if (ret == 0)
830 ret = count;
831
832 kfree(kernbuf);
833
834 return ret;
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static char *next_cmd(char **cmds)
838{
839 char *start = *cmds;
840 char *end;
841
842 while ((end = strchr(start, ',')) && end == start)
843 start = end + 1;
844
845 if (!end)
846 return NULL;
847
848 *end = 0;
849 *cmds = end + 1;
850 return start;
851}
852
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300853
854/****************************************************************************
855 ****************************************************************************
856 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300857 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300858 *
859 ****************************************************************************
860 ****************************************************************************/
861
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300862static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300863static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700864static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300865static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300866static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200867static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300868
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200869static int tpacpi_suspend_handler(struct platform_device *pdev,
870 pm_message_t state)
871{
872 struct ibm_struct *ibm, *itmp;
873
874 list_for_each_entry_safe(ibm, itmp,
875 &tpacpi_all_drivers,
876 all_drivers) {
877 if (ibm->suspend)
878 (ibm->suspend)(state);
879 }
880
881 return 0;
882}
883
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300884static int tpacpi_resume_handler(struct platform_device *pdev)
885{
886 struct ibm_struct *ibm, *itmp;
887
888 list_for_each_entry_safe(ibm, itmp,
889 &tpacpi_all_drivers,
890 all_drivers) {
891 if (ibm->resume)
892 (ibm->resume)();
893 }
894
895 return 0;
896}
897
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200898static void tpacpi_shutdown_handler(struct platform_device *pdev)
899{
900 struct ibm_struct *ibm, *itmp;
901
902 list_for_each_entry_safe(ibm, itmp,
903 &tpacpi_all_drivers,
904 all_drivers) {
905 if (ibm->shutdown)
906 (ibm->shutdown)();
907 }
908}
909
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300910static struct platform_driver tpacpi_pdriver = {
911 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200912 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300913 .owner = THIS_MODULE,
914 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200915 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300916 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200917 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300918};
919
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300920static struct platform_driver tpacpi_hwmon_pdriver = {
921 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200922 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300923 .owner = THIS_MODULE,
924 },
925};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300926
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300927/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300928 * sysfs support helpers
929 */
930
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200931struct attribute_set {
932 unsigned int members, max_members;
933 struct attribute_group group;
934};
935
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300936struct attribute_set_obj {
937 struct attribute_set s;
938 struct attribute *a;
939} __attribute__((packed));
940
941static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200942 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300943{
944 struct attribute_set_obj *sobj;
945
946 if (max_members == 0)
947 return NULL;
948
949 /* Allocates space for implicit NULL at the end too */
950 sobj = kzalloc(sizeof(struct attribute_set_obj) +
951 max_members * sizeof(struct attribute *),
952 GFP_KERNEL);
953 if (!sobj)
954 return NULL;
955 sobj->s.max_members = max_members;
956 sobj->s.group.attrs = &sobj->a;
957 sobj->s.group.name = name;
958
959 return &sobj->s;
960}
961
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200962#define destroy_attr_set(_set) \
963 kfree(_set);
964
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300965/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200966static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300967{
968 if (!s || !attr)
969 return -EINVAL;
970
971 if (s->members >= s->max_members)
972 return -ENOMEM;
973
974 s->group.attrs[s->members] = attr;
975 s->members++;
976
977 return 0;
978}
979
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200980static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300981 struct attribute **attr,
982 unsigned int count)
983{
984 int i, res;
985
986 for (i = 0; i < count; i++) {
987 res = add_to_attr_set(s, attr[i]);
988 if (res)
989 return res;
990 }
991
992 return 0;
993}
994
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200995static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300996{
997 sysfs_remove_group(kobj, &s->group);
998 destroy_attr_set(s);
999}
1000
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001001#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1002 sysfs_create_group(_kobj, &_attr_set->group)
1003
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001004static int parse_strtoul(const char *buf,
1005 unsigned long max, unsigned long *value)
1006{
1007 char *endp;
1008
Henrique de Moraes Holschuh32afbf02007-10-08 10:12:56 -03001009 while (*buf && isspace(*buf))
1010 buf++;
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001011 *value = simple_strtoul(buf, &endp, 0);
1012 while (*endp && isspace(*endp))
1013 endp++;
1014 if (*endp || *value > max)
1015 return -EINVAL;
1016
1017 return 0;
1018}
1019
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03001020static void tpacpi_disable_brightness_delay(void)
1021{
1022 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
1023 printk(TPACPI_NOTICE
1024 "ACPI backlight control delay disabled\n");
1025}
1026
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03001027static int __init tpacpi_query_bcl_levels(acpi_handle handle)
1028{
1029 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1030 union acpi_object *obj;
1031 int rc;
1032
1033 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
1034 obj = (union acpi_object *)buffer.pointer;
1035 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
1036 printk(TPACPI_ERR "Unknown _BCL data, "
1037 "please report this to %s\n", TPACPI_MAIL);
1038 rc = 0;
1039 } else {
1040 rc = obj->package.count;
1041 }
1042 } else {
1043 return 0;
1044 }
1045
1046 kfree(buffer.pointer);
1047 return rc;
1048}
1049
1050static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
1051 u32 lvl, void *context, void **rv)
1052{
1053 char name[ACPI_PATH_SEGMENT_LENGTH];
1054 struct acpi_buffer buffer = { sizeof(name), &name };
1055
1056 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
1057 !strncmp("_BCL", name, sizeof(name) - 1)) {
1058 BUG_ON(!rv || !*rv);
1059 **(int **)rv = tpacpi_query_bcl_levels(handle);
1060 return AE_CTRL_TERMINATE;
1061 } else {
1062 return AE_OK;
1063 }
1064}
1065
1066/*
1067 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
1068 */
1069static int __init tpacpi_check_std_acpi_brightness_support(void)
1070{
1071 int status;
1072 int bcl_levels = 0;
1073 void *bcl_ptr = &bcl_levels;
1074
1075 if (!vid_handle) {
1076 TPACPI_ACPIHANDLE_INIT(vid);
1077 }
1078 if (!vid_handle)
1079 return 0;
1080
1081 /*
1082 * Search for a _BCL method, and execute it. This is safe on all
1083 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
1084 * BIOS in ACPI backlight control mode. We do NOT have to care
1085 * about calling the _BCL method in an enabled video device, any
1086 * will do for our purposes.
1087 */
1088
1089 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
1090 tpacpi_acpi_walk_find_bcl, NULL,
1091 &bcl_ptr);
1092
1093 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
1094 tp_features.bright_acpimode = 1;
1095 return (bcl_levels - 2);
1096 }
1097
1098 return 0;
1099}
1100
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001101static void printk_deprecated_attribute(const char * const what,
1102 const char * const details)
1103{
1104 tpacpi_log_usertask("deprecated sysfs attribute");
1105 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1106 "will be removed. %s\n",
1107 what, details);
1108}
1109
Johannes Berg19d337d2009-06-02 13:01:37 +02001110/*************************************************************************
1111 * rfkill and radio control support helpers
1112 */
1113
1114/*
1115 * ThinkPad-ACPI firmware handling model:
1116 *
1117 * WLSW (master wireless switch) is event-driven, and is common to all
1118 * firmware-controlled radios. It cannot be controlled, just monitored,
1119 * as expected. It overrides all radio state in firmware
1120 *
1121 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1122 * (TODO: verify how WLSW interacts with the returned radio state).
1123 *
1124 * The only time there are shadow radio state changes, is when
1125 * masked-off hotkeys are used.
1126 */
1127
1128/*
1129 * Internal driver API for radio state:
1130 *
1131 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1132 * bool: true means radio blocked (off)
1133 */
1134enum tpacpi_rfkill_state {
1135 TPACPI_RFK_RADIO_OFF = 0,
1136 TPACPI_RFK_RADIO_ON
1137};
1138
1139/* rfkill switches */
1140enum tpacpi_rfk_id {
1141 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1142 TPACPI_RFK_WWAN_SW_ID,
1143 TPACPI_RFK_UWB_SW_ID,
1144 TPACPI_RFK_SW_MAX
1145};
1146
1147static const char *tpacpi_rfkill_names[] = {
1148 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1149 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1150 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1151 [TPACPI_RFK_SW_MAX] = NULL
1152};
1153
1154/* ThinkPad-ACPI rfkill subdriver */
1155struct tpacpi_rfk {
1156 struct rfkill *rfkill;
1157 enum tpacpi_rfk_id id;
1158 const struct tpacpi_rfk_ops *ops;
1159};
1160
1161struct tpacpi_rfk_ops {
1162 /* firmware interface */
1163 int (*get_status)(void);
1164 int (*set_status)(const enum tpacpi_rfkill_state);
1165};
1166
1167static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1168
1169/* Query FW and update rfkill sw state for a given rfkill switch */
1170static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1171{
1172 int status;
1173
1174 if (!tp_rfk)
1175 return -ENODEV;
1176
1177 status = (tp_rfk->ops->get_status)();
1178 if (status < 0)
1179 return status;
1180
1181 rfkill_set_sw_state(tp_rfk->rfkill,
1182 (status == TPACPI_RFK_RADIO_OFF));
1183
1184 return status;
1185}
1186
1187/* Query FW and update rfkill sw state for all rfkill switches */
1188static void tpacpi_rfk_update_swstate_all(void)
1189{
1190 unsigned int i;
1191
1192 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1193 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1194}
1195
1196/*
1197 * Sync the HW-blocking state of all rfkill switches,
1198 * do notice it causes the rfkill core to schedule uevents
1199 */
1200static void tpacpi_rfk_update_hwblock_state(bool blocked)
1201{
1202 unsigned int i;
1203 struct tpacpi_rfk *tp_rfk;
1204
1205 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1206 tp_rfk = tpacpi_rfkill_switches[i];
1207 if (tp_rfk) {
1208 if (rfkill_set_hw_state(tp_rfk->rfkill,
1209 blocked)) {
1210 /* ignore -- we track sw block */
1211 }
1212 }
1213 }
1214}
1215
1216/* Call to get the WLSW state from the firmware */
1217static int hotkey_get_wlsw(void);
1218
1219/* Call to query WLSW state and update all rfkill switches */
1220static bool tpacpi_rfk_check_hwblock_state(void)
1221{
1222 int res = hotkey_get_wlsw();
1223 int hw_blocked;
1224
1225 /* When unknown or unsupported, we have to assume it is unblocked */
1226 if (res < 0)
1227 return false;
1228
1229 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1230 tpacpi_rfk_update_hwblock_state(hw_blocked);
1231
1232 return hw_blocked;
1233}
1234
1235static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1236{
1237 struct tpacpi_rfk *tp_rfk = data;
1238 int res;
1239
1240 dbg_printk(TPACPI_DBG_RFKILL,
1241 "request to change radio state to %s\n",
1242 blocked ? "blocked" : "unblocked");
1243
1244 /* try to set radio state */
1245 res = (tp_rfk->ops->set_status)(blocked ?
1246 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1247
1248 /* and update the rfkill core with whatever the FW really did */
1249 tpacpi_rfk_update_swstate(tp_rfk);
1250
1251 return (res < 0) ? res : 0;
1252}
1253
1254static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1255 .set_block = tpacpi_rfk_hook_set_block,
1256};
1257
1258static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1259 const struct tpacpi_rfk_ops *tp_rfkops,
1260 const enum rfkill_type rfktype,
1261 const char *name,
1262 const bool set_default)
1263{
1264 struct tpacpi_rfk *atp_rfk;
1265 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001266 bool sw_state = false;
1267 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001268
1269 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1270
Johannes Berg19d337d2009-06-02 13:01:37 +02001271 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1272 if (atp_rfk)
1273 atp_rfk->rfkill = rfkill_alloc(name,
1274 &tpacpi_pdev->dev,
1275 rfktype,
1276 &tpacpi_rfk_rfkill_ops,
1277 atp_rfk);
1278 if (!atp_rfk || !atp_rfk->rfkill) {
1279 printk(TPACPI_ERR
1280 "failed to allocate memory for rfkill class\n");
1281 kfree(atp_rfk);
1282 return -ENOMEM;
1283 }
1284
1285 atp_rfk->id = id;
1286 atp_rfk->ops = tp_rfkops;
1287
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001288 sw_status = (tp_rfkops->get_status)();
1289 if (sw_status < 0) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001290 printk(TPACPI_ERR
1291 "failed to read initial state for %s, error %d\n",
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001292 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001293 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001294 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001295 if (set_default) {
1296 /* try to keep the initial state, since we ask the
1297 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001298 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001299 }
1300 }
1301 rfkill_set_hw_state(atp_rfk->rfkill, tpacpi_rfk_check_hwblock_state());
Johannes Berg19d337d2009-06-02 13:01:37 +02001302
1303 res = rfkill_register(atp_rfk->rfkill);
1304 if (res < 0) {
1305 printk(TPACPI_ERR
1306 "failed to register %s rfkill switch: %d\n",
1307 name, res);
1308 rfkill_destroy(atp_rfk->rfkill);
1309 kfree(atp_rfk);
1310 return res;
1311 }
1312
1313 tpacpi_rfkill_switches[id] = atp_rfk;
1314 return 0;
1315}
1316
1317static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1318{
1319 struct tpacpi_rfk *tp_rfk;
1320
1321 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1322
1323 tp_rfk = tpacpi_rfkill_switches[id];
1324 if (tp_rfk) {
1325 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001326 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001327 tpacpi_rfkill_switches[id] = NULL;
1328 kfree(tp_rfk);
1329 }
1330}
1331
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001332static void printk_deprecated_rfkill_attribute(const char * const what)
1333{
1334 printk_deprecated_attribute(what,
1335 "Please switch to generic rfkill before year 2010");
1336}
1337
Johannes Berg19d337d2009-06-02 13:01:37 +02001338/* sysfs <radio> enable ------------------------------------------------ */
1339static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1340 struct device_attribute *attr,
1341 char *buf)
1342{
1343 int status;
1344
1345 printk_deprecated_rfkill_attribute(attr->attr.name);
1346
1347 /* This is in the ABI... */
1348 if (tpacpi_rfk_check_hwblock_state()) {
1349 status = TPACPI_RFK_RADIO_OFF;
1350 } else {
1351 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1352 if (status < 0)
1353 return status;
1354 }
1355
1356 return snprintf(buf, PAGE_SIZE, "%d\n",
1357 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1358}
1359
1360static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1361 struct device_attribute *attr,
1362 const char *buf, size_t count)
1363{
1364 unsigned long t;
1365 int res;
1366
1367 printk_deprecated_rfkill_attribute(attr->attr.name);
1368
1369 if (parse_strtoul(buf, 1, &t))
1370 return -EINVAL;
1371
1372 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1373
1374 /* This is in the ABI... */
1375 if (tpacpi_rfk_check_hwblock_state() && !!t)
1376 return -EPERM;
1377
1378 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1379 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1380 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1381
1382 return (res < 0) ? res : count;
1383}
1384
1385/* procfs -------------------------------------------------------------- */
1386static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, char *p)
1387{
1388 int len = 0;
1389
1390 if (id >= TPACPI_RFK_SW_MAX)
1391 len += sprintf(p + len, "status:\t\tnot supported\n");
1392 else {
1393 int status;
1394
1395 /* This is in the ABI... */
1396 if (tpacpi_rfk_check_hwblock_state()) {
1397 status = TPACPI_RFK_RADIO_OFF;
1398 } else {
1399 status = tpacpi_rfk_update_swstate(
1400 tpacpi_rfkill_switches[id]);
1401 if (status < 0)
1402 return status;
1403 }
1404
1405 len += sprintf(p + len, "status:\t\t%s\n",
1406 (status == TPACPI_RFK_RADIO_ON) ?
1407 "enabled" : "disabled");
1408 len += sprintf(p + len, "commands:\tenable, disable\n");
1409 }
1410
1411 return len;
1412}
1413
1414static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1415{
1416 char *cmd;
1417 int status = -1;
1418 int res = 0;
1419
1420 if (id >= TPACPI_RFK_SW_MAX)
1421 return -ENODEV;
1422
1423 while ((cmd = next_cmd(&buf))) {
1424 if (strlencmp(cmd, "enable") == 0)
1425 status = TPACPI_RFK_RADIO_ON;
1426 else if (strlencmp(cmd, "disable") == 0)
1427 status = TPACPI_RFK_RADIO_OFF;
1428 else
1429 return -EINVAL;
1430 }
1431
1432 if (status != -1) {
1433 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1434 (status == TPACPI_RFK_RADIO_ON) ?
1435 "enable" : "disable",
1436 tpacpi_rfkill_names[id]);
1437 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1438 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1439 }
1440
1441 return res;
1442}
1443
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001444/*************************************************************************
1445 * thinkpad-acpi driver attributes
1446 */
1447
1448/* interface_version --------------------------------------------------- */
1449static ssize_t tpacpi_driver_interface_version_show(
1450 struct device_driver *drv,
1451 char *buf)
1452{
1453 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1454}
1455
1456static DRIVER_ATTR(interface_version, S_IRUGO,
1457 tpacpi_driver_interface_version_show, NULL);
1458
1459/* debug_level --------------------------------------------------------- */
1460static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1461 char *buf)
1462{
1463 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1464}
1465
1466static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1467 const char *buf, size_t count)
1468{
1469 unsigned long t;
1470
1471 if (parse_strtoul(buf, 0xffff, &t))
1472 return -EINVAL;
1473
1474 dbg_level = t;
1475
1476 return count;
1477}
1478
1479static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1480 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1481
1482/* version ------------------------------------------------------------- */
1483static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1484 char *buf)
1485{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001486 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1487 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001488}
1489
1490static DRIVER_ATTR(version, S_IRUGO,
1491 tpacpi_driver_version_show, NULL);
1492
1493/* --------------------------------------------------------------------- */
1494
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001495#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1496
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001497/* wlsw_emulstate ------------------------------------------------------ */
1498static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1499 char *buf)
1500{
1501 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1502}
1503
1504static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1505 const char *buf, size_t count)
1506{
1507 unsigned long t;
1508
1509 if (parse_strtoul(buf, 1, &t))
1510 return -EINVAL;
1511
Johannes Berg19d337d2009-06-02 13:01:37 +02001512 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001513 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001514 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1515 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001516
1517 return count;
1518}
1519
1520static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1521 tpacpi_driver_wlsw_emulstate_show,
1522 tpacpi_driver_wlsw_emulstate_store);
1523
1524/* bluetooth_emulstate ------------------------------------------------- */
1525static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1526 struct device_driver *drv,
1527 char *buf)
1528{
1529 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1530}
1531
1532static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1533 struct device_driver *drv,
1534 const char *buf, size_t count)
1535{
1536 unsigned long t;
1537
1538 if (parse_strtoul(buf, 1, &t))
1539 return -EINVAL;
1540
1541 tpacpi_bluetooth_emulstate = !!t;
1542
1543 return count;
1544}
1545
1546static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1547 tpacpi_driver_bluetooth_emulstate_show,
1548 tpacpi_driver_bluetooth_emulstate_store);
1549
1550/* wwan_emulstate ------------------------------------------------- */
1551static ssize_t tpacpi_driver_wwan_emulstate_show(
1552 struct device_driver *drv,
1553 char *buf)
1554{
1555 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1556}
1557
1558static ssize_t tpacpi_driver_wwan_emulstate_store(
1559 struct device_driver *drv,
1560 const char *buf, size_t count)
1561{
1562 unsigned long t;
1563
1564 if (parse_strtoul(buf, 1, &t))
1565 return -EINVAL;
1566
1567 tpacpi_wwan_emulstate = !!t;
1568
1569 return count;
1570}
1571
1572static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1573 tpacpi_driver_wwan_emulstate_show,
1574 tpacpi_driver_wwan_emulstate_store);
1575
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001576/* uwb_emulstate ------------------------------------------------- */
1577static ssize_t tpacpi_driver_uwb_emulstate_show(
1578 struct device_driver *drv,
1579 char *buf)
1580{
1581 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1582}
1583
1584static ssize_t tpacpi_driver_uwb_emulstate_store(
1585 struct device_driver *drv,
1586 const char *buf, size_t count)
1587{
1588 unsigned long t;
1589
1590 if (parse_strtoul(buf, 1, &t))
1591 return -EINVAL;
1592
1593 tpacpi_uwb_emulstate = !!t;
1594
1595 return count;
1596}
1597
1598static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1599 tpacpi_driver_uwb_emulstate_show,
1600 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001601#endif
1602
1603/* --------------------------------------------------------------------- */
1604
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001605static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001606 &driver_attr_debug_level, &driver_attr_version,
1607 &driver_attr_interface_version,
1608};
1609
1610static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1611{
1612 int i, res;
1613
1614 i = 0;
1615 res = 0;
1616 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1617 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1618 i++;
1619 }
1620
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001621#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1622 if (!res && dbg_wlswemul)
1623 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1624 if (!res && dbg_bluetoothemul)
1625 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1626 if (!res && dbg_wwanemul)
1627 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001628 if (!res && dbg_uwbemul)
1629 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001630#endif
1631
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001632 return res;
1633}
1634
1635static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1636{
1637 int i;
1638
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001639 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001640 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001641
1642#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1643 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1644 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1645 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001646 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001647#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001648}
1649
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001650/*************************************************************************
1651 * Firmware Data
1652 */
1653
1654/*
1655 * Table of recommended minimum BIOS versions
1656 *
1657 * Reasons for listing:
1658 * 1. Stable BIOS, listed because the unknown ammount of
1659 * bugs and bad ACPI behaviour on older versions
1660 *
1661 * 2. BIOS or EC fw with known bugs that trigger on Linux
1662 *
1663 * 3. BIOS with known reduced functionality in older versions
1664 *
1665 * We recommend the latest BIOS and EC version.
1666 * We only support the latest BIOS and EC fw version as a rule.
1667 *
1668 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1669 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001670 *
1671 * WARNING: we use this table also to detect that the machine is
1672 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001673 */
1674
1675#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1676 { .vendor = (__v), \
1677 .bios = TPID(__id1, __id2), \
1678 .ec = TPACPI_MATCH_ANY, \
1679 .quirks = TPACPI_MATCH_ANY << 16 \
1680 | (__bv1) << 8 | (__bv2) }
1681
1682#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001683 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001684 { .vendor = (__v), \
1685 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001686 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001687 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1688 | (__bv1) << 8 | (__bv2) }
1689
1690#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1691 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1692
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001693/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001694#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1695 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001696 __bv1, __bv2, TPID(__id1, __id2), \
1697 __ev1, __ev2), \
1698 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1699 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1700 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001701
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001702/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001703#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1704 __eid1, __eid2, __ev1, __ev2) \
1705 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001706 __bv1, __bv2, TPID(__eid1, __eid2), \
1707 __ev1, __ev2), \
1708 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1709 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1710 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001711
1712#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1713 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1714
1715#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1716 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001717 __bv1, __bv2, TPID(__id1, __id2), \
1718 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001719
1720#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1721 __eid1, __eid2, __ev1, __ev2) \
1722 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001723 __bv1, __bv2, TPID(__eid1, __eid2), \
1724 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001725
1726static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1727 /* Numeric models ------------------ */
1728 /* FW MODEL BIOS VERS */
1729 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1730 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1731 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1732 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1733 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1734 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1735 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1736 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1737 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1738
1739 /* A-series ------------------------- */
1740 /* FW MODEL BIOS VERS EC VERS */
1741 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1742 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1743 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1744 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1745 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1746 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1747 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1748 TPV_QI0('1', '3', '2', '0'), /* A22m */
1749 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1750 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1751 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1752
1753 /* G-series ------------------------- */
1754 /* FW MODEL BIOS VERS */
1755 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1756 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1757
1758 /* R-series, T-series --------------- */
1759 /* FW MODEL BIOS VERS EC VERS */
1760 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1761 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1762 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1763 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1764 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1765 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1766 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1767 T40/p, T41/p, T42/p (1) */
1768 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1769 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1770 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1771 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1772
1773 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1774 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1775 TPV_QI0('1', '6', '3', '2'), /* T22 */
1776 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1777 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1778 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1779
1780 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1781 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001782 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001783
1784 /* BIOS FW BIOS VERS EC FW EC VERS */
1785 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1786 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1787
1788 /* X-series ------------------------- */
1789 /* FW MODEL BIOS VERS EC VERS */
1790 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1791 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1792 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1793 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1794 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1795 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1796 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1797
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001798 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1799 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001800
1801 /* (0) - older versions lack DMI EC fw string and functionality */
1802 /* (1) - older versions known to lack functionality */
1803};
1804
1805#undef TPV_QL1
1806#undef TPV_QL0
1807#undef TPV_QI2
1808#undef TPV_QI1
1809#undef TPV_QI0
1810#undef TPV_Q_X
1811#undef TPV_Q
1812
1813static void __init tpacpi_check_outdated_fw(void)
1814{
1815 unsigned long fwvers;
1816 u16 ec_version, bios_version;
1817
1818 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1819 ARRAY_SIZE(tpacpi_bios_version_qtable));
1820
1821 if (!fwvers)
1822 return;
1823
1824 bios_version = fwvers & 0xffffU;
1825 ec_version = (fwvers >> 16) & 0xffffU;
1826
1827 /* note that unknown versions are set to 0x0000 and we use that */
1828 if ((bios_version > thinkpad_id.bios_release) ||
1829 (ec_version > thinkpad_id.ec_release &&
1830 ec_version != TPACPI_MATCH_ANY)) {
1831 /*
1832 * The changelogs would let us track down the exact
1833 * reason, but it is just too much of a pain to track
1834 * it. We only list BIOSes that are either really
1835 * broken, or really stable to begin with, so it is
1836 * best if the user upgrades the firmware anyway.
1837 */
1838 printk(TPACPI_WARN
1839 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1840 printk(TPACPI_WARN
1841 "WARNING: This firmware may be missing critical bug "
1842 "fixes and/or important features\n");
1843 }
1844}
1845
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001846static bool __init tpacpi_is_fw_known(void)
1847{
1848 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1849 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1850}
1851
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001852/****************************************************************************
1853 ****************************************************************************
1854 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001855 * Subdrivers
1856 *
1857 ****************************************************************************
1858 ****************************************************************************/
1859
1860/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001861 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001862 */
1863
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001864static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001866 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1867 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001869 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001870 (thinkpad_id.bios_version_str) ?
1871 thinkpad_id.bios_version_str : "unknown",
1872 (thinkpad_id.ec_version_str) ?
1873 thinkpad_id.ec_version_str : "unknown");
1874
1875 if (thinkpad_id.vendor && thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001876 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001877 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1878 "IBM" : ((thinkpad_id.vendor ==
1879 PCI_VENDOR_ID_LENOVO) ?
1880 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001881 thinkpad_id.model_str,
1882 (thinkpad_id.nummodel_str) ?
1883 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001884
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001885 tpacpi_check_outdated_fw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return 0;
1887}
1888
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03001889static int thinkpad_acpi_driver_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 int len = 0;
1892
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001893 len += sprintf(p + len, "driver:\t\t%s\n", TPACPI_DESC);
1894 len += sprintf(p + len, "version:\t%s\n", TPACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 return len;
1897}
1898
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001899static struct ibm_struct thinkpad_acpi_driver_data = {
1900 .name = "driver",
1901 .read = thinkpad_acpi_driver_read,
1902};
1903
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001904/*************************************************************************
1905 * Hotkey subdriver
1906 */
1907
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001908/*
1909 * ThinkPad firmware event model
1910 *
1911 * The ThinkPad firmware has two main event interfaces: normal ACPI
1912 * notifications (which follow the ACPI standard), and a private event
1913 * interface.
1914 *
1915 * The private event interface also issues events for the hotkeys. As
1916 * the driver gained features, the event handling code ended up being
1917 * built around the hotkey subdriver. This will need to be refactored
1918 * to a more formal event API eventually.
1919 *
1920 * Some "hotkeys" are actually supposed to be used as event reports,
1921 * such as "brightness has changed", "volume has changed", depending on
1922 * the ThinkPad model and how the firmware is operating.
1923 *
1924 * Unlike other classes, hotkey-class events have mask/unmask control on
1925 * non-ancient firmware. However, how it behaves changes a lot with the
1926 * firmware model and version.
1927 */
1928
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001929enum { /* hot key scan codes (derived from ACPI DSDT) */
1930 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1931 TP_ACPI_HOTKEYSCAN_FNF2,
1932 TP_ACPI_HOTKEYSCAN_FNF3,
1933 TP_ACPI_HOTKEYSCAN_FNF4,
1934 TP_ACPI_HOTKEYSCAN_FNF5,
1935 TP_ACPI_HOTKEYSCAN_FNF6,
1936 TP_ACPI_HOTKEYSCAN_FNF7,
1937 TP_ACPI_HOTKEYSCAN_FNF8,
1938 TP_ACPI_HOTKEYSCAN_FNF9,
1939 TP_ACPI_HOTKEYSCAN_FNF10,
1940 TP_ACPI_HOTKEYSCAN_FNF11,
1941 TP_ACPI_HOTKEYSCAN_FNF12,
1942 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1943 TP_ACPI_HOTKEYSCAN_FNINSERT,
1944 TP_ACPI_HOTKEYSCAN_FNDELETE,
1945 TP_ACPI_HOTKEYSCAN_FNHOME,
1946 TP_ACPI_HOTKEYSCAN_FNEND,
1947 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1948 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1949 TP_ACPI_HOTKEYSCAN_FNSPACE,
1950 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1951 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1952 TP_ACPI_HOTKEYSCAN_MUTE,
1953 TP_ACPI_HOTKEYSCAN_THINKPAD,
1954};
1955
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001956enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001957 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1958 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1959};
1960
1961enum { /* Positions of some of the keys in hotkey masks */
1962 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1963 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1964 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1965 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1966 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1967 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1968 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1969 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1970 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1971 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1972 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1973};
1974
1975enum { /* NVRAM to ACPI HKEY group map */
1976 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1977 TP_ACPI_HKEY_ZOOM_MASK |
1978 TP_ACPI_HKEY_DISPSWTCH_MASK |
1979 TP_ACPI_HKEY_HIBERNATE_MASK,
1980 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1981 TP_ACPI_HKEY_BRGHTDWN_MASK,
1982 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1983 TP_ACPI_HKEY_VOLDWN_MASK |
1984 TP_ACPI_HKEY_MUTE_MASK,
1985};
1986
1987#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1988struct tp_nvram_state {
1989 u16 thinkpad_toggle:1;
1990 u16 zoom_toggle:1;
1991 u16 display_toggle:1;
1992 u16 thinklight_toggle:1;
1993 u16 hibernate_toggle:1;
1994 u16 displayexp_toggle:1;
1995 u16 display_state:1;
1996 u16 brightness_toggle:1;
1997 u16 volume_toggle:1;
1998 u16 mute:1;
1999
2000 u8 brightness_level;
2001 u8 volume_level;
2002};
2003
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002004/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002005static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002006
2007/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002008static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002009
2010/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002011 * Acquire mutex to write poller control variables as an
2012 * atomic block.
2013 *
2014 * Increment hotkey_config_change when changing them if you
2015 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002016 *
2017 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2018 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002019static struct mutex hotkey_thread_data_mutex;
2020static unsigned int hotkey_config_change;
2021
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002022/*
2023 * hotkey poller control variables
2024 *
2025 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002026 *
2027 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2028 * should be used only when the changes need to be taken as
2029 * a block, OR when one needs to force the kthread to forget
2030 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002031 */
2032static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
2033static unsigned int hotkey_poll_freq = 10; /* Hz */
2034
2035#define HOTKEY_CONFIG_CRITICAL_START \
2036 do { \
2037 mutex_lock(&hotkey_thread_data_mutex); \
2038 hotkey_config_change++; \
2039 } while (0);
2040#define HOTKEY_CONFIG_CRITICAL_END \
2041 mutex_unlock(&hotkey_thread_data_mutex);
2042
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002043#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2044
2045#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002046#define HOTKEY_CONFIG_CRITICAL_START
2047#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002048
2049#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2050
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002051static struct mutex hotkey_mutex;
2052
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002053static enum { /* Reasons for waking up */
2054 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2055 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2056 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2057} hotkey_wakeup_reason;
2058
2059static int hotkey_autosleep_ack;
2060
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002061static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2062static u32 hotkey_all_mask; /* all events supported in fw */
2063static u32 hotkey_reserved_mask; /* events better left disabled */
2064static u32 hotkey_driver_mask; /* events needed by the driver */
2065static u32 hotkey_user_mask; /* events visible to userspace */
2066static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002067
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02002068static unsigned int hotkey_report_mode;
2069
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002070static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002071
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002072static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002073
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002074static void tpacpi_driver_event(const unsigned int hkey_event);
2075static void hotkey_driver_event(const unsigned int scancode);
2076
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002077/* HKEY.MHKG() return bits */
2078#define TP_HOTKEY_TABLET_MASK (1 << 3)
2079
Johannes Berg19d337d2009-06-02 13:01:37 +02002080static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002081{
Johannes Berg19d337d2009-06-02 13:01:37 +02002082 int status;
2083
2084 if (!tp_features.hotkey_wlsw)
2085 return -ENODEV;
2086
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002087#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002088 if (dbg_wlswemul)
2089 return (tpacpi_wlsw_emulstate) ?
2090 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002091#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002092
2093 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002094 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002095
2096 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002097}
2098
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002099static int hotkey_get_tablet_mode(int *status)
2100{
2101 int s;
2102
2103 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2104 return -EIO;
2105
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002106 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2107 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002108}
2109
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002110/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002111 * Reads current event mask from firmware, and updates
2112 * hotkey_acpi_mask accordingly. Also resets any bits
2113 * from hotkey_user_mask that are unavailable to be
2114 * delivered (shadow requirement of the userspace ABI).
2115 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002116 * Call with hotkey_mutex held
2117 */
2118static int hotkey_mask_get(void)
2119{
2120 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002121 u32 m = 0;
2122
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002123 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002124 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002125
2126 hotkey_acpi_mask = m;
2127 } else {
2128 /* no mask support doesn't mean no event support... */
2129 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002130 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002131
2132 /* sync userspace-visible mask */
2133 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002134
2135 return 0;
2136}
2137
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002138void static hotkey_mask_warn_incomplete_mask(void)
2139{
2140 /* log only what the user can fix... */
2141 const u32 wantedmask = hotkey_driver_mask &
2142 ~(hotkey_acpi_mask | hotkey_source_mask) &
2143 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2144
2145 if (wantedmask)
2146 printk(TPACPI_NOTICE
2147 "required events 0x%08x not enabled!\n",
2148 wantedmask);
2149}
2150
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002151/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002152 * Set the firmware mask when supported
2153 *
2154 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2155 *
2156 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2157 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002158 * Call with hotkey_mutex held
2159 */
2160static int hotkey_mask_set(u32 mask)
2161{
2162 int i;
2163 int rc = 0;
2164
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002165 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002166
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002167 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002168 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002169 if (!acpi_evalf(hkey_handle,
2170 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002171 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002172 rc = -EIO;
2173 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002174 }
2175 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002176 }
2177
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002178 /*
2179 * We *must* make an inconditional call to hotkey_mask_get to
2180 * refresh hotkey_acpi_mask and update hotkey_user_mask
2181 *
2182 * Take the opportunity to also log when we cannot _enable_
2183 * a given event.
2184 */
2185 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2186 printk(TPACPI_NOTICE
2187 "asked for hotkey mask 0x%08x, but "
2188 "firmware forced it to 0x%08x\n",
2189 fwmask, hotkey_acpi_mask);
2190 }
2191
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002192 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2193 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002194
2195 return rc;
2196}
2197
2198/*
2199 * Sets hotkey_user_mask and tries to set the firmware mask
2200 *
2201 * Call with hotkey_mutex held
2202 */
2203static int hotkey_user_mask_set(const u32 mask)
2204{
2205 int rc;
2206
2207 /* Give people a chance to notice they are doing something that
2208 * is bound to go boom on their users sooner or later */
2209 if (!tp_warned.hotkey_mask_ff &&
2210 (mask == 0xffff || mask == 0xffffff ||
2211 mask == 0xffffffff)) {
2212 tp_warned.hotkey_mask_ff = 1;
2213 printk(TPACPI_NOTICE
2214 "setting the hotkey mask to 0x%08x is likely "
2215 "not the best way to go about it\n", mask);
2216 printk(TPACPI_NOTICE
2217 "please consider using the driver defaults, "
2218 "and refer to up-to-date thinkpad-acpi "
2219 "documentation\n");
2220 }
2221
2222 /* Try to enable what the user asked for, plus whatever we need.
2223 * this syncs everything but won't enable bits in hotkey_user_mask */
2224 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2225
2226 /* Enable the available bits in hotkey_user_mask */
2227 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2228
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002229 return rc;
2230}
2231
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002232/*
2233 * Sets the driver hotkey mask.
2234 *
2235 * Can be called even if the hotkey subdriver is inactive
2236 */
2237static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2238{
2239 int rc;
2240
2241 /* Do the right thing if hotkey_init has not been called yet */
2242 if (!tp_features.hotkey) {
2243 hotkey_driver_mask = mask;
2244 return 0;
2245 }
2246
2247 mutex_lock(&hotkey_mutex);
2248
2249 HOTKEY_CONFIG_CRITICAL_START
2250 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002251#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002252 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002253#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002254 HOTKEY_CONFIG_CRITICAL_END
2255
2256 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2257 ~hotkey_source_mask);
2258 mutex_unlock(&hotkey_mutex);
2259
2260 return rc;
2261}
2262
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002263static int hotkey_status_get(int *status)
2264{
2265 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2266 return -EIO;
2267
2268 return 0;
2269}
2270
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002271static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002272{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002273 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002274 return -EIO;
2275
2276 return 0;
2277}
2278
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002279static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002280{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002281 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002282
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002283 if (tp_features.hotkey_tablet &&
2284 !hotkey_get_tablet_mode(&state)) {
2285 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002286
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002287 input_report_switch(tpacpi_inputdev,
2288 SW_TABLET_MODE, !!state);
2289 input_sync(tpacpi_inputdev);
2290
2291 mutex_unlock(&tpacpi_inputdev_send_mutex);
2292 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002293}
2294
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002295/* Do NOT call without validating scancode first */
2296static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002297{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002298 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002299
2300 if (keycode != KEY_RESERVED) {
2301 mutex_lock(&tpacpi_inputdev_send_mutex);
2302
2303 input_report_key(tpacpi_inputdev, keycode, 1);
2304 if (keycode == KEY_UNKNOWN)
2305 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2306 scancode);
2307 input_sync(tpacpi_inputdev);
2308
2309 input_report_key(tpacpi_inputdev, keycode, 0);
2310 if (keycode == KEY_UNKNOWN)
2311 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2312 scancode);
2313 input_sync(tpacpi_inputdev);
2314
2315 mutex_unlock(&tpacpi_inputdev_send_mutex);
2316 }
2317}
2318
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002319/* Do NOT call without validating scancode first */
2320static void tpacpi_input_send_key_masked(const unsigned int scancode)
2321{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002322 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002323 if (hotkey_user_mask & (1 << scancode))
2324 tpacpi_input_send_key(scancode);
2325}
2326
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002327#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2328static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2329
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002330/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002331static void tpacpi_hotkey_send_key(unsigned int scancode)
2332{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002333 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002334 if (hotkey_report_mode < 2) {
2335 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03002336 0x80, TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002337 }
2338}
2339
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002340static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002341{
2342 u8 d;
2343
2344 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2345 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2346 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2347 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2348 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2349 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2350 }
2351 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2352 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2353 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2354 }
2355 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2356 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2357 n->displayexp_toggle =
2358 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2359 }
2360 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2361 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2362 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2363 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2364 n->brightness_toggle =
2365 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2366 }
2367 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2368 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2369 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2370 >> TP_NVRAM_POS_LEVEL_VOLUME;
2371 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2372 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2373 }
2374}
2375
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002376static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2377 struct tp_nvram_state *newn,
2378 const u32 event_mask)
2379{
2380
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002381#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002382 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002383 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002384 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002385 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002386 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002387
2388#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002389 do { \
2390 if (event_mask & (1 << __scancode)) \
2391 tpacpi_hotkey_send_key(__scancode); \
2392 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002393
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002394 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2395 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2396 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2397 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2398
2399 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2400
2401 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2402
2403 /* handle volume */
2404 if (oldn->volume_toggle != newn->volume_toggle) {
2405 if (oldn->mute != newn->mute) {
2406 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2407 }
2408 if (oldn->volume_level > newn->volume_level) {
2409 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2410 } else if (oldn->volume_level < newn->volume_level) {
2411 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2412 } else if (oldn->mute == newn->mute) {
2413 /* repeated key presses that didn't change state */
2414 if (newn->mute) {
2415 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2416 } else if (newn->volume_level != 0) {
2417 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2418 } else {
2419 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2420 }
2421 }
2422 }
2423
2424 /* handle brightness */
2425 if (oldn->brightness_toggle != newn->brightness_toggle) {
2426 if (oldn->brightness_level < newn->brightness_level) {
2427 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2428 } else if (oldn->brightness_level > newn->brightness_level) {
2429 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2430 } else {
2431 /* repeated key presses that didn't change state */
2432 if (newn->brightness_level != 0) {
2433 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2434 } else {
2435 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2436 }
2437 }
2438 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002439
2440#undef TPACPI_COMPARE_KEY
2441#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002442}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002443
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002444/*
2445 * Polling driver
2446 *
2447 * We track all events in hotkey_source_mask all the time, since
2448 * most of them are edge-based. We only issue those requested by
2449 * hotkey_user_mask or hotkey_driver_mask, though.
2450 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002451static int hotkey_kthread(void *data)
2452{
2453 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002454 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002455 unsigned int si, so;
2456 unsigned long t;
2457 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002458 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002459
2460 mutex_lock(&hotkey_thread_mutex);
2461
2462 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2463 goto exit;
2464
2465 set_freezable();
2466
2467 so = 0;
2468 si = 1;
2469 t = 0;
2470
2471 /* Initial state for compares */
2472 mutex_lock(&hotkey_thread_data_mutex);
2473 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002474 poll_mask = hotkey_source_mask;
2475 event_mask = hotkey_source_mask &
2476 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002477 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002478 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002479 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002480
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002481 while (!kthread_should_stop()) {
2482 if (t == 0) {
2483 if (likely(poll_freq))
2484 t = 1000/poll_freq;
2485 else
2486 t = 100; /* should never happen... */
2487 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002488 t = msleep_interruptible(t);
2489 if (unlikely(kthread_should_stop()))
2490 break;
2491 must_reset = try_to_freeze();
2492 if (t > 0 && !must_reset)
2493 continue;
2494
2495 mutex_lock(&hotkey_thread_data_mutex);
2496 if (must_reset || hotkey_config_change != change_detector) {
2497 /* forget old state on thaw or config change */
2498 si = so;
2499 t = 0;
2500 change_detector = hotkey_config_change;
2501 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002502 poll_mask = hotkey_source_mask;
2503 event_mask = hotkey_source_mask &
2504 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002505 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002506 mutex_unlock(&hotkey_thread_data_mutex);
2507
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002508 if (likely(poll_mask)) {
2509 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002510 if (likely(si != so)) {
2511 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002512 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002513 }
2514 }
2515
2516 so = si;
2517 si ^= 1;
2518 }
2519
2520exit:
2521 mutex_unlock(&hotkey_thread_mutex);
2522 return 0;
2523}
2524
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002525/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002526static void hotkey_poll_stop_sync(void)
2527{
2528 if (tpacpi_hotkey_task) {
2529 if (frozen(tpacpi_hotkey_task) ||
2530 freezing(tpacpi_hotkey_task))
2531 thaw_process(tpacpi_hotkey_task);
2532
2533 kthread_stop(tpacpi_hotkey_task);
2534 tpacpi_hotkey_task = NULL;
2535 mutex_lock(&hotkey_thread_mutex);
2536 /* at this point, the thread did exit */
2537 mutex_unlock(&hotkey_thread_mutex);
2538 }
2539}
2540
2541/* call with hotkey_mutex held */
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002542static void hotkey_poll_setup(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002543{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002544 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2545 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002546
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002547 if (hotkey_poll_freq > 0 &&
2548 (poll_driver_mask ||
2549 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002550 if (!tpacpi_hotkey_task) {
2551 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002552 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002553 if (IS_ERR(tpacpi_hotkey_task)) {
2554 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002555 printk(TPACPI_ERR
2556 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002557 "for hotkey polling\n");
2558 }
2559 }
2560 } else {
2561 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002562 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002563 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002564 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002565 "hot keys 0x%08x and/or events 0x%08x "
2566 "require polling, which is currently "
2567 "disabled\n",
2568 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002569 }
2570 }
2571}
2572
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002573static void hotkey_poll_setup_safe(bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002574{
2575 mutex_lock(&hotkey_mutex);
2576 hotkey_poll_setup(may_warn);
2577 mutex_unlock(&hotkey_mutex);
2578}
2579
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002580/* call with hotkey_mutex held */
2581static void hotkey_poll_set_freq(unsigned int freq)
2582{
2583 if (!freq)
2584 hotkey_poll_stop_sync();
2585
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002586 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002587}
2588
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002589#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2590
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002591static void hotkey_poll_setup_safe(bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002592{
2593}
2594
2595#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2596
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002597static int hotkey_inputdev_open(struct input_dev *dev)
2598{
2599 switch (tpacpi_lifecycle) {
2600 case TPACPI_LIFE_INIT:
2601 /*
2602 * hotkey_init will call hotkey_poll_setup_safe
2603 * at the appropriate moment
2604 */
2605 return 0;
2606 case TPACPI_LIFE_EXITING:
2607 return -EBUSY;
2608 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002609 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002610 return 0;
2611 }
2612
2613 /* Should only happen if tpacpi_lifecycle is corrupt */
2614 BUG();
2615 return -EBUSY;
2616}
2617
2618static void hotkey_inputdev_close(struct input_dev *dev)
2619{
2620 /* disable hotkey polling when possible */
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002621 if (tpacpi_lifecycle == TPACPI_LIFE_RUNNING &&
2622 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002623 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002624}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002625
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002626/* sysfs hotkey enable ------------------------------------------------- */
2627static ssize_t hotkey_enable_show(struct device *dev,
2628 struct device_attribute *attr,
2629 char *buf)
2630{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002631 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002632
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002633 printk_deprecated_attribute("hotkey_enable",
2634 "Hotkey reporting is always enabled");
2635
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002636 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002637 if (res)
2638 return res;
2639
2640 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2641}
2642
2643static ssize_t hotkey_enable_store(struct device *dev,
2644 struct device_attribute *attr,
2645 const char *buf, size_t count)
2646{
2647 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002648
2649 printk_deprecated_attribute("hotkey_enable",
2650 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002651
2652 if (parse_strtoul(buf, 1, &t))
2653 return -EINVAL;
2654
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002655 if (t == 0)
2656 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002657
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002658 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002659}
2660
2661static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002662 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002663 hotkey_enable_show, hotkey_enable_store);
2664
2665/* sysfs hotkey mask --------------------------------------------------- */
2666static ssize_t hotkey_mask_show(struct device *dev,
2667 struct device_attribute *attr,
2668 char *buf)
2669{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002670 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002671}
2672
2673static ssize_t hotkey_mask_store(struct device *dev,
2674 struct device_attribute *attr,
2675 const char *buf, size_t count)
2676{
2677 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002678 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002679
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002680 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002681 return -EINVAL;
2682
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002683 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002684 return -ERESTARTSYS;
2685
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002686 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002687
2688#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002689 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002690#endif
2691
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002692 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002693
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002694 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2695
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002696 return (res) ? res : count;
2697}
2698
2699static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002700 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002701 hotkey_mask_show, hotkey_mask_store);
2702
2703/* sysfs hotkey bios_enabled ------------------------------------------- */
2704static ssize_t hotkey_bios_enabled_show(struct device *dev,
2705 struct device_attribute *attr,
2706 char *buf)
2707{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002708 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002709}
2710
2711static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002712 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002713
2714/* sysfs hotkey bios_mask ---------------------------------------------- */
2715static ssize_t hotkey_bios_mask_show(struct device *dev,
2716 struct device_attribute *attr,
2717 char *buf)
2718{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002719 printk_deprecated_attribute("hotkey_bios_mask",
2720 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002721 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002722}
2723
2724static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002725 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002726
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002727/* sysfs hotkey all_mask ----------------------------------------------- */
2728static ssize_t hotkey_all_mask_show(struct device *dev,
2729 struct device_attribute *attr,
2730 char *buf)
2731{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002732 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2733 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002734}
2735
2736static struct device_attribute dev_attr_hotkey_all_mask =
2737 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2738
2739/* sysfs hotkey recommended_mask --------------------------------------- */
2740static ssize_t hotkey_recommended_mask_show(struct device *dev,
2741 struct device_attribute *attr,
2742 char *buf)
2743{
2744 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002745 (hotkey_all_mask | hotkey_source_mask)
2746 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002747}
2748
2749static struct device_attribute dev_attr_hotkey_recommended_mask =
2750 __ATTR(hotkey_recommended_mask, S_IRUGO,
2751 hotkey_recommended_mask_show, NULL);
2752
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002753#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2754
2755/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2756static ssize_t hotkey_source_mask_show(struct device *dev,
2757 struct device_attribute *attr,
2758 char *buf)
2759{
2760 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2761}
2762
2763static ssize_t hotkey_source_mask_store(struct device *dev,
2764 struct device_attribute *attr,
2765 const char *buf, size_t count)
2766{
2767 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002768 u32 r_ev;
2769 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002770
2771 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2772 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2773 return -EINVAL;
2774
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002775 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002776 return -ERESTARTSYS;
2777
2778 HOTKEY_CONFIG_CRITICAL_START
2779 hotkey_source_mask = t;
2780 HOTKEY_CONFIG_CRITICAL_END
2781
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002782 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2783 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002784 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002785
2786 /* check if events needed by the driver got disabled */
2787 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2788 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002789
2790 mutex_unlock(&hotkey_mutex);
2791
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002792 if (rc < 0)
2793 printk(TPACPI_ERR "hotkey_source_mask: failed to update the"
2794 "firmware event mask!\n");
2795
2796 if (r_ev)
2797 printk(TPACPI_NOTICE "hotkey_source_mask: "
2798 "some important events were disabled: "
2799 "0x%04x\n", r_ev);
2800
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002801 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2802
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002803 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002804}
2805
2806static struct device_attribute dev_attr_hotkey_source_mask =
2807 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2808 hotkey_source_mask_show, hotkey_source_mask_store);
2809
2810/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2811static ssize_t hotkey_poll_freq_show(struct device *dev,
2812 struct device_attribute *attr,
2813 char *buf)
2814{
2815 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2816}
2817
2818static ssize_t hotkey_poll_freq_store(struct device *dev,
2819 struct device_attribute *attr,
2820 const char *buf, size_t count)
2821{
2822 unsigned long t;
2823
2824 if (parse_strtoul(buf, 25, &t))
2825 return -EINVAL;
2826
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002827 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002828 return -ERESTARTSYS;
2829
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002830 hotkey_poll_set_freq(t);
2831 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002832
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002833 mutex_unlock(&hotkey_mutex);
2834
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002835 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2836
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002837 return count;
2838}
2839
2840static struct device_attribute dev_attr_hotkey_poll_freq =
2841 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2842 hotkey_poll_freq_show, hotkey_poll_freq_store);
2843
2844#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2845
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002846/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002847static ssize_t hotkey_radio_sw_show(struct device *dev,
2848 struct device_attribute *attr,
2849 char *buf)
2850{
Johannes Berg19d337d2009-06-02 13:01:37 +02002851 int res;
2852 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002853 if (res < 0)
2854 return res;
2855
Johannes Berg19d337d2009-06-02 13:01:37 +02002856 /* Opportunistic update */
2857 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2858
2859 return snprintf(buf, PAGE_SIZE, "%d\n",
2860 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002861}
2862
2863static struct device_attribute dev_attr_hotkey_radio_sw =
2864 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2865
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002866static void hotkey_radio_sw_notify_change(void)
2867{
2868 if (tp_features.hotkey_wlsw)
2869 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2870 "hotkey_radio_sw");
2871}
2872
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002873/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2874static ssize_t hotkey_tablet_mode_show(struct device *dev,
2875 struct device_attribute *attr,
2876 char *buf)
2877{
2878 int res, s;
2879 res = hotkey_get_tablet_mode(&s);
2880 if (res < 0)
2881 return res;
2882
2883 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2884}
2885
2886static struct device_attribute dev_attr_hotkey_tablet_mode =
2887 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2888
2889static void hotkey_tablet_mode_notify_change(void)
2890{
2891 if (tp_features.hotkey_tablet)
2892 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2893 "hotkey_tablet_mode");
2894}
2895
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002896/* sysfs hotkey report_mode -------------------------------------------- */
2897static ssize_t hotkey_report_mode_show(struct device *dev,
2898 struct device_attribute *attr,
2899 char *buf)
2900{
2901 return snprintf(buf, PAGE_SIZE, "%d\n",
2902 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2903}
2904
2905static struct device_attribute dev_attr_hotkey_report_mode =
2906 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2907
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002908/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002909static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2910 struct device_attribute *attr,
2911 char *buf)
2912{
2913 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2914}
2915
2916static struct device_attribute dev_attr_hotkey_wakeup_reason =
2917 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2918
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002919static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002920{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002921 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2922 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002923}
2924
2925/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002926static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2927 struct device_attribute *attr,
2928 char *buf)
2929{
2930 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2931}
2932
2933static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2934 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2935 hotkey_wakeup_hotunplug_complete_show, NULL);
2936
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002937static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002938{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002939 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2940 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002941}
2942
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002943/* --------------------------------------------------------------------- */
2944
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002945static struct attribute *hotkey_attributes[] __initdata = {
2946 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002947 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002948 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002949 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002950 &dev_attr_hotkey_wakeup_reason.attr,
2951 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002952 &dev_attr_hotkey_mask.attr,
2953 &dev_attr_hotkey_all_mask.attr,
2954 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002955#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002956 &dev_attr_hotkey_source_mask.attr,
2957 &dev_attr_hotkey_poll_freq.attr,
2958#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002959};
2960
Johannes Berg19d337d2009-06-02 13:01:37 +02002961/*
2962 * Sync both the hw and sw blocking state of all switches
2963 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002964static void tpacpi_send_radiosw_update(void)
2965{
2966 int wlsw;
2967
Johannes Berg19d337d2009-06-02 13:01:37 +02002968 /*
2969 * We must sync all rfkill controllers *before* issuing any
2970 * rfkill input events, or we will race the rfkill core input
2971 * handler.
2972 *
2973 * tpacpi_inputdev_send_mutex works as a syncronization point
2974 * for the above.
2975 *
2976 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2977 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002978
Johannes Berg19d337d2009-06-02 13:01:37 +02002979 wlsw = hotkey_get_wlsw();
2980
2981 /* Sync hw blocking state first if it is hw-blocked */
2982 if (wlsw == TPACPI_RFK_RADIO_OFF)
2983 tpacpi_rfk_update_hwblock_state(true);
2984
2985 /* Sync sw blocking state */
2986 tpacpi_rfk_update_swstate_all();
2987
2988 /* Sync hw blocking state last if it is hw-unblocked */
2989 if (wlsw == TPACPI_RFK_RADIO_ON)
2990 tpacpi_rfk_update_hwblock_state(false);
2991
2992 /* Issue rfkill input event for WLSW switch */
2993 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002994 mutex_lock(&tpacpi_inputdev_send_mutex);
2995
2996 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02002997 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002998 input_sync(tpacpi_inputdev);
2999
3000 mutex_unlock(&tpacpi_inputdev_send_mutex);
3001 }
Johannes Berg19d337d2009-06-02 13:01:37 +02003002
3003 /*
3004 * this can be unconditional, as we will poll state again
3005 * if userspace uses the notify to read data
3006 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003007 hotkey_radio_sw_notify_change();
3008}
3009
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003010static void hotkey_exit(void)
3011{
3012#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003013 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003014 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003015 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003016#endif
3017
3018 if (hotkey_dev_attributes)
3019 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3020
3021 kfree(hotkey_keycode_map);
3022
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003023 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003024 "restoring original HKEY status and mask\n");
3025 /* yes, there is a bitwise or below, we want the
3026 * functions to be called even if one of them fail */
3027 if (((tp_features.hotkey_mask &&
3028 hotkey_mask_set(hotkey_orig_mask)) |
3029 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003030 printk(TPACPI_ERR
3031 "failed to restore hot key mask "
3032 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003033}
3034
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003035static void __init hotkey_unmap(const unsigned int scancode)
3036{
3037 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3038 clear_bit(hotkey_keycode_map[scancode],
3039 tpacpi_inputdev->keybit);
3040 hotkey_keycode_map[scancode] = KEY_RESERVED;
3041 }
3042}
3043
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003044/*
3045 * HKEY quirks:
3046 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3047 */
3048
3049#define TPACPI_HK_Q_INIMASK 0x0001
3050
3051static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3052 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3053 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3054 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3055 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3056 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3057 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3058 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3059 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3060 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3061 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3062 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3063 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3064 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3065 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3066 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3067 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3068 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3069 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3070 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3071};
3072
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003073static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003074{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003075 /* Requirements for changing the default keymaps:
3076 *
3077 * 1. Many of the keys are mapped to KEY_RESERVED for very
3078 * good reasons. Do not change them unless you have deep
3079 * knowledge on the IBM and Lenovo ThinkPad firmware for
3080 * the various ThinkPad models. The driver behaves
3081 * differently for KEY_RESERVED: such keys have their
3082 * hot key mask *unset* in mask_recommended, and also
3083 * in the initial hot key mask programmed into the
3084 * firmware at driver load time, which means the firm-
3085 * ware may react very differently if you change them to
3086 * something else;
3087 *
3088 * 2. You must be subscribed to the linux-thinkpad and
3089 * ibm-acpi-devel mailing lists, and you should read the
3090 * list archives since 2007 if you want to change the
3091 * keymaps. This requirement exists so that you will
3092 * know the past history of problems with the thinkpad-
3093 * acpi driver keymaps, and also that you will be
3094 * listening to any bug reports;
3095 *
3096 * 3. Do not send thinkpad-acpi specific patches directly to
3097 * for merging, *ever*. Send them to the linux-acpi
3098 * mailinglist for comments. Merging is to be done only
3099 * through acpi-test and the ACPI maintainer.
3100 *
3101 * If the above is too much to ask, don't change the keymap.
3102 * Ask the thinkpad-acpi maintainer to do it, instead.
3103 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003104 static u16 ibm_keycode_map[] __initdata = {
3105 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3106 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
3107 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3108 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003109
3110 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003111 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3112 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3113 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003114
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003115 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003116 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003117 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003118
3119 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003120 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003121
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003122 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3123 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003124
3125 /* Volume: firmware always react to it and reprograms
3126 * the built-in *extra* mixer. Never map it to control
3127 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003128 KEY_RESERVED, /* 0x14: VOLUME UP */
3129 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3130 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003131
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003132 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003133
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003134 /* (assignments unknown, please report if found) */
3135 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3136 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3137 };
3138 static u16 lenovo_keycode_map[] __initdata = {
3139 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3140 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
3141 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3142 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003143
3144 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003145 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3146 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3147 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003148
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003149 /* These should be enabled --only-- when ACPI video
3150 * is disabled (i.e. in "vendor" mode), and are handled
3151 * in a special way by the init code */
3152 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3153 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003154
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003155 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003156
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003157 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3158 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003159
3160 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3161 * react to it and reprograms the built-in *extra* mixer.
3162 * Never map it to control another mixer by default.
3163 *
3164 * T60?, T61, R60?, R61: firmware and EC tries to send
3165 * these over the regular keyboard, so these are no-ops,
3166 * but there are still weird bugs re. MUTE, so do not
3167 * change unless you get test reports from all Lenovo
3168 * models. May cause the BIOS to interfere with the
3169 * HDA mixer.
3170 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003171 KEY_RESERVED, /* 0x14: VOLUME UP */
3172 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3173 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003174
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003175 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003176
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003177 /* (assignments unknown, please report if found) */
3178 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3179 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3180 };
3181
3182#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
3183#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
3184#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
3185
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003186 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003187 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003188 int hkeyv;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003189
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003190 unsigned long quirks;
3191
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003192 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3193 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003194
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003195 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003196 BUG_ON(tpacpi_inputdev->open != NULL ||
3197 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003198
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003199 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003200 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003201
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003202#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3203 mutex_init(&hotkey_thread_mutex);
3204 mutex_init(&hotkey_thread_data_mutex);
3205#endif
3206
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003207 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003208 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003209
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003210 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3211 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003212 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003213
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003214 if (!tp_features.hotkey)
3215 return 1;
3216
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003217 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3218 ARRAY_SIZE(tpacpi_hotkey_qtable));
3219
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003220 tpacpi_disable_brightness_delay();
3221
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003222 /* MUST have enough space for all attributes to be added to
3223 * hotkey_dev_attributes */
3224 hotkey_dev_attributes = create_attr_set(
3225 ARRAY_SIZE(hotkey_attributes) + 2,
3226 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003227 if (!hotkey_dev_attributes)
3228 return -ENOMEM;
3229 res = add_many_to_attr_set(hotkey_dev_attributes,
3230 hotkey_attributes,
3231 ARRAY_SIZE(hotkey_attributes));
3232 if (res)
3233 goto err_exit;
3234
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003235 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003236 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3237 for HKEY interface version 0x100 */
3238 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3239 if ((hkeyv >> 8) != 1) {
3240 printk(TPACPI_ERR "unknown version of the "
3241 "HKEY interface: 0x%x\n", hkeyv);
3242 printk(TPACPI_ERR "please report this to %s\n",
3243 TPACPI_MAIL);
3244 } else {
3245 /*
3246 * MHKV 0x100 in A31, R40, R40e,
3247 * T4x, X31, and later
3248 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003249 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3250 "firmware HKEY interface version: 0x%x\n",
3251 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003252
3253 /* Paranoia check AND init hotkey_all_mask */
3254 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3255 "MHKA", "qd")) {
3256 printk(TPACPI_ERR
3257 "missing MHKA handler, "
3258 "please report this to %s\n",
3259 TPACPI_MAIL);
3260 /* Fallback: pre-init for FN+F3,F4,F12 */
3261 hotkey_all_mask = 0x080cU;
3262 } else {
3263 tp_features.hotkey_mask = 1;
3264 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003265 }
3266 }
3267
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003268 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3269 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003270 str_supported(tp_features.hotkey_mask));
3271
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003272 /* Init hotkey_all_mask if not initialized yet */
3273 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3274 (quirks & TPACPI_HK_Q_INIMASK))
3275 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003276
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003277 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003278 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003279 /* hotkey_source_mask *must* be zero for
3280 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003281 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003282 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003283 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003284
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003285 hotkey_orig_mask = hotkey_acpi_mask;
3286 } else {
3287 hotkey_orig_mask = hotkey_all_mask;
3288 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003289 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003290
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003291#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3292 if (dbg_wlswemul) {
3293 tp_features.hotkey_wlsw = 1;
3294 printk(TPACPI_INFO
3295 "radio switch emulation enabled\n");
3296 } else
3297#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003298 /* Not all thinkpads have a hardware radio switch */
3299 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3300 tp_features.hotkey_wlsw = 1;
3301 printk(TPACPI_INFO
3302 "radio switch found; radios are %s\n",
3303 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003304 }
3305 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003306 res = add_to_attr_set(hotkey_dev_attributes,
3307 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003308
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003309 /* For X41t, X60t, X61t Tablets... */
3310 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3311 tp_features.hotkey_tablet = 1;
3312 printk(TPACPI_INFO
3313 "possible tablet mode switch found; "
3314 "ThinkPad in %s mode\n",
3315 (status & TP_HOTKEY_TABLET_MASK)?
3316 "tablet" : "laptop");
3317 res = add_to_attr_set(hotkey_dev_attributes,
3318 &dev_attr_hotkey_tablet_mode.attr);
3319 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003320
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003321 if (!res)
3322 res = register_attr_set_with_sysfs(
3323 hotkey_dev_attributes,
3324 &tpacpi_pdev->dev.kobj);
3325 if (res)
3326 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003327
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003328 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003329
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003330 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3331 GFP_KERNEL);
3332 if (!hotkey_keycode_map) {
3333 printk(TPACPI_ERR
3334 "failed to allocate memory for key map\n");
3335 res = -ENOMEM;
3336 goto err_exit;
3337 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003338
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003339 if (thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003340 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003341 "using Lenovo default hot key map\n");
3342 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3343 TPACPI_HOTKEY_MAP_SIZE);
3344 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003345 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003346 "using IBM default hot key map\n");
3347 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3348 TPACPI_HOTKEY_MAP_SIZE);
3349 }
3350
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003351 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003352 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3353 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3354 tpacpi_inputdev->keycode = hotkey_keycode_map;
3355 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3356 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003357 input_set_capability(tpacpi_inputdev, EV_KEY,
3358 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003359 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003360 if (i < sizeof(hotkey_reserved_mask)*8)
3361 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003362 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003363 }
3364
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003365 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003366 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003367 }
3368 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003369 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003370 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003371
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003372 /* Do not issue duplicate brightness change events to
3373 * userspace */
3374 if (!tp_features.bright_acpimode)
3375 /* update bright_acpimode... */
3376 tpacpi_check_std_acpi_brightness_support();
3377
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003378 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003379 printk(TPACPI_INFO
3380 "This ThinkPad has standard ACPI backlight "
3381 "brightness control, supported by the ACPI "
3382 "video driver\n");
3383 printk(TPACPI_NOTICE
3384 "Disabling thinkpad-acpi brightness events "
3385 "by default...\n");
3386
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003387 /* Disable brightness up/down on Lenovo thinkpads when
3388 * ACPI is handling them, otherwise it is plain impossible
3389 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003390 hotkey_reserved_mask |=
3391 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3392 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003393 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3394 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003395 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003396
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003397#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003398 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3399 & ~hotkey_all_mask
3400 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003401
3402 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3403 "hotkey source mask 0x%08x, polling freq %u\n",
3404 hotkey_source_mask, hotkey_poll_freq);
3405#endif
3406
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003407 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3408 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003409 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003410 if (res) {
3411 hotkey_exit();
3412 return res;
3413 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003414 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3415 | hotkey_driver_mask)
3416 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003417 if (res < 0 && res != -ENXIO) {
3418 hotkey_exit();
3419 return res;
3420 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003421 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3422 & ~hotkey_reserved_mask;
3423 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3424 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3425 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003426
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003427 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3428 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003429 (hotkey_report_mode < 2) ?
3430 "enabled" : "disabled");
3431
3432 tpacpi_inputdev->open = &hotkey_inputdev_open;
3433 tpacpi_inputdev->close = &hotkey_inputdev_close;
3434
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003435 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003436 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003437 tpacpi_input_send_tabletsw();
3438
3439 return 0;
3440
3441err_exit:
3442 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3443 hotkey_dev_attributes = NULL;
3444
3445 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003446}
3447
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003448static bool hotkey_notify_hotkey(const u32 hkey,
3449 bool *send_acpi_ev,
3450 bool *ignore_acpi_ev)
3451{
3452 /* 0x1000-0x1FFF: key presses */
3453 unsigned int scancode = hkey & 0xfff;
3454 *send_acpi_ev = true;
3455 *ignore_acpi_ev = false;
3456
3457 if (scancode > 0 && scancode < 0x21) {
3458 scancode--;
3459 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003460 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003461 *send_acpi_ev = false;
3462 } else {
3463 *ignore_acpi_ev = true;
3464 }
3465 return true;
3466 }
3467 return false;
3468}
3469
3470static bool hotkey_notify_wakeup(const u32 hkey,
3471 bool *send_acpi_ev,
3472 bool *ignore_acpi_ev)
3473{
3474 /* 0x2000-0x2FFF: Wakeup reason */
3475 *send_acpi_ev = true;
3476 *ignore_acpi_ev = false;
3477
3478 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003479 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3480 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003481 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3482 *ignore_acpi_ev = true;
3483 break;
3484
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003485 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3486 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003487 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3488 *ignore_acpi_ev = true;
3489 break;
3490
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003491 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3492 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003493 printk(TPACPI_ALERT
3494 "EMERGENCY WAKEUP: battery almost empty\n");
3495 /* how to auto-heal: */
3496 /* 2313: woke up from S3, go to S4/S5 */
3497 /* 2413: woke up from S4, go to S5 */
3498 break;
3499
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003500 default:
3501 return false;
3502 }
3503
3504 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3505 printk(TPACPI_INFO
3506 "woke up due to a hot-unplug "
3507 "request...\n");
3508 hotkey_wakeup_reason_notify_change();
3509 }
3510 return true;
3511}
3512
3513static bool hotkey_notify_usrevent(const u32 hkey,
3514 bool *send_acpi_ev,
3515 bool *ignore_acpi_ev)
3516{
3517 /* 0x5000-0x5FFF: human interface helpers */
3518 *send_acpi_ev = true;
3519 *ignore_acpi_ev = false;
3520
3521 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003522 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3523 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003524 return true;
3525
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003526 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3527 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003528 tpacpi_input_send_tabletsw();
3529 hotkey_tablet_mode_notify_change();
3530 *send_acpi_ev = false;
3531 return true;
3532
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003533 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3534 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3535 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003536 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003537 *ignore_acpi_ev = true;
3538 return true;
3539
3540 default:
3541 return false;
3542 }
3543}
3544
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003545static void thermal_dump_all_sensors(void);
3546
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003547static bool hotkey_notify_thermal(const u32 hkey,
3548 bool *send_acpi_ev,
3549 bool *ignore_acpi_ev)
3550{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003551 bool known = true;
3552
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003553 /* 0x6000-0x6FFF: thermal alarms */
3554 *send_acpi_ev = true;
3555 *ignore_acpi_ev = false;
3556
3557 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003558 case TP_HKEY_EV_THM_TABLE_CHANGED:
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003559 printk(TPACPI_INFO
3560 "EC reports that Thermal Table has changed\n");
3561 /* recommended action: do nothing, we don't have
3562 * Lenovo ATM information */
3563 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003564 case TP_HKEY_EV_ALARM_BAT_HOT:
3565 printk(TPACPI_CRIT
3566 "THERMAL ALARM: battery is too hot!\n");
3567 /* recommended action: warn user through gui */
3568 break;
3569 case TP_HKEY_EV_ALARM_BAT_XHOT:
3570 printk(TPACPI_ALERT
3571 "THERMAL EMERGENCY: battery is extremely hot!\n");
3572 /* recommended action: immediate sleep/hibernate */
3573 break;
3574 case TP_HKEY_EV_ALARM_SENSOR_HOT:
3575 printk(TPACPI_CRIT
3576 "THERMAL ALARM: "
3577 "a sensor reports something is too hot!\n");
3578 /* recommended action: warn user through gui, that */
3579 /* some internal component is too hot */
3580 break;
3581 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
3582 printk(TPACPI_ALERT
3583 "THERMAL EMERGENCY: "
3584 "a sensor reports something is extremely hot!\n");
3585 /* recommended action: immediate sleep/hibernate */
3586 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003587 default:
3588 printk(TPACPI_ALERT
3589 "THERMAL ALERT: unknown thermal alarm received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003590 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003591 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003592
3593 thermal_dump_all_sensors();
3594
3595 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003596}
3597
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003598static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3599{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003600 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003601 bool send_acpi_ev;
3602 bool ignore_acpi_ev;
3603 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003604
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003605 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003606 printk(TPACPI_ERR
3607 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003608 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003609 acpi_bus_generate_netlink_event(
3610 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003611 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003612 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003613 return;
3614 }
3615
3616 while (1) {
3617 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003618 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003619 return;
3620 }
3621
3622 if (hkey == 0) {
3623 /* queue empty */
3624 return;
3625 }
3626
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003627 send_acpi_ev = true;
3628 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003629
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003630 switch (hkey >> 12) {
3631 case 1:
3632 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003633 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3634 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003635 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003636 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003637 /* 0x2000-0x2FFF: Wakeup reason */
3638 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3639 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003640 break;
3641 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003642 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003643 if (hkey == TP_HKEY_EV_BAYEJ_ACK) {
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003644 hotkey_autosleep_ack = 1;
3645 printk(TPACPI_INFO
3646 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003647 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003648 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003649 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003650 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003651 }
3652 break;
3653 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003654 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003655 if (hkey == TP_HKEY_EV_UNDOCK_ACK) {
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003656 hotkey_autosleep_ack = 1;
3657 printk(TPACPI_INFO
3658 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003659 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003660 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003661 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003662 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003663 }
3664 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003665 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003666 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003667 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3668 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003669 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003670 case 6:
3671 /* 0x6000-0x6FFF: thermal alarms */
3672 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3673 &ignore_acpi_ev);
3674 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003675 case 7:
3676 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003677 if (tp_features.hotkey_wlsw &&
3678 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003679 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003680 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003681 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003682 break;
3683 }
3684 /* fallthrough to default */
3685 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003686 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003687 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003688 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003689 printk(TPACPI_NOTICE
3690 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003691 printk(TPACPI_NOTICE
3692 "please report the conditions when this "
3693 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003694 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003695
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003696 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003697 if (!ignore_acpi_ev &&
3698 (send_acpi_ev || hotkey_report_mode < 2)) {
3699 acpi_bus_generate_proc_event(ibm->acpi->device,
3700 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003701 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003702
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003703 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003704 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003705 acpi_bus_generate_netlink_event(
3706 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003707 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003708 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003709 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003710 }
3711}
3712
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003713static void hotkey_suspend(pm_message_t state)
3714{
3715 /* Do these on suspend, we get the events on early resume! */
3716 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3717 hotkey_autosleep_ack = 0;
3718}
3719
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003720static void hotkey_resume(void)
3721{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003722 tpacpi_disable_brightness_delay();
3723
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003724 if (hotkey_status_set(true) < 0 ||
3725 hotkey_mask_set(hotkey_acpi_mask) < 0)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003726 printk(TPACPI_ERR
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003727 "error while attempting to reset the event "
3728 "firmware interface\n");
3729
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003730 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003731 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003732 hotkey_wakeup_reason_notify_change();
3733 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003734 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003735}
3736
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003737/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003738static int hotkey_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003740 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 int len = 0;
3742
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003743 if (!tp_features.hotkey) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003744 len += sprintf(p + len, "status:\t\tnot supported\n");
3745 return len;
3746 }
3747
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003748 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003749 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003750 res = hotkey_status_get(&status);
3751 if (!res)
3752 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003753 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003754 if (res)
3755 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
3757 len += sprintf(p + len, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003758 if (hotkey_all_mask) {
3759 len += sprintf(p + len, "mask:\t\t0x%08x\n", hotkey_user_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 len += sprintf(p + len,
3761 "commands:\tenable, disable, reset, <mask>\n");
3762 } else {
3763 len += sprintf(p + len, "mask:\t\tnot supported\n");
3764 len += sprintf(p + len, "commands:\tenable, disable, reset\n");
3765 }
3766
3767 return len;
3768}
3769
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003770static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003771{
3772 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003773 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3774 TPACPI_WARN
3775 "hotkey enable/disable functionality has been "
3776 "removed from the driver. Hotkeys are always "
3777 "enabled\n"))
3778 printk(TPACPI_ERR
3779 "Please remove the hotkey=enable module "
3780 "parameter, it is deprecated. Hotkeys are always "
3781 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003782}
3783
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003784static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003786 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003787 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003790 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 return -ENODEV;
3792
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003793 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003794 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003795
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003796 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003797
3798 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 while ((cmd = next_cmd(&buf))) {
3800 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003801 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003803 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003804 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003806 mask = (hotkey_all_mask | hotkey_source_mask)
3807 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3809 /* mask set */
3810 } else if (sscanf(cmd, "%x", &mask) == 1) {
3811 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003812 } else {
3813 res = -EINVAL;
3814 goto errexit;
3815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003817
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003818 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003819 tpacpi_disclose_usertask("procfs hotkey",
3820 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003821 res = hotkey_user_mask_set(mask);
3822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003824errexit:
3825 mutex_unlock(&hotkey_mutex);
3826 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003827}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003829static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003830 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003831 {"", 0},
3832};
3833
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003834static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003835 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003836 .notify = hotkey_notify,
3837 .handle = &hkey_handle,
3838 .type = ACPI_DEVICE_NOTIFY,
3839};
3840
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003841static struct ibm_struct hotkey_driver_data = {
3842 .name = "hotkey",
3843 .read = hotkey_read,
3844 .write = hotkey_write,
3845 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003846 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003847 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003848 .acpi = &ibm_hotkey_acpidriver,
3849};
3850
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003851/*************************************************************************
3852 * Bluetooth subdriver
3853 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003855enum {
3856 /* ACPI GBDC/SBDC bits */
3857 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3858 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003859 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
3860 off / last state */
3861};
3862
3863enum {
3864 /* ACPI \BLTH commands */
3865 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3866 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3867 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3868 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3869 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003870};
3871
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003872#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3873
Johannes Berg19d337d2009-06-02 13:01:37 +02003874static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003875{
3876 int status;
3877
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003878#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3879 if (dbg_bluetoothemul)
3880 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003881 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003882#endif
3883
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003884 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3885 return -EIO;
3886
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003887 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003888 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003889}
3890
Johannes Berg19d337d2009-06-02 13:01:37 +02003891static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003892{
3893 int status;
3894
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003895 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003896 "will attempt to %s bluetooth\n",
3897 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003898
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003899#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3900 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003901 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003902 return 0;
3903 }
3904#endif
3905
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003906 /* We make sure to keep TP_ACPI_BLUETOOTH_RESUMECTRL off */
Henrique de Moraes Holschuh208b9962009-12-09 01:36:22 +00003907 status = TP_ACPI_BLUETOOTH_RESUMECTRL;
Johannes Berg19d337d2009-06-02 13:01:37 +02003908 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh208b9962009-12-09 01:36:22 +00003909 status |= TP_ACPI_BLUETOOTH_RADIOSSW;
Johannes Berg19d337d2009-06-02 13:01:37 +02003910
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003911 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3912 return -EIO;
3913
3914 return 0;
3915}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003916
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003917/* sysfs bluetooth enable ---------------------------------------------- */
3918static ssize_t bluetooth_enable_show(struct device *dev,
3919 struct device_attribute *attr,
3920 char *buf)
3921{
Johannes Berg19d337d2009-06-02 13:01:37 +02003922 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3923 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003924}
3925
3926static ssize_t bluetooth_enable_store(struct device *dev,
3927 struct device_attribute *attr,
3928 const char *buf, size_t count)
3929{
Johannes Berg19d337d2009-06-02 13:01:37 +02003930 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3931 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003932}
3933
3934static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003935 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003936 bluetooth_enable_show, bluetooth_enable_store);
3937
3938/* --------------------------------------------------------------------- */
3939
3940static struct attribute *bluetooth_attributes[] = {
3941 &dev_attr_bluetooth_enable.attr,
3942 NULL
3943};
3944
3945static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003946 .attrs = bluetooth_attributes,
3947};
3948
Johannes Berg19d337d2009-06-02 13:01:37 +02003949static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3950 .get_status = bluetooth_get_status,
3951 .set_status = bluetooth_set_status,
3952};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003953
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003954static void bluetooth_shutdown(void)
3955{
3956 /* Order firmware to save current state to NVRAM */
3957 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3958 TP_ACPI_BLTH_SAVE_STATE))
3959 printk(TPACPI_NOTICE
3960 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003961 else
3962 vdbg_printk(TPACPI_DBG_RFKILL,
3963 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003964}
3965
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003966static void bluetooth_exit(void)
3967{
3968 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3969 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003970
3971 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
3972
3973 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003974}
3975
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003976static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003978 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003979 int status = 0;
3980
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003981 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3982 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003983
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003984 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003985
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003986 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3987 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003988 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003989 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003991 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3992 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003993 str_supported(tp_features.bluetooth),
3994 status);
3995
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003996#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3997 if (dbg_bluetoothemul) {
3998 tp_features.bluetooth = 1;
3999 printk(TPACPI_INFO
4000 "bluetooth switch emulation enabled\n");
4001 } else
4002#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004003 if (tp_features.bluetooth &&
4004 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4005 /* no bluetooth hardware present in system */
4006 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004007 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004008 "bluetooth hardware not installed\n");
4009 }
4010
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004011 if (!tp_features.bluetooth)
4012 return 1;
4013
Johannes Berg19d337d2009-06-02 13:01:37 +02004014 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4015 &bluetooth_tprfk_ops,
4016 RFKILL_TYPE_BLUETOOTH,
4017 TPACPI_RFK_BLUETOOTH_SW_NAME,
4018 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004019 if (res)
4020 return res;
4021
Johannes Berg19d337d2009-06-02 13:01:37 +02004022 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4023 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004024 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004025 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004026 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004027 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004028
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004029 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030}
4031
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004032/* procfs -------------------------------------------------------------- */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004033static int bluetooth_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034{
Johannes Berg19d337d2009-06-02 13:01:37 +02004035 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036}
4037
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004038static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039{
Johannes Berg19d337d2009-06-02 13:01:37 +02004040 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041}
4042
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004043static struct ibm_struct bluetooth_driver_data = {
4044 .name = "bluetooth",
4045 .read = bluetooth_read,
4046 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004047 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004048 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004049};
4050
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004051/*************************************************************************
4052 * Wan subdriver
4053 */
4054
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004055enum {
4056 /* ACPI GWAN/SWAN bits */
4057 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4058 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004059 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
4060 off / last state */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004061};
4062
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004063#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4064
Johannes Berg19d337d2009-06-02 13:01:37 +02004065static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004066{
4067 int status;
4068
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004069#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4070 if (dbg_wwanemul)
4071 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004072 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004073#endif
4074
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004075 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4076 return -EIO;
4077
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004078 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004079 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004080}
4081
Johannes Berg19d337d2009-06-02 13:01:37 +02004082static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004083{
4084 int status;
4085
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004086 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004087 "will attempt to %s wwan\n",
4088 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004089
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004090#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4091 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004092 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004093 return 0;
4094 }
4095#endif
4096
Henrique de Moraes Holschuh208b9962009-12-09 01:36:22 +00004097 /* We make sure to set TP_ACPI_WANCARD_RESUMECTRL */
4098 status = TP_ACPI_WANCARD_RESUMECTRL;
Johannes Berg19d337d2009-06-02 13:01:37 +02004099 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh208b9962009-12-09 01:36:22 +00004100 status |= TP_ACPI_WANCARD_RADIOSSW;
Johannes Berg19d337d2009-06-02 13:01:37 +02004101
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004102 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4103 return -EIO;
4104
4105 return 0;
4106}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004107
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004108/* sysfs wan enable ---------------------------------------------------- */
4109static ssize_t wan_enable_show(struct device *dev,
4110 struct device_attribute *attr,
4111 char *buf)
4112{
Johannes Berg19d337d2009-06-02 13:01:37 +02004113 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4114 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004115}
4116
4117static ssize_t wan_enable_store(struct device *dev,
4118 struct device_attribute *attr,
4119 const char *buf, size_t count)
4120{
Johannes Berg19d337d2009-06-02 13:01:37 +02004121 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4122 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004123}
4124
4125static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004126 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004127 wan_enable_show, wan_enable_store);
4128
4129/* --------------------------------------------------------------------- */
4130
4131static struct attribute *wan_attributes[] = {
4132 &dev_attr_wan_enable.attr,
4133 NULL
4134};
4135
4136static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004137 .attrs = wan_attributes,
4138};
4139
Johannes Berg19d337d2009-06-02 13:01:37 +02004140static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4141 .get_status = wan_get_status,
4142 .set_status = wan_set_status,
4143};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004144
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004145static void wan_shutdown(void)
4146{
4147 /* Order firmware to save current state to NVRAM */
4148 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4149 TP_ACPI_WGSV_SAVE_STATE))
4150 printk(TPACPI_NOTICE
4151 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004152 else
4153 vdbg_printk(TPACPI_DBG_RFKILL,
4154 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004155}
4156
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004157static void wan_exit(void)
4158{
4159 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4160 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004161
4162 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4163
4164 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004165}
4166
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004167static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004168{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004169 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004170 int status = 0;
4171
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004172 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4173 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004174
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004175 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004176
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004177 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004178 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004179
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004180 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4181 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004182 str_supported(tp_features.wan),
4183 status);
4184
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004185#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4186 if (dbg_wwanemul) {
4187 tp_features.wan = 1;
4188 printk(TPACPI_INFO
4189 "wwan switch emulation enabled\n");
4190 } else
4191#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004192 if (tp_features.wan &&
4193 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4194 /* no wan hardware present in system */
4195 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004196 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004197 "wan hardware not installed\n");
4198 }
4199
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004200 if (!tp_features.wan)
4201 return 1;
4202
Johannes Berg19d337d2009-06-02 13:01:37 +02004203 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4204 &wan_tprfk_ops,
4205 RFKILL_TYPE_WWAN,
4206 TPACPI_RFK_WWAN_SW_NAME,
4207 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004208 if (res)
4209 return res;
4210
Johannes Berg19d337d2009-06-02 13:01:37 +02004211 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4212 &wan_attr_group);
4213
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004214 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004215 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004216 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004217 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004218
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004219 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004220}
4221
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004222/* procfs -------------------------------------------------------------- */
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004223static int wan_read(char *p)
4224{
Johannes Berg19d337d2009-06-02 13:01:37 +02004225 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, p);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004226}
4227
4228static int wan_write(char *buf)
4229{
Johannes Berg19d337d2009-06-02 13:01:37 +02004230 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004231}
4232
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004233static struct ibm_struct wan_driver_data = {
4234 .name = "wan",
4235 .read = wan_read,
4236 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004237 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004238 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004239};
4240
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004241/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004242 * UWB subdriver
4243 */
4244
4245enum {
4246 /* ACPI GUWB/SUWB bits */
4247 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4248 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4249};
4250
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004251#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4252
Johannes Berg19d337d2009-06-02 13:01:37 +02004253static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004254{
4255 int status;
4256
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004257#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4258 if (dbg_uwbemul)
4259 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004260 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004261#endif
4262
4263 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4264 return -EIO;
4265
4266 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004267 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004268}
4269
Johannes Berg19d337d2009-06-02 13:01:37 +02004270static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004271{
4272 int status;
4273
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004274 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004275 "will attempt to %s UWB\n",
4276 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004277
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004278#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4279 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004280 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004281 return 0;
4282 }
4283#endif
4284
Johannes Berg19d337d2009-06-02 13:01:37 +02004285 if (state == TPACPI_RFK_RADIO_ON)
4286 status = TP_ACPI_UWB_RADIOSSW;
4287 else
4288 status = 0;
4289
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004290 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4291 return -EIO;
4292
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004293 return 0;
4294}
4295
4296/* --------------------------------------------------------------------- */
4297
Johannes Berg19d337d2009-06-02 13:01:37 +02004298static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4299 .get_status = uwb_get_status,
4300 .set_status = uwb_set_status,
4301};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004302
4303static void uwb_exit(void)
4304{
Johannes Berg19d337d2009-06-02 13:01:37 +02004305 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004306}
4307
4308static int __init uwb_init(struct ibm_init_struct *iibm)
4309{
4310 int res;
4311 int status = 0;
4312
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004313 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4314 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004315
4316 TPACPI_ACPIHANDLE_INIT(hkey);
4317
4318 tp_features.uwb = hkey_handle &&
4319 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4320
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004321 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4322 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004323 str_supported(tp_features.uwb),
4324 status);
4325
4326#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4327 if (dbg_uwbemul) {
4328 tp_features.uwb = 1;
4329 printk(TPACPI_INFO
4330 "uwb switch emulation enabled\n");
4331 } else
4332#endif
4333 if (tp_features.uwb &&
4334 !(status & TP_ACPI_UWB_HWPRESENT)) {
4335 /* no uwb hardware present in system */
4336 tp_features.uwb = 0;
4337 dbg_printk(TPACPI_DBG_INIT,
4338 "uwb hardware not installed\n");
4339 }
4340
4341 if (!tp_features.uwb)
4342 return 1;
4343
4344 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004345 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004346 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004347 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004348 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004349 return res;
4350}
4351
4352static struct ibm_struct uwb_driver_data = {
4353 .name = "uwb",
4354 .exit = uwb_exit,
4355 .flags.experimental = 1,
4356};
4357
4358/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004359 * Video subdriver
4360 */
4361
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004362#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4363
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004364enum video_access_mode {
4365 TPACPI_VIDEO_NONE = 0,
4366 TPACPI_VIDEO_570, /* 570 */
4367 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4368 TPACPI_VIDEO_NEW, /* all others */
4369};
4370
4371enum { /* video status flags, based on VIDEO_570 */
4372 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4373 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4374 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4375};
4376
4377enum { /* TPACPI_VIDEO_570 constants */
4378 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4379 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4380 * video_status_flags */
4381 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4382 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4383};
4384
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004385static enum video_access_mode video_supported;
4386static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004387
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004388static int video_autosw_get(void);
4389static int video_autosw_set(int enable);
4390
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004391TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004392
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004393static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004395 int ivga;
4396
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004397 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4398
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004399 TPACPI_ACPIHANDLE_INIT(vid);
4400 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004401
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004402 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4403 /* G41, assume IVGA doesn't change */
4404 vid_handle = vid2_handle;
4405
4406 if (!vid_handle)
4407 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004408 video_supported = TPACPI_VIDEO_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004409 else if (acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
4410 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004411 video_supported = TPACPI_VIDEO_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004412 else if (acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
4413 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004414 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004415 else
4416 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004417 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004419 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4420 str_supported(video_supported != TPACPI_VIDEO_NONE),
4421 video_supported);
4422
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004423 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
4425
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004426static void video_exit(void)
4427{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004428 dbg_printk(TPACPI_DBG_EXIT,
4429 "restoring original video autoswitch mode\n");
4430 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004431 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004432 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004433}
4434
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004435static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436{
4437 int status = 0;
4438 int i;
4439
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004440 switch (video_supported) {
4441 case TPACPI_VIDEO_570:
4442 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4443 TP_ACPI_VIDEO_570_PHSCMD))
4444 return -EIO;
4445 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4446 break;
4447 case TPACPI_VIDEO_770:
4448 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4449 return -EIO;
4450 if (i)
4451 status |= TP_ACPI_VIDEO_S_LCD;
4452 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4453 return -EIO;
4454 if (i)
4455 status |= TP_ACPI_VIDEO_S_CRT;
4456 break;
4457 case TPACPI_VIDEO_NEW:
4458 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4459 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4460 return -EIO;
4461 if (i)
4462 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004464 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4465 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4466 return -EIO;
4467 if (i)
4468 status |= TP_ACPI_VIDEO_S_LCD;
4469 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4470 return -EIO;
4471 if (i)
4472 status |= TP_ACPI_VIDEO_S_DVI;
4473 break;
4474 default:
4475 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
4478 return status;
4479}
4480
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004481static int video_outputsw_set(int status)
4482{
4483 int autosw;
4484 int res = 0;
4485
4486 switch (video_supported) {
4487 case TPACPI_VIDEO_570:
4488 res = acpi_evalf(NULL, NULL,
4489 "\\_SB.PHS2", "vdd",
4490 TP_ACPI_VIDEO_570_PHS2CMD,
4491 status | TP_ACPI_VIDEO_570_PHS2SET);
4492 break;
4493 case TPACPI_VIDEO_770:
4494 autosw = video_autosw_get();
4495 if (autosw < 0)
4496 return autosw;
4497
4498 res = video_autosw_set(1);
4499 if (res)
4500 return res;
4501 res = acpi_evalf(vid_handle, NULL,
4502 "ASWT", "vdd", status * 0x100, 0);
4503 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004504 printk(TPACPI_ERR
4505 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004506 return -EIO;
4507 }
4508 break;
4509 case TPACPI_VIDEO_NEW:
4510 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004511 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004512 break;
4513 default:
4514 return -ENOSYS;
4515 }
4516
4517 return (res)? 0 : -EIO;
4518}
4519
4520static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004522 int autosw = 0;
4523
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004524 switch (video_supported) {
4525 case TPACPI_VIDEO_570:
4526 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4527 return -EIO;
4528 break;
4529 case TPACPI_VIDEO_770:
4530 case TPACPI_VIDEO_NEW:
4531 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4532 return -EIO;
4533 break;
4534 default:
4535 return -ENOSYS;
4536 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004537
4538 return autosw & 1;
4539}
4540
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004541static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004542{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004543 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004544 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004545 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004546}
4547
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004548static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004549{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004550 int autosw = video_autosw_get();
4551 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004552
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004553 if (autosw < 0)
4554 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004555
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004556 switch (video_supported) {
4557 case TPACPI_VIDEO_570:
4558 res = video_autosw_set(1);
4559 if (res)
4560 return res;
4561 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4562 break;
4563 case TPACPI_VIDEO_770:
4564 case TPACPI_VIDEO_NEW:
4565 res = video_autosw_set(1);
4566 if (res)
4567 return res;
4568 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4569 break;
4570 default:
4571 return -ENOSYS;
4572 }
4573 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004574 printk(TPACPI_ERR
4575 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004576 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004577 }
4578
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004579 return (res)? 0 : -EIO;
4580}
4581
4582static int video_expand_toggle(void)
4583{
4584 switch (video_supported) {
4585 case TPACPI_VIDEO_570:
4586 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4587 0 : -EIO;
4588 case TPACPI_VIDEO_770:
4589 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4590 0 : -EIO;
4591 case TPACPI_VIDEO_NEW:
4592 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4593 0 : -EIO;
4594 default:
4595 return -ENOSYS;
4596 }
4597 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004598}
4599
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004600static int video_read(char *p)
4601{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004602 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004603 int len = 0;
4604
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004605 if (video_supported == TPACPI_VIDEO_NONE) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004606 len += sprintf(p + len, "status:\t\tnot supported\n");
4607 return len;
4608 }
4609
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004610 status = video_outputsw_get();
4611 if (status < 0)
4612 return status;
4613
4614 autosw = video_autosw_get();
4615 if (autosw < 0)
4616 return autosw;
4617
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004618 len += sprintf(p + len, "status:\t\tsupported\n");
4619 len += sprintf(p + len, "lcd:\t\t%s\n", enabled(status, 0));
4620 len += sprintf(p + len, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004621 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004622 len += sprintf(p + len, "dvi:\t\t%s\n", enabled(status, 3));
4623 len += sprintf(p + len, "auto:\t\t%s\n", enabled(autosw, 0));
4624 len += sprintf(p + len, "commands:\tlcd_enable, lcd_disable\n");
4625 len += sprintf(p + len, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004626 if (video_supported == TPACPI_VIDEO_NEW)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004627 len += sprintf(p + len, "commands:\tdvi_enable, dvi_disable\n");
4628 len += sprintf(p + len, "commands:\tauto_enable, auto_disable\n");
4629 len += sprintf(p + len, "commands:\tvideo_switch, expand_toggle\n");
4630
4631 return len;
4632}
4633
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004634static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635{
4636 char *cmd;
4637 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004638 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004640 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004641 return -ENODEV;
4642
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004643 enable = 0;
4644 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646 while ((cmd = next_cmd(&buf))) {
4647 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004648 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004650 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004652 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004654 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004655 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004656 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004657 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004658 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004659 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004660 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004662 res = video_autosw_set(1);
4663 if (res)
4664 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004666 res = video_autosw_set(0);
4667 if (res)
4668 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004670 res = video_outputsw_cycle();
4671 if (res)
4672 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004674 res = video_expand_toggle();
4675 if (res)
4676 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 } else
4678 return -EINVAL;
4679 }
4680
4681 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004682 status = video_outputsw_get();
4683 if (status < 0)
4684 return status;
4685 res = video_outputsw_set((status & ~disable) | enable);
4686 if (res)
4687 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 }
4689
4690 return 0;
4691}
4692
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004693static struct ibm_struct video_driver_data = {
4694 .name = "video",
4695 .read = video_read,
4696 .write = video_write,
4697 .exit = video_exit,
4698};
4699
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004700#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4701
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004702/*************************************************************************
4703 * Light (thinklight) subdriver
4704 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004706TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4707TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004708
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004709static int light_get_status(void)
4710{
4711 int status = 0;
4712
4713 if (tp_features.light_status) {
4714 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4715 return -EIO;
4716 return (!!status);
4717 }
4718
4719 return -ENXIO;
4720}
4721
4722static int light_set_status(int status)
4723{
4724 int rc;
4725
4726 if (tp_features.light) {
4727 if (cmos_handle) {
4728 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4729 (status)?
4730 TP_CMOS_THINKLIGHT_ON :
4731 TP_CMOS_THINKLIGHT_OFF);
4732 } else {
4733 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4734 (status)? 1 : 0);
4735 }
4736 return (rc)? 0 : -EIO;
4737 }
4738
4739 return -ENXIO;
4740}
4741
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004742static void light_set_status_worker(struct work_struct *work)
4743{
4744 struct tpacpi_led_classdev *data =
4745 container_of(work, struct tpacpi_led_classdev, work);
4746
4747 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004748 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004749}
4750
4751static void light_sysfs_set(struct led_classdev *led_cdev,
4752 enum led_brightness brightness)
4753{
4754 struct tpacpi_led_classdev *data =
4755 container_of(led_cdev,
4756 struct tpacpi_led_classdev,
4757 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004758 data->new_state = (brightness != LED_OFF) ?
4759 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004760 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004761}
4762
4763static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4764{
4765 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4766}
4767
4768static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4769 .led_classdev = {
4770 .name = "tpacpi::thinklight",
4771 .brightness_set = &light_sysfs_set,
4772 .brightness_get = &light_sysfs_get,
4773 }
4774};
4775
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004776static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004778 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004779
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004780 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4781
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004782 TPACPI_ACPIHANDLE_INIT(ledb);
4783 TPACPI_ACPIHANDLE_INIT(lght);
4784 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004785 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004786
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004787 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004788 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004789
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004790 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004791 /* light status not supported on
4792 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004793 tp_features.light_status =
4794 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004796 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4797 str_supported(tp_features.light),
4798 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004799
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004800 if (!tp_features.light)
4801 return 1;
4802
4803 rc = led_classdev_register(&tpacpi_pdev->dev,
4804 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004805
4806 if (rc < 0) {
4807 tp_features.light = 0;
4808 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004809 } else {
4810 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004811 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004812
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004813 return rc;
4814}
4815
4816static void light_exit(void)
4817{
4818 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4819 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004820 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821}
4822
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004823static int light_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824{
4825 int len = 0;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004826 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004828 if (!tp_features.light) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004829 len += sprintf(p + len, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004830 } else if (!tp_features.light_status) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004831 len += sprintf(p + len, "status:\t\tunknown\n");
4832 len += sprintf(p + len, "commands:\ton, off\n");
4833 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004834 status = light_get_status();
4835 if (status < 0)
4836 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 len += sprintf(p + len, "status:\t\t%s\n", onoff(status, 0));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004838 len += sprintf(p + len, "commands:\ton, off\n");
4839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
4841 return len;
4842}
4843
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004844static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004847 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004848
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004849 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004850 return -ENODEV;
4851
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 while ((cmd = next_cmd(&buf))) {
4853 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004854 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004856 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 } else
4858 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 }
4860
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004861 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862}
4863
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004864static struct ibm_struct light_driver_data = {
4865 .name = "light",
4866 .read = light_read,
4867 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004868 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004869};
4870
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004871/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004872 * CMOS subdriver
4873 */
4874
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004875/* sysfs cmos_command -------------------------------------------------- */
4876static ssize_t cmos_command_store(struct device *dev,
4877 struct device_attribute *attr,
4878 const char *buf, size_t count)
4879{
4880 unsigned long cmos_cmd;
4881 int res;
4882
4883 if (parse_strtoul(buf, 21, &cmos_cmd))
4884 return -EINVAL;
4885
4886 res = issue_thinkpad_cmos_command(cmos_cmd);
4887 return (res)? res : count;
4888}
4889
4890static struct device_attribute dev_attr_cmos_command =
4891 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4892
4893/* --------------------------------------------------------------------- */
4894
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004895static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004896{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004897 int res;
4898
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004899 vdbg_printk(TPACPI_DBG_INIT,
4900 "initializing cmos commands subdriver\n");
4901
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004902 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004903
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004904 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4905 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004906
4907 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4908 if (res)
4909 return res;
4910
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004911 return (cmos_handle)? 0 : 1;
4912}
4913
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004914static void cmos_exit(void)
4915{
4916 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4917}
4918
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004919static int cmos_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920{
4921 int len = 0;
4922
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004923 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4924 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 if (!cmos_handle)
4926 len += sprintf(p + len, "status:\t\tnot supported\n");
4927 else {
4928 len += sprintf(p + len, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004929 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 }
4931
4932 return len;
4933}
4934
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004935static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936{
4937 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004938 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004941 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4942 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 /* cmos_cmd set */
4944 } else
4945 return -EINVAL;
4946
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004947 res = issue_thinkpad_cmos_command(cmos_cmd);
4948 if (res)
4949 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 }
4951
4952 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004953}
4954
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004955static struct ibm_struct cmos_driver_data = {
4956 .name = "cmos",
4957 .read = cmos_read,
4958 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004959 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004960};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004961
4962/*************************************************************************
4963 * LED subdriver
4964 */
4965
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004966enum led_access_mode {
4967 TPACPI_LED_NONE = 0,
4968 TPACPI_LED_570, /* 570 */
4969 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4970 TPACPI_LED_NEW, /* all others */
4971};
4972
4973enum { /* For TPACPI_LED_OLD */
4974 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4975 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
4976 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
4977};
4978
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004979static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004980
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004981TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004982 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
4983 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004984 "LED", /* all others */
4985 ); /* R30, R31 */
4986
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004987#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004988static struct tpacpi_led_classdev *tpacpi_leds;
4989static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07004990static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004991 /* there's a limit of 19 chars + NULL before 2.6.26 */
4992 "tpacpi::power",
4993 "tpacpi:orange:batt",
4994 "tpacpi:green:batt",
4995 "tpacpi::dock_active",
4996 "tpacpi::bay_active",
4997 "tpacpi::dock_batt",
4998 "tpacpi::unknown_led",
4999 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005000 "tpacpi::dock_status1",
5001 "tpacpi::dock_status2",
5002 "tpacpi::unknown_led2",
5003 "tpacpi::unknown_led3",
5004 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005005};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005006#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005007
5008static inline bool tpacpi_is_led_restricted(const unsigned int led)
5009{
5010#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5011 return false;
5012#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005013 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005014#endif
5015}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005016
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005017static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005018{
5019 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005020 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005021
5022 switch (led_supported) {
5023 case TPACPI_LED_570:
5024 if (!acpi_evalf(ec_handle,
5025 &status, "GLED", "dd", 1 << led))
5026 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005027 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005028 TPACPI_LED_OFF :
5029 ((status == 1)?
5030 TPACPI_LED_ON :
5031 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005032 tpacpi_led_state_cache[led] = led_s;
5033 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005034 default:
5035 return -ENXIO;
5036 }
5037
5038 /* not reached */
5039}
5040
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005041static int led_set_status(const unsigned int led,
5042 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005043{
5044 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005045 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5046 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005047
5048 int rc = 0;
5049
5050 switch (led_supported) {
5051 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005052 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005053 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005054 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005055 if (unlikely(tpacpi_is_led_restricted(led)))
5056 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005057 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5058 (1 << led), led_sled_arg1[ledstatus]))
5059 rc = -EIO;
5060 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005061 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005062 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005063 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005064 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005065 if (unlikely(tpacpi_is_led_restricted(led)))
5066 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005067 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5068 if (rc >= 0)
5069 rc = ec_write(TPACPI_LED_EC_HLBL,
5070 (ledstatus == TPACPI_LED_BLINK) << led);
5071 if (rc >= 0)
5072 rc = ec_write(TPACPI_LED_EC_HLCL,
5073 (ledstatus != TPACPI_LED_OFF) << led);
5074 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005075 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005076 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005077 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5078 return -EINVAL;
5079 if (unlikely(tpacpi_is_led_restricted(led)))
5080 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005081 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5082 led, led_led_arg1[ledstatus]))
5083 rc = -EIO;
5084 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005085 default:
5086 rc = -ENXIO;
5087 }
5088
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005089 if (!rc)
5090 tpacpi_led_state_cache[led] = ledstatus;
5091
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005092 return rc;
5093}
5094
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005095static void led_set_status_worker(struct work_struct *work)
5096{
5097 struct tpacpi_led_classdev *data =
5098 container_of(work, struct tpacpi_led_classdev, work);
5099
5100 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005101 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005102}
5103
5104static void led_sysfs_set(struct led_classdev *led_cdev,
5105 enum led_brightness brightness)
5106{
5107 struct tpacpi_led_classdev *data = container_of(led_cdev,
5108 struct tpacpi_led_classdev, led_classdev);
5109
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005110 if (brightness == LED_OFF)
5111 data->new_state = TPACPI_LED_OFF;
5112 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5113 data->new_state = TPACPI_LED_ON;
5114 else
5115 data->new_state = TPACPI_LED_BLINK;
5116
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005117 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005118}
5119
5120static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5121 unsigned long *delay_on, unsigned long *delay_off)
5122{
5123 struct tpacpi_led_classdev *data = container_of(led_cdev,
5124 struct tpacpi_led_classdev, led_classdev);
5125
5126 /* Can we choose the flash rate? */
5127 if (*delay_on == 0 && *delay_off == 0) {
5128 /* yes. set them to the hardware blink rate (1 Hz) */
5129 *delay_on = 500; /* ms */
5130 *delay_off = 500; /* ms */
5131 } else if ((*delay_on != 500) || (*delay_off != 500))
5132 return -EINVAL;
5133
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005134 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005135 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005136
5137 return 0;
5138}
5139
5140static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5141{
5142 int rc;
5143
5144 struct tpacpi_led_classdev *data = container_of(led_cdev,
5145 struct tpacpi_led_classdev, led_classdev);
5146
5147 rc = led_get_status(data->led);
5148
5149 if (rc == TPACPI_LED_OFF || rc < 0)
5150 rc = LED_OFF; /* no error handling in led class :( */
5151 else
5152 rc = LED_FULL;
5153
5154 return rc;
5155}
5156
5157static void led_exit(void)
5158{
5159 unsigned int i;
5160
5161 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5162 if (tpacpi_leds[i].led_classdev.name)
5163 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5164 }
5165
5166 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005167}
5168
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005169static int __init tpacpi_init_led(unsigned int led)
5170{
5171 int rc;
5172
5173 tpacpi_leds[led].led = led;
5174
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005175 /* LEDs with no name don't get registered */
5176 if (!tpacpi_led_names[led])
5177 return 0;
5178
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005179 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5180 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5181 if (led_supported == TPACPI_LED_570)
5182 tpacpi_leds[led].led_classdev.brightness_get =
5183 &led_sysfs_get;
5184
5185 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5186
5187 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5188
5189 rc = led_classdev_register(&tpacpi_pdev->dev,
5190 &tpacpi_leds[led].led_classdev);
5191 if (rc < 0)
5192 tpacpi_leds[led].led_classdev.name = NULL;
5193
5194 return rc;
5195}
5196
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005197static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5198 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5199 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5200 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5201
5202 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5203 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5204 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5205 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5206 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5207 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5208 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5209 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5210
5211 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5212 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5213 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5214 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5215 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5216
5217 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5218 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5219 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5220 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5221
5222 /* (1) - may have excess leds enabled on MSB */
5223
5224 /* Defaults (order matters, keep last, don't reorder!) */
5225 { /* Lenovo */
5226 .vendor = PCI_VENDOR_ID_LENOVO,
5227 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5228 .quirks = 0x1fffU,
5229 },
5230 { /* IBM ThinkPads with no EC version string */
5231 .vendor = PCI_VENDOR_ID_IBM,
5232 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5233 .quirks = 0x00ffU,
5234 },
5235 { /* IBM ThinkPads with EC version string */
5236 .vendor = PCI_VENDOR_ID_IBM,
5237 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5238 .quirks = 0x00bfU,
5239 },
5240};
5241
5242#undef TPACPI_LEDQ_IBM
5243#undef TPACPI_LEDQ_LNV
5244
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005245static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005246{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005247 unsigned int i;
5248 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005249 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005250
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005251 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5252
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005253 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005254
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005255 if (!led_handle)
5256 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005257 led_supported = TPACPI_LED_NONE;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005258 else if (strlencmp(led_path, "SLED") == 0)
5259 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005260 led_supported = TPACPI_LED_570;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005261 else if (strlencmp(led_path, "SYSL") == 0)
5262 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005263 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005264 else
5265 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005266 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005267
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005268 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5269 str_supported(led_supported), led_supported);
5270
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005271 if (led_supported == TPACPI_LED_NONE)
5272 return 1;
5273
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005274 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5275 GFP_KERNEL);
5276 if (!tpacpi_leds) {
5277 printk(TPACPI_ERR "Out of memory for LED data\n");
5278 return -ENOMEM;
5279 }
5280
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005281 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5282 ARRAY_SIZE(led_useful_qtable));
5283
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005284 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005285 if (!tpacpi_is_led_restricted(i) &&
5286 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005287 rc = tpacpi_init_led(i);
5288 if (rc < 0) {
5289 led_exit();
5290 return rc;
5291 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005292 }
5293 }
5294
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005295#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005296 printk(TPACPI_NOTICE
5297 "warning: userspace override of important "
5298 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005299#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005300 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005301}
5302
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005303#define str_led_status(s) \
5304 ((s) == TPACPI_LED_OFF ? "off" : \
5305 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005306
5307static int led_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308{
5309 int len = 0;
5310
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005311 if (!led_supported) {
5312 len += sprintf(p + len, "status:\t\tnot supported\n");
5313 return len;
5314 }
5315 len += sprintf(p + len, "status:\t\tsupported\n");
5316
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005317 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005318 /* 570 */
5319 int i, status;
5320 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005321 status = led_get_status(i);
5322 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005323 return -EIO;
5324 len += sprintf(p + len, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005325 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005326 }
5327 }
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 len += sprintf(p + len, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005330 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
5332 return len;
5333}
5334
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005335static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336{
5337 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005338 int led, rc;
5339 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005340
5341 if (!led_supported)
5342 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343
5344 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005345 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346 return -EINVAL;
5347
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005348 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005349 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005351 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005352 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005353 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005354 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005355 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005356 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005357
5358 rc = led_set_status(led, s);
5359 if (rc < 0)
5360 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 }
5362
5363 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005364}
5365
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005366static struct ibm_struct led_driver_data = {
5367 .name = "led",
5368 .read = led_read,
5369 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005370 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005371};
5372
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005373/*************************************************************************
5374 * Beep subdriver
5375 */
5376
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005377TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005378
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005379#define TPACPI_BEEP_Q1 0x0001
5380
5381static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5382 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5383 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5384};
5385
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005386static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005387{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005388 unsigned long quirks;
5389
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005390 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5391
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005392 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005393
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005394 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5395 str_supported(beep_handle != NULL));
5396
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005397 quirks = tpacpi_check_quirks(beep_quirk_table,
5398 ARRAY_SIZE(beep_quirk_table));
5399
5400 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5401
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005402 return (beep_handle)? 0 : 1;
5403}
5404
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005405static int beep_read(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406{
5407 int len = 0;
5408
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005409 if (!beep_handle)
5410 len += sprintf(p + len, "status:\t\tnot supported\n");
5411 else {
5412 len += sprintf(p + len, "status:\t\tsupported\n");
5413 len += sprintf(p + len, "commands:\t<cmd> (<cmd> is 0-17)\n");
5414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
5416 return len;
5417}
5418
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005419static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420{
5421 char *cmd;
5422 int beep_cmd;
5423
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005424 if (!beep_handle)
5425 return -ENODEV;
5426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005428 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5429 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 /* beep_cmd set */
5431 } else
5432 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005433 if (tp_features.beep_needs_two_args) {
5434 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5435 beep_cmd, 0))
5436 return -EIO;
5437 } else {
5438 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5439 beep_cmd))
5440 return -EIO;
5441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 }
5443
5444 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005445}
5446
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005447static struct ibm_struct beep_driver_data = {
5448 .name = "beep",
5449 .read = beep_read,
5450 .write = beep_write,
5451};
5452
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005453/*************************************************************************
5454 * Thermal subdriver
5455 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005456
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005457enum thermal_access_mode {
5458 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5459 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5460 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5461 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5462 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5463};
5464
5465enum { /* TPACPI_THERMAL_TPEC_* */
5466 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5467 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5468 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005469
5470 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005471};
5472
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005473
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005474#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5475struct ibm_thermal_sensors_struct {
5476 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5477};
5478
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005479static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005480
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005481/* idx is zero-based */
5482static int thermal_get_sensor(int idx, s32 *value)
5483{
5484 int t;
5485 s8 tmp;
5486 char tmpi[5];
5487
5488 t = TP_EC_THERMAL_TMP0;
5489
5490 switch (thermal_read_mode) {
5491#if TPACPI_MAX_THERMAL_SENSORS >= 16
5492 case TPACPI_THERMAL_TPEC_16:
5493 if (idx >= 8 && idx <= 15) {
5494 t = TP_EC_THERMAL_TMP8;
5495 idx -= 8;
5496 }
5497 /* fallthrough */
5498#endif
5499 case TPACPI_THERMAL_TPEC_8:
5500 if (idx <= 7) {
5501 if (!acpi_ec_read(t + idx, &tmp))
5502 return -EIO;
5503 *value = tmp * 1000;
5504 return 0;
5505 }
5506 break;
5507
5508 case TPACPI_THERMAL_ACPI_UPDT:
5509 if (idx <= 7) {
5510 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5511 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5512 return -EIO;
5513 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5514 return -EIO;
5515 *value = (t - 2732) * 100;
5516 return 0;
5517 }
5518 break;
5519
5520 case TPACPI_THERMAL_ACPI_TMP07:
5521 if (idx <= 7) {
5522 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5523 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5524 return -EIO;
5525 if (t > 127 || t < -127)
5526 t = TP_EC_THERMAL_TMP_NA;
5527 *value = t * 1000;
5528 return 0;
5529 }
5530 break;
5531
5532 case TPACPI_THERMAL_NONE:
5533 default:
5534 return -ENOSYS;
5535 }
5536
5537 return -EINVAL;
5538}
5539
5540static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5541{
5542 int res, i;
5543 int n;
5544
5545 n = 8;
5546 i = 0;
5547
5548 if (!s)
5549 return -EINVAL;
5550
5551 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5552 n = 16;
5553
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005554 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005555 res = thermal_get_sensor(i, &s->temp[i]);
5556 if (res)
5557 return res;
5558 }
5559
5560 return n;
5561}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005562
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005563static void thermal_dump_all_sensors(void)
5564{
5565 int n, i;
5566 struct ibm_thermal_sensors_struct t;
5567
5568 n = thermal_get_sensors(&t);
5569 if (n <= 0)
5570 return;
5571
5572 printk(TPACPI_NOTICE
5573 "temperatures (Celsius):");
5574
5575 for (i = 0; i < n; i++) {
5576 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
5577 printk(KERN_CONT " %d", (int)(t.temp[i] / 1000));
5578 else
5579 printk(KERN_CONT " N/A");
5580 }
5581
5582 printk(KERN_CONT "\n");
5583}
5584
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005585/* sysfs temp##_input -------------------------------------------------- */
5586
5587static ssize_t thermal_temp_input_show(struct device *dev,
5588 struct device_attribute *attr,
5589 char *buf)
5590{
5591 struct sensor_device_attribute *sensor_attr =
5592 to_sensor_dev_attr(attr);
5593 int idx = sensor_attr->index;
5594 s32 value;
5595 int res;
5596
5597 res = thermal_get_sensor(idx, &value);
5598 if (res)
5599 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005600 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005601 return -ENXIO;
5602
5603 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5604}
5605
5606#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005607 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5608 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005609
5610static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5611 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5612 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5613 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5614 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5615 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5616 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5617 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5618 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5619 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5620 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5621 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5622 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5623 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5624 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5625 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5626 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5627};
5628
5629#define THERMAL_ATTRS(X) \
5630 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5631
5632static struct attribute *thermal_temp_input_attr[] = {
5633 THERMAL_ATTRS(8),
5634 THERMAL_ATTRS(9),
5635 THERMAL_ATTRS(10),
5636 THERMAL_ATTRS(11),
5637 THERMAL_ATTRS(12),
5638 THERMAL_ATTRS(13),
5639 THERMAL_ATTRS(14),
5640 THERMAL_ATTRS(15),
5641 THERMAL_ATTRS(0),
5642 THERMAL_ATTRS(1),
5643 THERMAL_ATTRS(2),
5644 THERMAL_ATTRS(3),
5645 THERMAL_ATTRS(4),
5646 THERMAL_ATTRS(5),
5647 THERMAL_ATTRS(6),
5648 THERMAL_ATTRS(7),
5649 NULL
5650};
5651
5652static const struct attribute_group thermal_temp_input16_group = {
5653 .attrs = thermal_temp_input_attr
5654};
5655
5656static const struct attribute_group thermal_temp_input8_group = {
5657 .attrs = &thermal_temp_input_attr[8]
5658};
5659
5660#undef THERMAL_SENSOR_ATTR_TEMP
5661#undef THERMAL_ATTRS
5662
5663/* --------------------------------------------------------------------- */
5664
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005665static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005666{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005667 u8 t, ta1, ta2;
5668 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005669 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005670 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005671
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005672 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5673
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005674 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005675
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005676 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005677 /*
5678 * Direct EC access mode: sensors at registers
5679 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5680 * non-implemented, thermal sensors return 0x80 when
5681 * not available
5682 */
5683
5684 ta1 = ta2 = 0;
5685 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005686 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005687 ta1 |= t;
5688 } else {
5689 ta1 = 0;
5690 break;
5691 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005692 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005693 ta2 |= t;
5694 } else {
5695 ta1 = 0;
5696 break;
5697 }
5698 }
5699 if (ta1 == 0) {
5700 /* This is sheer paranoia, but we handle it anyway */
5701 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005702 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005703 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005704 "falling back to ACPI TMPx access "
5705 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005706 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005707 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005708 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005709 "ThinkPad ACPI EC access misbehaving, "
5710 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005711 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005712 }
5713 } else {
5714 thermal_read_mode =
5715 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005716 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005717 }
5718 } else if (acpi_tmp7) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005719 if (acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
5720 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005721 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005722 } else {
5723 /* Standard ACPI TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005724 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005725 }
5726 } else {
5727 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005728 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005729 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005730
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005731 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5732 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5733 thermal_read_mode);
5734
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005735 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005736 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005737 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005738 &thermal_temp_input16_group);
5739 if (res)
5740 return res;
5741 break;
5742 case TPACPI_THERMAL_TPEC_8:
5743 case TPACPI_THERMAL_ACPI_TMP07:
5744 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005745 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005746 &thermal_temp_input8_group);
5747 if (res)
5748 return res;
5749 break;
5750 case TPACPI_THERMAL_NONE:
5751 default:
5752 return 1;
5753 }
5754
5755 return 0;
5756}
5757
5758static void thermal_exit(void)
5759{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005760 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005761 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005762 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005763 &thermal_temp_input16_group);
5764 break;
5765 case TPACPI_THERMAL_TPEC_8:
5766 case TPACPI_THERMAL_ACPI_TMP07:
5767 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005768 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005769 &thermal_temp_input16_group);
5770 break;
5771 case TPACPI_THERMAL_NONE:
5772 default:
5773 break;
5774 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005775}
5776
5777static int thermal_read(char *p)
5778{
5779 int len = 0;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005780 int n, i;
5781 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005782
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005783 n = thermal_get_sensors(&t);
5784 if (unlikely(n < 0))
5785 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005786
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005787 len += sprintf(p + len, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005788
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005789 if (n > 0) {
5790 for (i = 0; i < (n - 1); i++)
5791 len += sprintf(p + len, "%d ", t.temp[i] / 1000);
5792 len += sprintf(p + len, "%d\n", t.temp[i] / 1000);
5793 } else
5794 len += sprintf(p + len, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005795
5796 return len;
5797}
5798
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005799static struct ibm_struct thermal_driver_data = {
5800 .name = "thermal",
5801 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005802 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005803};
5804
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005805/*************************************************************************
5806 * EC Dump subdriver
5807 */
5808
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005809static u8 ecdump_regs[256];
5810
5811static int ecdump_read(char *p)
5812{
5813 int len = 0;
5814 int i, j;
5815 u8 v;
5816
5817 len += sprintf(p + len, "EC "
5818 " +00 +01 +02 +03 +04 +05 +06 +07"
5819 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5820 for (i = 0; i < 256; i += 16) {
5821 len += sprintf(p + len, "EC 0x%02x:", i);
5822 for (j = 0; j < 16; j++) {
5823 if (!acpi_ec_read(i + j, &v))
5824 break;
5825 if (v != ecdump_regs[i + j])
5826 len += sprintf(p + len, " *%02x", v);
5827 else
5828 len += sprintf(p + len, " %02x", v);
5829 ecdump_regs[i + j] = v;
5830 }
5831 len += sprintf(p + len, "\n");
5832 if (j != 16)
5833 break;
5834 }
5835
5836 /* These are way too dangerous to advertise openly... */
5837#if 0
5838 len += sprintf(p + len, "commands:\t0x<offset> 0x<value>"
5839 " (<offset> is 00-ff, <value> is 00-ff)\n");
5840 len += sprintf(p + len, "commands:\t0x<offset> <value> "
5841 " (<offset> is 00-ff, <value> is 0-255)\n");
5842#endif
5843 return len;
5844}
5845
5846static int ecdump_write(char *buf)
5847{
5848 char *cmd;
5849 int i, v;
5850
5851 while ((cmd = next_cmd(&buf))) {
5852 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5853 /* i and v set */
5854 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5855 /* i and v set */
5856 } else
5857 return -EINVAL;
5858 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5859 if (!acpi_ec_write(i, v))
5860 return -EIO;
5861 } else
5862 return -EINVAL;
5863 }
5864
5865 return 0;
5866}
5867
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005868static struct ibm_struct ecdump_driver_data = {
5869 .name = "ecdump",
5870 .read = ecdump_read,
5871 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005872 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005873};
5874
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005875/*************************************************************************
5876 * Backlight/brightness subdriver
5877 */
Holger Macht8acb0252006-10-20 14:30:28 -07005878
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005879#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5880
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005881/*
5882 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5883 * CMOS NVRAM byte 0x5E, bits 0-3.
5884 *
5885 * EC HBRV (0x31) has the following layout
5886 * Bit 7: unknown function
5887 * Bit 6: unknown function
5888 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5889 * Bit 4: must be set to zero to avoid problems
5890 * Bit 3-0: backlight brightness level
5891 *
5892 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005893 *
5894 * WARNING: The X61 has been verified to use HBRV for something else, so
5895 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5896 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005897 */
5898
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005899enum {
5900 TP_EC_BACKLIGHT = 0x31,
5901
5902 /* TP_EC_BACKLIGHT bitmasks */
5903 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5904 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5905 TP_EC_BACKLIGHT_MAPSW = 0x20,
5906};
5907
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005908enum tpacpi_brightness_access_mode {
5909 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5910 TPACPI_BRGHT_MODE_EC, /* EC control */
5911 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5912 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5913 TPACPI_BRGHT_MODE_MAX
5914};
5915
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005916static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005917
5918static enum tpacpi_brightness_access_mode brightness_mode =
5919 TPACPI_BRGHT_MODE_MAX;
5920
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005921static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5922
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005923static struct mutex brightness_mutex;
5924
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005925/* NVRAM brightness access,
5926 * call with brightness_mutex held! */
5927static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005928{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005929 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005930
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005931 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5932 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5933 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5934 lnvram &= (tp_features.bright_16levels) ? 0x0f : 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005935
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005936 return lnvram;
5937}
5938
5939static void tpacpi_brightness_checkpoint_nvram(void)
5940{
5941 u8 lec = 0;
5942 u8 b_nvram;
5943
5944 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5945 return;
5946
5947 vdbg_printk(TPACPI_DBG_BRGHT,
5948 "trying to checkpoint backlight level to NVRAM...\n");
5949
5950 if (mutex_lock_killable(&brightness_mutex) < 0)
5951 return;
5952
5953 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5954 goto unlock;
5955 lec &= TP_EC_BACKLIGHT_LVLMSK;
5956 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5957
5958 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5959 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
5960 /* NVRAM needs update */
5961 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
5962 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
5963 b_nvram |= lec;
5964 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
5965 dbg_printk(TPACPI_DBG_BRGHT,
5966 "updated NVRAM backlight level to %u (0x%02x)\n",
5967 (unsigned int) lec, (unsigned int) b_nvram);
5968 } else
5969 vdbg_printk(TPACPI_DBG_BRGHT,
5970 "NVRAM backlight level already is %u (0x%02x)\n",
5971 (unsigned int) lec, (unsigned int) b_nvram);
5972
5973unlock:
5974 mutex_unlock(&brightness_mutex);
5975}
5976
5977
5978/* call with brightness_mutex held! */
5979static int tpacpi_brightness_get_raw(int *status)
5980{
5981 u8 lec = 0;
5982
5983 switch (brightness_mode) {
5984 case TPACPI_BRGHT_MODE_UCMS_STEP:
5985 *status = tpacpi_brightness_nvram_get();
5986 return 0;
5987 case TPACPI_BRGHT_MODE_EC:
5988 case TPACPI_BRGHT_MODE_ECNVRAM:
5989 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005990 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005991 *status = lec;
5992 return 0;
5993 default:
5994 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005995 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005996}
5997
5998/* call with brightness_mutex held! */
5999/* do NOT call with illegal backlight level value */
6000static int tpacpi_brightness_set_ec(unsigned int value)
6001{
6002 u8 lec = 0;
6003
6004 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6005 return -EIO;
6006
6007 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6008 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6009 (value & TP_EC_BACKLIGHT_LVLMSK))))
6010 return -EIO;
6011
6012 return 0;
6013}
6014
6015/* call with brightness_mutex held! */
6016static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6017{
6018 int cmos_cmd, inc;
6019 unsigned int current_value, i;
6020
6021 current_value = tpacpi_brightness_nvram_get();
6022
6023 if (value == current_value)
6024 return 0;
6025
6026 cmos_cmd = (value > current_value) ?
6027 TP_CMOS_BRIGHTNESS_UP :
6028 TP_CMOS_BRIGHTNESS_DOWN;
6029 inc = (value > current_value) ? 1 : -1;
6030
6031 for (i = current_value; i != value; i += inc)
6032 if (issue_thinkpad_cmos_command(cmos_cmd))
6033 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006034
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006035 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006036}
6037
6038/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006039static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006040{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006041 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006042
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006043 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
6044 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006045 return -EINVAL;
6046
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006047 vdbg_printk(TPACPI_DBG_BRGHT,
6048 "set backlight level to %d\n", value);
6049
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006050 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006051 if (res < 0)
6052 return res;
6053
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006054 switch (brightness_mode) {
6055 case TPACPI_BRGHT_MODE_EC:
6056 case TPACPI_BRGHT_MODE_ECNVRAM:
6057 res = tpacpi_brightness_set_ec(value);
6058 break;
6059 case TPACPI_BRGHT_MODE_UCMS_STEP:
6060 res = tpacpi_brightness_set_ucmsstep(value);
6061 break;
6062 default:
6063 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006064 }
6065
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006066 mutex_unlock(&brightness_mutex);
6067 return res;
6068}
6069
6070/* sysfs backlight class ----------------------------------------------- */
6071
6072static int brightness_update_status(struct backlight_device *bd)
6073{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006074 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006075 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6076 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006077 bd->props.brightness : 0;
6078
6079 dbg_printk(TPACPI_DBG_BRGHT,
6080 "backlight: attempt to set level to %d\n",
6081 level);
6082
6083 /* it is the backlight class's job (caller) to handle
6084 * EINTR and other errors properly */
6085 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006086}
Holger Macht8acb0252006-10-20 14:30:28 -07006087
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006088static int brightness_get(struct backlight_device *bd)
6089{
6090 int status, res;
6091
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006092 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006093 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006094 return 0;
6095
6096 res = tpacpi_brightness_get_raw(&status);
6097
6098 mutex_unlock(&brightness_mutex);
6099
6100 if (res < 0)
6101 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006102
6103 return status & TP_EC_BACKLIGHT_LVLMSK;
6104}
6105
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006106static void tpacpi_brightness_notify_change(void)
6107{
6108 backlight_force_update(ibm_backlight_device,
6109 BACKLIGHT_UPDATE_HOTKEY);
6110}
6111
Richard Purdie599a52d2007-02-10 23:07:48 +00006112static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006113 .get_brightness = brightness_get,
6114 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006115};
6116
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006117/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006118
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006119/*
6120 * These are only useful for models that have only one possibility
6121 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6122 * these quirks.
6123 */
6124#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6125#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6126#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6127
6128static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6129 /* Models with ATI GPUs known to require ECNVRAM mode */
6130 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6131
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006132 /* Models with ATI GPUs that can use ECNVRAM */
6133 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006134 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6135 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6136 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6137
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006138 /* Models with Intel Extreme Graphics 2 */
6139 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC),
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006140 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6141 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006142
6143 /* Models with Intel GMA900 */
6144 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6145 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6146 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6147};
6148
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006149static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006150{
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006151 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006152 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006153
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006154 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6155
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006156 mutex_init(&brightness_mutex);
6157
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006158 quirks = tpacpi_check_quirks(brightness_quirk_table,
6159 ARRAY_SIZE(brightness_quirk_table));
6160
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006161 /*
6162 * We always attempt to detect acpi support, so as to switch
6163 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6164 * going to publish a backlight interface
6165 */
6166 b = tpacpi_check_std_acpi_brightness_support();
6167 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006168
6169 if (acpi_video_backlight_support()) {
6170 if (brightness_enable > 1) {
6171 printk(TPACPI_NOTICE
6172 "Standard ACPI backlight interface "
6173 "available, not loading native one.\n");
6174 return 1;
6175 } else if (brightness_enable == 1) {
6176 printk(TPACPI_NOTICE
6177 "Backlight control force enabled, even if standard "
6178 "ACPI backlight interface is available\n");
6179 }
6180 } else {
6181 if (brightness_enable > 1) {
6182 printk(TPACPI_NOTICE
6183 "Standard ACPI backlight interface not "
6184 "available, thinkpad_acpi native "
6185 "brightness control enabled\n");
6186 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02006187 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006188 }
6189
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006190 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006191 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006192 "brightness support disabled by "
6193 "module parameter\n");
6194 return 1;
6195 }
6196
6197 if (b > 16) {
6198 printk(TPACPI_ERR
6199 "Unsupported brightness interface, "
6200 "please contact %s\n", TPACPI_MAIL);
6201 return 1;
6202 }
6203 if (b == 16)
6204 tp_features.bright_16levels = 1;
6205
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006206 /*
6207 * Check for module parameter bogosity, note that we
6208 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6209 * able to detect "unspecified"
6210 */
6211 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006212 return -EINVAL;
6213
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006214 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6215 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6216 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006217 if (quirks & TPACPI_BRGHT_Q_EC)
6218 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6219 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006220 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6221
6222 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006223 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006224 brightness_mode);
6225 }
6226
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006227 /* Safety */
6228 if (thinkpad_id.vendor != PCI_VENDOR_ID_IBM &&
6229 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6230 brightness_mode == TPACPI_BRGHT_MODE_EC))
6231 return -EINVAL;
6232
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006233 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006234 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006235
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006236 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006237 printk(TPACPI_INFO
6238 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006239
Henrique de Moraes Holschuh7d5a0152007-04-24 11:48:20 -03006240 ibm_backlight_device = backlight_device_register(
6241 TPACPI_BACKLIGHT_DEV_NAME, NULL, NULL,
6242 &ibm_backlight_data);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006243 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006244 int rc = PTR_ERR(ibm_backlight_device);
6245 ibm_backlight_device = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006246 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006247 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006248 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006249 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6250 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006251
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006252 if (quirks & TPACPI_BRGHT_Q_ASK) {
6253 printk(TPACPI_NOTICE
6254 "brightness: will use unverified default: "
6255 "brightness_mode=%d\n", brightness_mode);
6256 printk(TPACPI_NOTICE
6257 "brightness: please report to %s whether it works well "
6258 "or not on your ThinkPad\n", TPACPI_MAIL);
6259 }
6260
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006261 ibm_backlight_device->props.max_brightness =
6262 (tp_features.bright_16levels)? 15 : 7;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006263 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006264 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006265
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006266 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6267 "brightness: registering brightness hotkeys "
6268 "as change notification\n");
6269 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6270 | TP_ACPI_HKEY_BRGHTUP_MASK
6271 | TP_ACPI_HKEY_BRGHTDWN_MASK);;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006272 return 0;
6273}
6274
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006275static void brightness_suspend(pm_message_t state)
6276{
6277 tpacpi_brightness_checkpoint_nvram();
6278}
6279
6280static void brightness_shutdown(void)
6281{
6282 tpacpi_brightness_checkpoint_nvram();
6283}
6284
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006285static void brightness_exit(void)
6286{
6287 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006288 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006289 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006290 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006291 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006292
6293 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006294}
6295
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006296static int brightness_read(char *p)
6297{
6298 int len = 0;
6299 int level;
6300
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006301 level = brightness_get(NULL);
6302 if (level < 0) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006303 len += sprintf(p + len, "level:\t\tunreadable\n");
6304 } else {
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006305 len += sprintf(p + len, "level:\t\t%d\n", level);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006306 len += sprintf(p + len, "commands:\tup, down\n");
6307 len += sprintf(p + len, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006308 " (<level> is 0-%d)\n",
6309 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006310 }
6311
6312 return len;
6313}
6314
6315static int brightness_write(char *buf)
6316{
6317 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006318 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006319 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006320 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006321
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006322 level = brightness_get(NULL);
6323 if (level < 0)
6324 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006325
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006326 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006327 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006328 if (level < max_level)
6329 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006330 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006331 if (level > 0)
6332 level--;
6333 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6334 level >= 0 && level <= max_level) {
6335 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006336 } else
6337 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006338 }
6339
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006340 tpacpi_disclose_usertask("procfs brightness",
6341 "set level to %d\n", level);
6342
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006343 /*
6344 * Now we know what the final level should be, so we try to set it.
6345 * Doing it this way makes the syscall restartable in case of EINTR
6346 */
6347 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006348 if (!rc && ibm_backlight_device)
6349 backlight_force_update(ibm_backlight_device,
6350 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006351 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006352}
6353
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006354static struct ibm_struct brightness_driver_data = {
6355 .name = "brightness",
6356 .read = brightness_read,
6357 .write = brightness_write,
6358 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006359 .suspend = brightness_suspend,
6360 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006361};
6362
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006363/*************************************************************************
6364 * Volume subdriver
6365 */
6366
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006367static int volume_offset = 0x30;
6368
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006369static int volume_read(char *p)
6370{
6371 int len = 0;
6372 u8 level;
6373
6374 if (!acpi_ec_read(volume_offset, &level)) {
6375 len += sprintf(p + len, "level:\t\tunreadable\n");
6376 } else {
6377 len += sprintf(p + len, "level:\t\t%d\n", level & 0xf);
6378 len += sprintf(p + len, "mute:\t\t%s\n", onoff(level, 6));
6379 len += sprintf(p + len, "commands:\tup, down, mute\n");
6380 len += sprintf(p + len, "commands:\tlevel <level>"
6381 " (<level> is 0-15)\n");
6382 }
6383
6384 return len;
6385}
6386
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006387static int volume_write(char *buf)
6388{
6389 int cmos_cmd, inc, i;
6390 u8 level, mute;
6391 int new_level, new_mute;
6392 char *cmd;
6393
6394 while ((cmd = next_cmd(&buf))) {
6395 if (!acpi_ec_read(volume_offset, &level))
6396 return -EIO;
6397 new_mute = mute = level & 0x40;
6398 new_level = level = level & 0xf;
6399
6400 if (strlencmp(cmd, "up") == 0) {
6401 if (mute)
6402 new_mute = 0;
6403 else
6404 new_level = level == 15 ? 15 : level + 1;
6405 } else if (strlencmp(cmd, "down") == 0) {
6406 if (mute)
6407 new_mute = 0;
6408 else
6409 new_level = level == 0 ? 0 : level - 1;
6410 } else if (sscanf(cmd, "level %d", &new_level) == 1 &&
6411 new_level >= 0 && new_level <= 15) {
6412 /* new_level set */
6413 } else if (strlencmp(cmd, "mute") == 0) {
6414 new_mute = 0x40;
6415 } else
6416 return -EINVAL;
6417
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006418 if (new_level != level) {
6419 /* mute doesn't change */
6420
6421 cmos_cmd = (new_level > level) ?
6422 TP_CMOS_VOLUME_UP : TP_CMOS_VOLUME_DOWN;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006423 inc = new_level > level ? 1 : -1;
6424
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006425 if (mute && (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006426 !acpi_ec_write(volume_offset, level)))
6427 return -EIO;
6428
6429 for (i = level; i != new_level; i += inc)
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006430 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006431 !acpi_ec_write(volume_offset, i + inc))
6432 return -EIO;
6433
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006434 if (mute &&
6435 (issue_thinkpad_cmos_command(TP_CMOS_VOLUME_MUTE) ||
6436 !acpi_ec_write(volume_offset, new_level + mute))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006437 return -EIO;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006438 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006439 }
6440
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006441 if (new_mute != mute) {
6442 /* level doesn't change */
6443
6444 cmos_cmd = (new_mute) ?
6445 TP_CMOS_VOLUME_MUTE : TP_CMOS_VOLUME_UP;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006446
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03006447 if (issue_thinkpad_cmos_command(cmos_cmd) ||
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006448 !acpi_ec_write(volume_offset, level + new_mute))
6449 return -EIO;
6450 }
6451 }
6452
6453 return 0;
6454}
6455
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006456static struct ibm_struct volume_driver_data = {
6457 .name = "volume",
6458 .read = volume_read,
6459 .write = volume_write,
6460};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006461
6462/*************************************************************************
6463 * Fan subdriver
6464 */
6465
6466/*
6467 * FAN ACCESS MODES
6468 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006469 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006470 * ACPI GFAN method: returns fan level
6471 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006472 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006473 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006474 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006475 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006476 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
6477 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006478 * EC 0x2f (HFSP) might be available *for reading*, but do not use
6479 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006480 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006481 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006482 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
6483 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006484 *
6485 * Fan speed changes of any sort (including those caused by the
6486 * disengaged mode) are usually done slowly by the firmware as the
6487 * maximum ammount of fan duty cycle change per second seems to be
6488 * limited.
6489 *
6490 * Reading is not available if GFAN exists.
6491 * Writing is not available if SFAN exists.
6492 *
6493 * Bits
6494 * 7 automatic mode engaged;
6495 * (default operation mode of the ThinkPad)
6496 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006497 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006498 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006499 * the tachometer while the fan controller ramps up
6500 * the speed (which can take up to a few *minutes*).
6501 * Speeds up fan to 100% duty-cycle, which is far above
6502 * the standard RPM levels. It is not impossible that
6503 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006504 * 5-3 unused in some models. Extra bits for fan level
6505 * in others, but still useless as all values above
6506 * 7 map to the same speed as level 7 in these models.
6507 * 2-0 fan level (0..7 usually)
6508 * 0x00 = stop
6509 * 0x07 = max (set when temperatures critical)
6510 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006511 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006512 *
6513 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
6514 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
6515 * does so, its initial value is meaningless (0x07).
6516 *
6517 * For firmware bugs, refer to:
6518 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6519 *
6520 * ----
6521 *
6522 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
6523 * Main fan tachometer reading (in RPM)
6524 *
6525 * This register is present on all ThinkPads with a new-style EC, and
6526 * it is known not to be present on the A21m/e, and T22, as there is
6527 * something else in offset 0x84 according to the ACPI DSDT. Other
6528 * ThinkPads from this same time period (and earlier) probably lack the
6529 * tachometer as well.
6530 *
Nick Andrew877d0312009-01-26 11:06:57 +01006531 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006532 * was never fixed by IBM to report the EC firmware version string
6533 * probably support the tachometer (like the early X models), so
6534 * detecting it is quite hard. We need more data to know for sure.
6535 *
6536 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
6537 * might result.
6538 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03006539 * FIRMWARE BUG: may go stale while the EC is switching to full speed
6540 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006541 *
6542 * For firmware bugs, refer to:
6543 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
6544 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006545 * ----
6546 *
6547 * ThinkPad EC register 0x31 bit 0 (only on select models)
6548 *
6549 * When bit 0 of EC register 0x31 is zero, the tachometer registers
6550 * show the speed of the main fan. When bit 0 of EC register 0x31
6551 * is one, the tachometer registers show the speed of the auxiliary
6552 * fan.
6553 *
6554 * Fan control seems to affect both fans, regardless of the state
6555 * of this bit.
6556 *
6557 * So far, only the firmware for the X60/X61 non-tablet versions
6558 * seem to support this (firmware TP-7M).
6559 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006560 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006561 * ThinkPad X31, X40, X41. Not available in the X60.
6562 *
6563 * FANS ACPI handle: takes three arguments: low speed, medium speed,
6564 * high speed. ACPI DSDT seems to map these three speeds to levels
6565 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
6566 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
6567 *
6568 * The speeds are stored on handles
6569 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
6570 *
6571 * There are three default speed sets, acessible as handles:
6572 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
6573 *
6574 * ACPI DSDT switches which set is in use depending on various
6575 * factors.
6576 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03006577 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006578 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
6579 * but the ACPI tables just mention level 7.
6580 */
6581
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006582enum { /* Fan control constants */
6583 fan_status_offset = 0x2f, /* EC register 0x2f */
6584 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
6585 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006586 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
6587 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006588
6589 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
6590 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
6591
6592 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
6593};
6594
6595enum fan_status_access_mode {
6596 TPACPI_FAN_NONE = 0, /* No fan status or control */
6597 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
6598 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
6599};
6600
6601enum fan_control_access_mode {
6602 TPACPI_FAN_WR_NONE = 0, /* No fan control */
6603 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
6604 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
6605 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
6606};
6607
6608enum fan_control_commands {
6609 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
6610 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
6611 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
6612 * and also watchdog cmd */
6613};
6614
6615static int fan_control_allowed;
6616
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02006617static enum fan_status_access_mode fan_status_access_mode;
6618static enum fan_control_access_mode fan_control_access_mode;
6619static enum fan_control_commands fan_control_commands;
6620
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02006621static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006622static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006623static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006624static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006625
6626static struct mutex fan_mutex;
6627
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006628static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05006629static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02006630
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006631TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
6632TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006633 "\\FSPD", /* 600e/x, 770e, 770x */
6634 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006635TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006636 "JFNS", /* 770x-JL */
6637 ); /* all others */
6638
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03006639/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006640 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
6641 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
6642 * be in auto mode (0x80).
6643 *
6644 * This is corrected by any write to HFSP either by the driver, or
6645 * by the firmware.
6646 *
6647 * We assume 0x07 really means auto mode while this quirk is active,
6648 * as this is far more likely than the ThinkPad being in level 7,
6649 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006650 *
6651 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
6652 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006653 */
6654
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006655static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006656{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006657 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03006658 printk(TPACPI_NOTICE
6659 "fan_init: initial fan status is unknown, "
6660 "assuming it is in auto mode\n");
6661 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006662 }
6663}
6664
6665static void fan_quirk1_handle(u8 *fan_status)
6666{
6667 if (unlikely(tp_features.fan_ctrl_status_undef)) {
6668 if (*fan_status != fan_control_initial_status) {
6669 /* something changed the HFSP regisnter since
6670 * driver init time, so it is not undefined
6671 * anymore */
6672 tp_features.fan_ctrl_status_undef = 0;
6673 } else {
6674 /* Return most likely status. In fact, it
6675 * might be the only possible status */
6676 *fan_status = TP_EC_FAN_AUTO;
6677 }
6678 }
6679}
6680
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006681/* Select main fan on X60/X61, NOOP on others */
6682static bool fan_select_fan1(void)
6683{
6684 if (tp_features.second_fan) {
6685 u8 val;
6686
6687 if (ec_read(fan_select_offset, &val) < 0)
6688 return false;
6689 val &= 0xFEU;
6690 if (ec_write(fan_select_offset, val) < 0)
6691 return false;
6692 }
6693 return true;
6694}
6695
6696/* Select secondary fan on X60/X61 */
6697static bool fan_select_fan2(void)
6698{
6699 u8 val;
6700
6701 if (!tp_features.second_fan)
6702 return false;
6703
6704 if (ec_read(fan_select_offset, &val) < 0)
6705 return false;
6706 val |= 0x01U;
6707 if (ec_write(fan_select_offset, val) < 0)
6708 return false;
6709
6710 return true;
6711}
6712
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006713/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006714 * Call with fan_mutex held
6715 */
6716static void fan_update_desired_level(u8 status)
6717{
6718 if ((status &
6719 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
6720 if (status > 7)
6721 fan_control_desired_level = 7;
6722 else
6723 fan_control_desired_level = status;
6724 }
6725}
6726
6727static int fan_get_status(u8 *status)
6728{
6729 u8 s;
6730
6731 /* TODO:
6732 * Add TPACPI_FAN_RD_ACPI_FANS ? */
6733
6734 switch (fan_status_access_mode) {
6735 case TPACPI_FAN_RD_ACPI_GFAN:
6736 /* 570, 600e/x, 770e, 770x */
6737
6738 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
6739 return -EIO;
6740
6741 if (likely(status))
6742 *status = s & 0x07;
6743
6744 break;
6745
6746 case TPACPI_FAN_RD_TPEC:
6747 /* all except 570, 600e/x, 770e, 770x */
6748 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
6749 return -EIO;
6750
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006751 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006752 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02006753 fan_quirk1_handle(status);
6754 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006755
6756 break;
6757
6758 default:
6759 return -ENXIO;
6760 }
6761
6762 return 0;
6763}
6764
6765static int fan_get_status_safe(u8 *status)
6766{
6767 int rc;
6768 u8 s;
6769
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006770 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006771 return -ERESTARTSYS;
6772 rc = fan_get_status(&s);
6773 if (!rc)
6774 fan_update_desired_level(s);
6775 mutex_unlock(&fan_mutex);
6776
6777 if (status)
6778 *status = s;
6779
6780 return rc;
6781}
6782
6783static int fan_get_speed(unsigned int *speed)
6784{
6785 u8 hi, lo;
6786
6787 switch (fan_status_access_mode) {
6788 case TPACPI_FAN_RD_TPEC:
6789 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006790 if (unlikely(!fan_select_fan1()))
6791 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006792 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
6793 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
6794 return -EIO;
6795
6796 if (likely(speed))
6797 *speed = (hi << 8) | lo;
6798
6799 break;
6800
6801 default:
6802 return -ENXIO;
6803 }
6804
6805 return 0;
6806}
6807
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03006808static int fan2_get_speed(unsigned int *speed)
6809{
6810 u8 hi, lo;
6811 bool rc;
6812
6813 switch (fan_status_access_mode) {
6814 case TPACPI_FAN_RD_TPEC:
6815 /* all except 570, 600e/x, 770e, 770x */
6816 if (unlikely(!fan_select_fan2()))
6817 return -EIO;
6818 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
6819 !acpi_ec_read(fan_rpm_offset + 1, &hi);
6820 fan_select_fan1(); /* play it safe */
6821 if (rc)
6822 return -EIO;
6823
6824 if (likely(speed))
6825 *speed = (hi << 8) | lo;
6826
6827 break;
6828
6829 default:
6830 return -ENXIO;
6831 }
6832
6833 return 0;
6834}
6835
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006836static int fan_set_level(int level)
6837{
6838 if (!fan_control_allowed)
6839 return -EPERM;
6840
6841 switch (fan_control_access_mode) {
6842 case TPACPI_FAN_WR_ACPI_SFAN:
6843 if (level >= 0 && level <= 7) {
6844 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
6845 return -EIO;
6846 } else
6847 return -EINVAL;
6848 break;
6849
6850 case TPACPI_FAN_WR_ACPI_FANS:
6851 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02006852 if (!(level & TP_EC_FAN_AUTO) &&
6853 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006854 ((level < 0) || (level > 7)))
6855 return -EINVAL;
6856
6857 /* safety net should the EC not support AUTO
6858 * or FULLSPEED mode bits and just ignore them */
6859 if (level & TP_EC_FAN_FULLSPEED)
6860 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01006861 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006862 level |= 4; /* safety min speed 4 */
6863
6864 if (!acpi_ec_write(fan_status_offset, level))
6865 return -EIO;
6866 else
6867 tp_features.fan_ctrl_status_undef = 0;
6868 break;
6869
6870 default:
6871 return -ENXIO;
6872 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006873
6874 vdbg_printk(TPACPI_DBG_FAN,
6875 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006876 return 0;
6877}
6878
6879static int fan_set_level_safe(int level)
6880{
6881 int rc;
6882
6883 if (!fan_control_allowed)
6884 return -EPERM;
6885
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006886 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006887 return -ERESTARTSYS;
6888
6889 if (level == TPACPI_FAN_LAST_LEVEL)
6890 level = fan_control_desired_level;
6891
6892 rc = fan_set_level(level);
6893 if (!rc)
6894 fan_update_desired_level(level);
6895
6896 mutex_unlock(&fan_mutex);
6897 return rc;
6898}
6899
6900static int fan_set_enable(void)
6901{
6902 u8 s;
6903 int rc;
6904
6905 if (!fan_control_allowed)
6906 return -EPERM;
6907
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006908 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006909 return -ERESTARTSYS;
6910
6911 switch (fan_control_access_mode) {
6912 case TPACPI_FAN_WR_ACPI_FANS:
6913 case TPACPI_FAN_WR_TPEC:
6914 rc = fan_get_status(&s);
6915 if (rc < 0)
6916 break;
6917
6918 /* Don't go out of emergency fan mode */
6919 if (s != 7) {
6920 s &= 0x07;
6921 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
6922 }
6923
6924 if (!acpi_ec_write(fan_status_offset, s))
6925 rc = -EIO;
6926 else {
6927 tp_features.fan_ctrl_status_undef = 0;
6928 rc = 0;
6929 }
6930 break;
6931
6932 case TPACPI_FAN_WR_ACPI_SFAN:
6933 rc = fan_get_status(&s);
6934 if (rc < 0)
6935 break;
6936
6937 s &= 0x07;
6938
6939 /* Set fan to at least level 4 */
6940 s |= 4;
6941
6942 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006943 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006944 else
6945 rc = 0;
6946 break;
6947
6948 default:
6949 rc = -ENXIO;
6950 }
6951
6952 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006953
6954 if (!rc)
6955 vdbg_printk(TPACPI_DBG_FAN,
6956 "fan control: set fan control register to 0x%02x\n",
6957 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006958 return rc;
6959}
6960
6961static int fan_set_disable(void)
6962{
6963 int rc;
6964
6965 if (!fan_control_allowed)
6966 return -EPERM;
6967
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006968 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006969 return -ERESTARTSYS;
6970
6971 rc = 0;
6972 switch (fan_control_access_mode) {
6973 case TPACPI_FAN_WR_ACPI_FANS:
6974 case TPACPI_FAN_WR_TPEC:
6975 if (!acpi_ec_write(fan_status_offset, 0x00))
6976 rc = -EIO;
6977 else {
6978 fan_control_desired_level = 0;
6979 tp_features.fan_ctrl_status_undef = 0;
6980 }
6981 break;
6982
6983 case TPACPI_FAN_WR_ACPI_SFAN:
6984 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
6985 rc = -EIO;
6986 else
6987 fan_control_desired_level = 0;
6988 break;
6989
6990 default:
6991 rc = -ENXIO;
6992 }
6993
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00006994 if (!rc)
6995 vdbg_printk(TPACPI_DBG_FAN,
6996 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006997
6998 mutex_unlock(&fan_mutex);
6999 return rc;
7000}
7001
7002static int fan_set_speed(int speed)
7003{
7004 int rc;
7005
7006 if (!fan_control_allowed)
7007 return -EPERM;
7008
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007009 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007010 return -ERESTARTSYS;
7011
7012 rc = 0;
7013 switch (fan_control_access_mode) {
7014 case TPACPI_FAN_WR_ACPI_FANS:
7015 if (speed >= 0 && speed <= 65535) {
7016 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7017 speed, speed, speed))
7018 rc = -EIO;
7019 } else
7020 rc = -EINVAL;
7021 break;
7022
7023 default:
7024 rc = -ENXIO;
7025 }
7026
7027 mutex_unlock(&fan_mutex);
7028 return rc;
7029}
7030
7031static void fan_watchdog_reset(void)
7032{
7033 static int fan_watchdog_active;
7034
7035 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7036 return;
7037
7038 if (fan_watchdog_active)
7039 cancel_delayed_work(&fan_watchdog_task);
7040
7041 if (fan_watchdog_maxinterval > 0 &&
7042 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
7043 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007044 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007045 msecs_to_jiffies(fan_watchdog_maxinterval
7046 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007047 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007048 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007049 "watchdog will not trigger\n");
7050 }
7051 } else
7052 fan_watchdog_active = 0;
7053}
7054
7055static void fan_watchdog_fire(struct work_struct *ignored)
7056{
7057 int rc;
7058
7059 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7060 return;
7061
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007062 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007063 rc = fan_set_enable();
7064 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007065 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007066 "will try again later...\n", -rc);
7067 /* reschedule for later */
7068 fan_watchdog_reset();
7069 }
7070}
7071
7072/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007073 * SYSFS fan layout: hwmon compatible (device)
7074 *
7075 * pwm*_enable:
7076 * 0: "disengaged" mode
7077 * 1: manual mode
7078 * 2: native EC "auto" mode (recommended, hardware default)
7079 *
7080 * pwm*: set speed in manual mode, ignored otherwise.
7081 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7082 * interpolation.
7083 *
7084 * fan*_input: tachometer reading, RPM
7085 *
7086 *
7087 * SYSFS fan layout: extensions
7088 *
7089 * fan_watchdog (driver):
7090 * fan watchdog interval in seconds, 0 disables (default), max 120
7091 */
7092
7093/* sysfs fan pwm1_enable ----------------------------------------------- */
7094static ssize_t fan_pwm1_enable_show(struct device *dev,
7095 struct device_attribute *attr,
7096 char *buf)
7097{
7098 int res, mode;
7099 u8 status;
7100
7101 res = fan_get_status_safe(&status);
7102 if (res)
7103 return res;
7104
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007105 if (status & TP_EC_FAN_FULLSPEED) {
7106 mode = 0;
7107 } else if (status & TP_EC_FAN_AUTO) {
7108 mode = 2;
7109 } else
7110 mode = 1;
7111
7112 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7113}
7114
7115static ssize_t fan_pwm1_enable_store(struct device *dev,
7116 struct device_attribute *attr,
7117 const char *buf, size_t count)
7118{
7119 unsigned long t;
7120 int res, level;
7121
7122 if (parse_strtoul(buf, 2, &t))
7123 return -EINVAL;
7124
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007125 tpacpi_disclose_usertask("hwmon pwm1_enable",
7126 "set fan mode to %lu\n", t);
7127
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007128 switch (t) {
7129 case 0:
7130 level = TP_EC_FAN_FULLSPEED;
7131 break;
7132 case 1:
7133 level = TPACPI_FAN_LAST_LEVEL;
7134 break;
7135 case 2:
7136 level = TP_EC_FAN_AUTO;
7137 break;
7138 case 3:
7139 /* reserved for software-controlled auto mode */
7140 return -ENOSYS;
7141 default:
7142 return -EINVAL;
7143 }
7144
7145 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007146 if (res == -ENXIO)
7147 return -EINVAL;
7148 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007149 return res;
7150
7151 fan_watchdog_reset();
7152
7153 return count;
7154}
7155
7156static struct device_attribute dev_attr_fan_pwm1_enable =
7157 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7158 fan_pwm1_enable_show, fan_pwm1_enable_store);
7159
7160/* sysfs fan pwm1 ------------------------------------------------------ */
7161static ssize_t fan_pwm1_show(struct device *dev,
7162 struct device_attribute *attr,
7163 char *buf)
7164{
7165 int res;
7166 u8 status;
7167
7168 res = fan_get_status_safe(&status);
7169 if (res)
7170 return res;
7171
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007172 if ((status &
7173 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7174 status = fan_control_desired_level;
7175
7176 if (status > 7)
7177 status = 7;
7178
7179 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7180}
7181
7182static ssize_t fan_pwm1_store(struct device *dev,
7183 struct device_attribute *attr,
7184 const char *buf, size_t count)
7185{
7186 unsigned long s;
7187 int rc;
7188 u8 status, newlevel;
7189
7190 if (parse_strtoul(buf, 255, &s))
7191 return -EINVAL;
7192
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007193 tpacpi_disclose_usertask("hwmon pwm1",
7194 "set fan speed to %lu\n", s);
7195
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007196 /* scale down from 0-255 to 0-7 */
7197 newlevel = (s >> 5) & 0x07;
7198
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007199 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007200 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007201
7202 rc = fan_get_status(&status);
7203 if (!rc && (status &
7204 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7205 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007206 if (rc == -ENXIO)
7207 rc = -EINVAL;
7208 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007209 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007210 fan_watchdog_reset();
7211 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007212 }
7213
7214 mutex_unlock(&fan_mutex);
7215 return (rc)? rc : count;
7216}
7217
7218static struct device_attribute dev_attr_fan_pwm1 =
7219 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7220 fan_pwm1_show, fan_pwm1_store);
7221
7222/* sysfs fan fan1_input ------------------------------------------------ */
7223static ssize_t fan_fan1_input_show(struct device *dev,
7224 struct device_attribute *attr,
7225 char *buf)
7226{
7227 int res;
7228 unsigned int speed;
7229
7230 res = fan_get_speed(&speed);
7231 if (res < 0)
7232 return res;
7233
7234 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7235}
7236
7237static struct device_attribute dev_attr_fan_fan1_input =
7238 __ATTR(fan1_input, S_IRUGO,
7239 fan_fan1_input_show, NULL);
7240
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007241/* sysfs fan fan2_input ------------------------------------------------ */
7242static ssize_t fan_fan2_input_show(struct device *dev,
7243 struct device_attribute *attr,
7244 char *buf)
7245{
7246 int res;
7247 unsigned int speed;
7248
7249 res = fan2_get_speed(&speed);
7250 if (res < 0)
7251 return res;
7252
7253 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7254}
7255
7256static struct device_attribute dev_attr_fan_fan2_input =
7257 __ATTR(fan2_input, S_IRUGO,
7258 fan_fan2_input_show, NULL);
7259
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007260/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007261static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7262 char *buf)
7263{
7264 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7265}
7266
7267static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7268 const char *buf, size_t count)
7269{
7270 unsigned long t;
7271
7272 if (parse_strtoul(buf, 120, &t))
7273 return -EINVAL;
7274
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007275 if (!fan_control_allowed)
7276 return -EPERM;
7277
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007278 fan_watchdog_maxinterval = t;
7279 fan_watchdog_reset();
7280
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007281 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7282
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007283 return count;
7284}
7285
7286static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7287 fan_fan_watchdog_show, fan_fan_watchdog_store);
7288
7289/* --------------------------------------------------------------------- */
7290static struct attribute *fan_attributes[] = {
7291 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7292 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007293 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007294 NULL
7295};
7296
7297static const struct attribute_group fan_attr_group = {
7298 .attrs = fan_attributes,
7299};
7300
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007301#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7302#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007303
7304#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7305 { .vendor = PCI_VENDOR_ID_IBM, \
7306 .bios = TPACPI_MATCH_ANY, \
7307 .ec = TPID(__id1, __id2), \
7308 .quirks = __quirks }
7309
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007310#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7311 { .vendor = PCI_VENDOR_ID_LENOVO, \
7312 .bios = TPACPI_MATCH_ANY, \
7313 .ec = TPID(__id1, __id2), \
7314 .quirks = __quirks }
7315
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007316static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7317 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7318 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7319 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7320 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007321 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007322};
7323
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007324#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007325#undef TPACPI_FAN_QI
7326
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007327static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007328{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007329 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007330 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007331
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007332 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7333 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007334
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007335 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007336 fan_status_access_mode = TPACPI_FAN_NONE;
7337 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007338 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007339 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007340 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007341 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007342 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007343
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007344 TPACPI_ACPIHANDLE_INIT(fans);
7345 TPACPI_ACPIHANDLE_INIT(gfan);
7346 TPACPI_ACPIHANDLE_INIT(sfan);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007347
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007348 quirks = tpacpi_check_quirks(fan_quirk_table,
7349 ARRAY_SIZE(fan_quirk_table));
7350
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007351 if (gfan_handle) {
7352 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007353 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007354 } else {
7355 /* all other ThinkPads: note that even old-style
7356 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007357 if (likely(acpi_ec_read(fan_status_offset,
7358 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007359 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007360 if (quirks & TPACPI_FAN_Q1)
7361 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007362 if (quirks & TPACPI_FAN_2FAN) {
7363 tp_features.second_fan = 1;
7364 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7365 "secondary fan support enabled\n");
7366 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007367 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007368 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007369 "ThinkPad ACPI EC access misbehaving, "
7370 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007371 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007372 }
7373 }
7374
7375 if (sfan_handle) {
7376 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007377 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02007378 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007379 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007380 } else {
7381 if (!gfan_handle) {
7382 /* gfan without sfan means no fan control */
7383 /* all other models implement TP EC 0x2f control */
7384
7385 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007386 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007387 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007388 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007389 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007390 TPACPI_FAN_CMD_SPEED |
7391 TPACPI_FAN_CMD_LEVEL |
7392 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007393 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007394 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007395 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007396 TPACPI_FAN_CMD_LEVEL |
7397 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007398 }
7399 }
7400 }
7401
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007402 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7403 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007404 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
7405 fan_control_access_mode != TPACPI_FAN_WR_NONE),
7406 fan_status_access_mode, fan_control_access_mode);
7407
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007408 /* fan control master switch */
7409 if (!fan_control_allowed) {
7410 fan_control_access_mode = TPACPI_FAN_WR_NONE;
7411 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007412 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007413 "fan control features disabled by parameter\n");
7414 }
7415
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007416 /* update fan_control_desired_level */
7417 if (fan_status_access_mode != TPACPI_FAN_NONE)
7418 fan_get_status_safe(NULL);
7419
7420 if (fan_status_access_mode != TPACPI_FAN_NONE ||
7421 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007422 if (tp_features.second_fan) {
7423 /* attach second fan tachometer */
7424 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
7425 &dev_attr_fan_fan2_input.attr;
7426 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007427 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007428 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007429 if (rc < 0)
7430 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03007431
7432 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
7433 &driver_attr_fan_watchdog);
7434 if (rc < 0) {
7435 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
7436 &fan_attr_group);
7437 return rc;
7438 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007439 return 0;
7440 } else
7441 return 1;
7442}
7443
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007444static void fan_exit(void)
7445{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007446 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007447 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007448
7449 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007450 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007451 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
7452 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007453
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007454 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007455 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007456}
7457
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007458static void fan_suspend(pm_message_t state)
7459{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007460 int rc;
7461
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007462 if (!fan_control_allowed)
7463 return;
7464
7465 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007466 fan_control_resume_level = 0;
7467 rc = fan_get_status_safe(&fan_control_resume_level);
7468 if (rc < 0)
7469 printk(TPACPI_NOTICE
7470 "failed to read fan level for later "
7471 "restore during resume: %d\n", rc);
7472
7473 /* if it is undefined, don't attempt to restore it.
7474 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007475 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007476 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007477}
7478
7479static void fan_resume(void)
7480{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007481 u8 current_level = 7;
7482 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007483 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007484
7485 /* DSDT *always* updates status on resume */
7486 tp_features.fan_ctrl_status_undef = 0;
7487
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007488 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007489 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007490 (fan_get_status_safe(&current_level) < 0))
7491 return;
7492
7493 switch (fan_control_access_mode) {
7494 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007495 /* never decrease fan level */
7496 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007497 break;
7498 case TPACPI_FAN_WR_ACPI_FANS:
7499 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007500 /* never decrease fan level, scale is:
7501 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
7502 *
7503 * We expect the firmware to set either 7 or AUTO, but we
7504 * handle FULLSPEED out of paranoia.
7505 *
7506 * So, we can safely only restore FULLSPEED or 7, anything
7507 * else could slow the fan. Restoring AUTO is useless, at
7508 * best that's exactly what the DSDT already set (it is the
7509 * slower it uses).
7510 *
7511 * Always keep in mind that the DSDT *will* have set the
7512 * fans to what the vendor supposes is the best level. We
7513 * muck with it only to speed the fan up.
7514 */
7515 if (fan_control_resume_level != 7 &&
7516 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
7517 return;
7518 else
7519 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
7520 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007521 break;
7522 default:
7523 return;
7524 }
7525 if (do_set) {
7526 printk(TPACPI_NOTICE
7527 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007528 fan_control_resume_level);
7529 rc = fan_set_level_safe(fan_control_resume_level);
7530 if (rc < 0)
7531 printk(TPACPI_NOTICE
7532 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007533 }
7534}
7535
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007536static int fan_read(char *p)
7537{
7538 int len = 0;
7539 int rc;
7540 u8 status;
7541 unsigned int speed = 0;
7542
7543 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007544 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007545 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007546 rc = fan_get_status_safe(&status);
7547 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007548 return rc;
7549
7550 len += sprintf(p + len, "status:\t\t%s\n"
7551 "level:\t\t%d\n",
7552 (status != 0) ? "enabled" : "disabled", status);
7553 break;
7554
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007555 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007556 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007557 rc = fan_get_status_safe(&status);
7558 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007559 return rc;
7560
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007561 len += sprintf(p + len, "status:\t\t%s\n",
7562 (status != 0) ? "enabled" : "disabled");
7563
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007564 rc = fan_get_speed(&speed);
7565 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007566 return rc;
7567
7568 len += sprintf(p + len, "speed:\t\t%d\n", speed);
7569
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007570 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007571 /* Disengaged mode takes precedence */
7572 len += sprintf(p + len, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007573 else if (status & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007574 len += sprintf(p + len, "level:\t\tauto\n");
7575 else
7576 len += sprintf(p + len, "level:\t\t%d\n", status);
7577 break;
7578
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007579 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007580 default:
7581 len += sprintf(p + len, "status:\t\tnot supported\n");
7582 }
7583
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007584 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007585 len += sprintf(p + len, "commands:\tlevel <level>");
7586
7587 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007588 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007589 len += sprintf(p + len, " (<level> is 0-7)\n");
7590 break;
7591
7592 default:
7593 len += sprintf(p + len, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007594 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007595 break;
7596 }
7597 }
7598
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007599 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007600 len += sprintf(p + len, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007601 "commands:\twatchdog <timeout> (<timeout> "
7602 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007603
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007604 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007605 len += sprintf(p + len, "commands:\tspeed <speed>"
7606 " (<speed> is 0-65535)\n");
7607
7608 return len;
7609}
7610
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007611static int fan_write_cmd_level(const char *cmd, int *rc)
7612{
7613 int level;
7614
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007615 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007616 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007617 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007618 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007619 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02007620 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007621 return 0;
7622
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007623 *rc = fan_set_level_safe(level);
7624 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007625 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007626 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007627 else if (!*rc)
7628 tpacpi_disclose_usertask("procfs fan",
7629 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007630
7631 return 1;
7632}
7633
7634static int fan_write_cmd_enable(const char *cmd, int *rc)
7635{
7636 if (strlencmp(cmd, "enable") != 0)
7637 return 0;
7638
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007639 *rc = fan_set_enable();
7640 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007641 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007642 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007643 else if (!*rc)
7644 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007645
7646 return 1;
7647}
7648
7649static int fan_write_cmd_disable(const char *cmd, int *rc)
7650{
7651 if (strlencmp(cmd, "disable") != 0)
7652 return 0;
7653
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007654 *rc = fan_set_disable();
7655 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007656 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007657 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007658 else if (!*rc)
7659 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007660
7661 return 1;
7662}
7663
7664static int fan_write_cmd_speed(const char *cmd, int *rc)
7665{
7666 int speed;
7667
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02007668 /* TODO:
7669 * Support speed <low> <medium> <high> ? */
7670
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007671 if (sscanf(cmd, "speed %d", &speed) != 1)
7672 return 0;
7673
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007674 *rc = fan_set_speed(speed);
7675 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007676 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007677 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007678 else if (!*rc)
7679 tpacpi_disclose_usertask("procfs fan",
7680 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007681
7682 return 1;
7683}
7684
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007685static int fan_write_cmd_watchdog(const char *cmd, int *rc)
7686{
7687 int interval;
7688
7689 if (sscanf(cmd, "watchdog %d", &interval) != 1)
7690 return 0;
7691
7692 if (interval < 0 || interval > 120)
7693 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007694 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007695 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007696 tpacpi_disclose_usertask("procfs fan",
7697 "set watchdog timer to %d\n",
7698 interval);
7699 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007700
7701 return 1;
7702}
7703
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007704static int fan_write(char *buf)
7705{
7706 char *cmd;
7707 int rc = 0;
7708
7709 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007710 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007711 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007712 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007713 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007714 fan_write_cmd_disable(cmd, &rc) ||
7715 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007716 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007717 fan_write_cmd_speed(cmd, &rc))
7718 )
7719 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007720 else if (!rc)
7721 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007722 }
7723
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02007724 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007725}
7726
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007727static struct ibm_struct fan_driver_data = {
7728 .name = "fan",
7729 .read = fan_read,
7730 .write = fan_write,
7731 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03007732 .suspend = fan_suspend,
7733 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007734};
7735
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007736/****************************************************************************
7737 ****************************************************************************
7738 *
7739 * Infrastructure
7740 *
7741 ****************************************************************************
7742 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07007743
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03007744/*
7745 * HKEY event callout for other subdrivers go here
7746 * (yes, it is ugly, but it is quick, safe, and gets the job done
7747 */
7748static void tpacpi_driver_event(const unsigned int hkey_event)
7749{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00007750 if (ibm_backlight_device) {
7751 switch (hkey_event) {
7752 case TP_HKEY_EV_BRGHT_UP:
7753 case TP_HKEY_EV_BRGHT_DOWN:
7754 tpacpi_brightness_notify_change();
7755 }
7756 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03007757}
7758
7759
7760
7761static void hotkey_driver_event(const unsigned int scancode)
7762{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03007763 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03007764}
7765
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007766/* sysfs name ---------------------------------------------------------- */
7767static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
7768 struct device_attribute *attr,
7769 char *buf)
7770{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007771 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007772}
7773
7774static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
7775 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
7776
7777/* --------------------------------------------------------------------- */
7778
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007779/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03007780static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007781
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007782/*
7783 * Module and infrastructure proble, init and exit handling
7784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007786static int force_load;
7787
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007788#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007789static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007790{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007791 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007792
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007793 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007794}
7795#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
7796
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007797static void ibm_exit(struct ibm_struct *ibm)
7798{
7799 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
7800
7801 list_del_init(&ibm->all_drivers);
7802
7803 if (ibm->flags.acpi_notify_installed) {
7804 dbg_printk(TPACPI_DBG_EXIT,
7805 "%s: acpi_remove_notify_handler\n", ibm->name);
7806 BUG_ON(!ibm->acpi);
7807 acpi_remove_notify_handler(*ibm->acpi->handle,
7808 ibm->acpi->type,
7809 dispatch_acpi_notify);
7810 ibm->flags.acpi_notify_installed = 0;
7811 ibm->flags.acpi_notify_installed = 0;
7812 }
7813
7814 if (ibm->flags.proc_created) {
7815 dbg_printk(TPACPI_DBG_EXIT,
7816 "%s: remove_proc_entry\n", ibm->name);
7817 remove_proc_entry(ibm->name, proc_dir);
7818 ibm->flags.proc_created = 0;
7819 }
7820
7821 if (ibm->flags.acpi_driver_registered) {
7822 dbg_printk(TPACPI_DBG_EXIT,
7823 "%s: acpi_bus_unregister_driver\n", ibm->name);
7824 BUG_ON(!ibm->acpi);
7825 acpi_bus_unregister_driver(ibm->acpi->driver);
7826 kfree(ibm->acpi->driver);
7827 ibm->acpi->driver = NULL;
7828 ibm->flags.acpi_driver_registered = 0;
7829 }
7830
7831 if (ibm->flags.init_called && ibm->exit) {
7832 ibm->exit();
7833 ibm->flags.init_called = 0;
7834 }
7835
7836 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
7837}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007838
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007839static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840{
7841 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007842 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007843 struct proc_dir_entry *entry;
7844
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007845 BUG_ON(ibm == NULL);
7846
7847 INIT_LIST_HEAD(&ibm->all_drivers);
7848
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007849 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850 return 0;
7851
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007852 dbg_printk(TPACPI_DBG_INIT,
7853 "probing for %s\n", ibm->name);
7854
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007855 if (iibm->init) {
7856 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007857 if (ret > 0)
7858 return 0; /* probe failed */
7859 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007860 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007861
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007862 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 }
7864
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007865 if (ibm->acpi) {
7866 if (ibm->acpi->hid) {
7867 ret = register_tpacpi_subdriver(ibm);
7868 if (ret)
7869 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007870 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007871
7872 if (ibm->acpi->notify) {
7873 ret = setup_acpi_notify(ibm);
7874 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007875 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007876 ibm->name);
7877 ret = 0;
7878 goto err_out;
7879 }
7880 if (ret < 0)
7881 goto err_out;
7882 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007883 }
7884
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007885 dbg_printk(TPACPI_DBG_INIT,
7886 "%s installed\n", ibm->name);
7887
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007888 if (ibm->read) {
7889 entry = create_proc_entry(ibm->name,
7890 S_IFREG | S_IRUGO | S_IWUSR,
7891 proc_dir);
7892 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007893 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007894 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007895 ret = -ENODEV;
7896 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007897 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007898 entry->data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007899 entry->read_proc = &dispatch_procfs_read;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007900 if (ibm->write)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03007901 entry->write_proc = &dispatch_procfs_write;
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03007902 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007905 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
7906
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007908
7909err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007910 dbg_printk(TPACPI_DBG_INIT,
7911 "%s: at error exit path with result %d\n",
7912 ibm->name, ret);
7913
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007914 ibm_exit(ibm);
7915 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007916}
7917
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007918/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007919
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007920static bool __pure __init tpacpi_is_fw_digit(const char c)
7921{
7922 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
7923}
7924
7925/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
7926static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
7927 const char t)
7928{
7929 return s && strlen(s) >= 8 &&
7930 tpacpi_is_fw_digit(s[0]) &&
7931 tpacpi_is_fw_digit(s[1]) &&
7932 s[2] == t && s[3] == 'T' &&
7933 tpacpi_is_fw_digit(s[4]) &&
7934 tpacpi_is_fw_digit(s[5]) &&
7935 s[6] == 'W' && s[7] == 'W';
7936}
7937
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007938/* returns 0 - probe ok, or < 0 - probe error.
7939 * Probe ok doesn't mean thinkpad found.
7940 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
7941static int __must_check __init get_thinkpad_model_data(
7942 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007943{
Jeff Garzik18552562007-10-03 15:15:40 -04007944 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007945 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007946 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007947
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007948 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007949 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007950
7951 memset(tp, 0, sizeof(*tp));
7952
7953 if (dmi_name_in_vendors("IBM"))
7954 tp->vendor = PCI_VENDOR_ID_IBM;
7955 else if (dmi_name_in_vendors("LENOVO"))
7956 tp->vendor = PCI_VENDOR_ID_LENOVO;
7957 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007958 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007959
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007960 s = dmi_get_system_info(DMI_BIOS_VERSION);
7961 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
7962 if (s && !tp->bios_version_str)
7963 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007964
7965 /* Really ancient ThinkPad 240X will fail this, which is fine */
7966 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007967 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007968
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007969 tp->bios_model = tp->bios_version_str[0]
7970 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007971 tp->bios_release = (tp->bios_version_str[4] << 8)
7972 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007973
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02007974 /*
7975 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
7976 * X32 or newer, all Z series; Some models must have an
7977 * up-to-date BIOS or they will not be detected.
7978 *
7979 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
7980 */
7981 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02007982 if (sscanf(dev->name,
7983 "IBM ThinkPad Embedded Controller -[%17c",
7984 ec_fw_string) == 1) {
7985 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
7986 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03007987
7988 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03007989 if (!tp->ec_version_str)
7990 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03007991
7992 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
7993 tp->ec_model = ec_fw_string[0]
7994 | (ec_fw_string[1] << 8);
7995 tp->ec_release = (ec_fw_string[4] << 8)
7996 | ec_fw_string[5];
7997 } else {
7998 printk(TPACPI_NOTICE
7999 "ThinkPad firmware release %s "
8000 "doesn't match the known patterns\n",
8001 ec_fw_string);
8002 printk(TPACPI_NOTICE
8003 "please report this to %s\n",
8004 TPACPI_MAIL);
8005 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008006 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008007 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008008 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008009
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008010 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
8011 if (s && !strnicmp(s, "ThinkPad", 8)) {
8012 tp->model_str = kstrdup(s, GFP_KERNEL);
8013 if (!tp->model_str)
8014 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008015 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008016
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008017 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8018 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8019 if (s && !tp->nummodel_str)
8020 return -ENOMEM;
8021
8022 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023}
8024
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008025static int __init probe_for_thinkpad(void)
8026{
8027 int is_thinkpad;
8028
8029 if (acpi_disabled)
8030 return -ENODEV;
8031
8032 /*
8033 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008034 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008035 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008036 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8037 (thinkpad_id.ec_model != 0) ||
8038 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008039
8040 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008041 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008042 if (!ec_handle) {
8043 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008044 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008045 "Not yet supported ThinkPad detected!\n");
8046 return -ENODEV;
8047 }
8048
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008049 if (!is_thinkpad && !force_load)
8050 return -ENODEV;
8051
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008052 return 0;
8053}
8054
8055
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008056/* Module init, exit, parameters */
8057
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008058static struct ibm_init_struct ibms_init[] __initdata = {
8059 {
8060 .init = thinkpad_acpi_driver_init,
8061 .data = &thinkpad_acpi_driver_data,
8062 },
8063 {
8064 .init = hotkey_init,
8065 .data = &hotkey_driver_data,
8066 },
8067 {
8068 .init = bluetooth_init,
8069 .data = &bluetooth_driver_data,
8070 },
8071 {
8072 .init = wan_init,
8073 .data = &wan_driver_data,
8074 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008075 {
8076 .init = uwb_init,
8077 .data = &uwb_driver_data,
8078 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008079#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008080 {
8081 .init = video_init,
8082 .data = &video_driver_data,
8083 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008084#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008085 {
8086 .init = light_init,
8087 .data = &light_driver_data,
8088 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008089 {
8090 .init = cmos_init,
8091 .data = &cmos_driver_data,
8092 },
8093 {
8094 .init = led_init,
8095 .data = &led_driver_data,
8096 },
8097 {
8098 .init = beep_init,
8099 .data = &beep_driver_data,
8100 },
8101 {
8102 .init = thermal_init,
8103 .data = &thermal_driver_data,
8104 },
8105 {
8106 .data = &ecdump_driver_data,
8107 },
8108 {
8109 .init = brightness_init,
8110 .data = &brightness_driver_data,
8111 },
8112 {
8113 .data = &volume_driver_data,
8114 },
8115 {
8116 .init = fan_init,
8117 .data = &fan_driver_data,
8118 },
8119};
8120
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008121static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8122{
8123 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008124 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008125
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008126 if (!kp || !kp->name || !val)
8127 return -EINVAL;
8128
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008129 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8130 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008131 WARN_ON(ibm == NULL);
8132
8133 if (!ibm || !ibm->name)
8134 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008135
8136 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8137 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008138 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008139 strcpy(ibms_init[i].param, val);
8140 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008141 return 0;
8142 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008143 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008144
8145 return -EINVAL;
8146}
8147
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008148module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008149MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008150 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008151
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008152module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008153MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008154
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008155module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008156MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008157 "Attempts to load the driver even on a "
8158 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008159
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008160module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008161MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008162 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008163
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008164module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008165MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008166 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008167 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008168
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008169module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008170MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008171 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008172
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008173module_param(hotkey_report_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008174MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008175 "used for backwards compatibility with userspace, "
8176 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008177
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008178#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008179 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008180 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008181 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008182
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008183TPACPI_PARAM(hotkey);
8184TPACPI_PARAM(bluetooth);
8185TPACPI_PARAM(video);
8186TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008187TPACPI_PARAM(cmos);
8188TPACPI_PARAM(led);
8189TPACPI_PARAM(beep);
8190TPACPI_PARAM(ecdump);
8191TPACPI_PARAM(brightness);
8192TPACPI_PARAM(volume);
8193TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008194
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008195#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008196module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008197MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8198module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8199MODULE_PARM_DESC(wlsw_state,
8200 "Initial state of the emulated WLSW switch");
8201
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008202module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008203MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8204module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8205MODULE_PARM_DESC(bluetooth_state,
8206 "Initial state of the emulated bluetooth switch");
8207
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008208module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008209MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8210module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8211MODULE_PARM_DESC(wwan_state,
8212 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008213
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008214module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008215MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8216module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8217MODULE_PARM_DESC(uwb_state,
8218 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008219#endif
8220
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008221static void thinkpad_acpi_module_exit(void)
8222{
8223 struct ibm_struct *ibm, *itmp;
8224
8225 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8226
8227 list_for_each_entry_safe_reverse(ibm, itmp,
8228 &tpacpi_all_drivers,
8229 all_drivers) {
8230 ibm_exit(ibm);
8231 }
8232
8233 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
8234
8235 if (tpacpi_inputdev) {
8236 if (tp_features.input_device_registered)
8237 input_unregister_device(tpacpi_inputdev);
8238 else
8239 input_free_device(tpacpi_inputdev);
8240 }
8241
8242 if (tpacpi_hwmon)
8243 hwmon_device_unregister(tpacpi_hwmon);
8244
8245 if (tp_features.sensors_pdev_attrs_registered)
8246 device_remove_file(&tpacpi_sensors_pdev->dev,
8247 &dev_attr_thinkpad_acpi_pdev_name);
8248 if (tpacpi_sensors_pdev)
8249 platform_device_unregister(tpacpi_sensors_pdev);
8250 if (tpacpi_pdev)
8251 platform_device_unregister(tpacpi_pdev);
8252
8253 if (tp_features.sensors_pdrv_attrs_registered)
8254 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
8255 if (tp_features.platform_drv_attrs_registered)
8256 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
8257
8258 if (tp_features.sensors_pdrv_registered)
8259 platform_driver_unregister(&tpacpi_hwmon_pdriver);
8260
8261 if (tp_features.platform_drv_registered)
8262 platform_driver_unregister(&tpacpi_pdriver);
8263
8264 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008265 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008266
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008267 if (tpacpi_wq)
8268 destroy_workqueue(tpacpi_wq);
8269
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008270 kfree(thinkpad_id.bios_version_str);
8271 kfree(thinkpad_id.ec_version_str);
8272 kfree(thinkpad_id.model_str);
8273}
8274
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008275
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008276static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277{
8278 int ret, i;
8279
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008280 tpacpi_lifecycle = TPACPI_LIFE_INIT;
8281
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008282 /* Parameter checking */
8283 if (hotkey_report_mode > 2)
8284 return -EINVAL;
8285
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008286 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008287
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008288 ret = get_thinkpad_model_data(&thinkpad_id);
8289 if (ret) {
8290 printk(TPACPI_ERR
8291 "unable to get DMI data: %d\n", ret);
8292 thinkpad_acpi_module_exit();
8293 return ret;
8294 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008295 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008296 if (ret) {
8297 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008298 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008301 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008302
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008303 TPACPI_ACPIHANDLE_INIT(ecrd);
8304 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008306 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
8307 if (!tpacpi_wq) {
8308 thinkpad_acpi_module_exit();
8309 return -ENOMEM;
8310 }
8311
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008312 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008314 printk(TPACPI_ERR
8315 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008316 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008317 return -ENODEV;
8318 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008319
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008320 ret = platform_driver_register(&tpacpi_pdriver);
8321 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008322 printk(TPACPI_ERR
8323 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008324 thinkpad_acpi_module_exit();
8325 return ret;
8326 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03008327 tp_features.platform_drv_registered = 1;
8328
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008329 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
8330 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008331 printk(TPACPI_ERR
8332 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008333 thinkpad_acpi_module_exit();
8334 return ret;
8335 }
8336 tp_features.sensors_pdrv_registered = 1;
8337
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008338 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008339 if (!ret) {
8340 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008341 ret = tpacpi_create_driver_attributes(
8342 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008343 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008344 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008345 printk(TPACPI_ERR
8346 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008347 thinkpad_acpi_module_exit();
8348 return ret;
8349 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03008350 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03008351
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008352
8353 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008354 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008355 NULL, 0);
8356 if (IS_ERR(tpacpi_pdev)) {
8357 ret = PTR_ERR(tpacpi_pdev);
8358 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008359 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008360 thinkpad_acpi_module_exit();
8361 return ret;
8362 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008363 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008364 TPACPI_HWMON_DRVR_NAME,
8365 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008366 if (IS_ERR(tpacpi_sensors_pdev)) {
8367 ret = PTR_ERR(tpacpi_sensors_pdev);
8368 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008369 printk(TPACPI_ERR
8370 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008371 thinkpad_acpi_module_exit();
8372 return ret;
8373 }
8374 ret = device_create_file(&tpacpi_sensors_pdev->dev,
8375 &dev_attr_thinkpad_acpi_pdev_name);
8376 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008377 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008378 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008379 thinkpad_acpi_module_exit();
8380 return ret;
8381 }
8382 tp_features.sensors_pdev_attrs_registered = 1;
8383 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008384 if (IS_ERR(tpacpi_hwmon)) {
8385 ret = PTR_ERR(tpacpi_hwmon);
8386 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008387 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008388 thinkpad_acpi_module_exit();
8389 return ret;
8390 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03008391 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008392 tpacpi_inputdev = input_allocate_device();
8393 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008394 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008395 thinkpad_acpi_module_exit();
8396 return -ENOMEM;
8397 } else {
8398 /* Prepare input device, but don't register */
8399 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008400 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008401 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03008402 tpacpi_inputdev->id.vendor = (thinkpad_id.vendor) ?
8403 thinkpad_id.vendor :
8404 PCI_VENDOR_ID_IBM;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008405 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
8406 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00008407 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008408 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008409 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8410 ret = ibm_init(&ibms_init[i]);
8411 if (ret >= 0 && *ibms_init[i].param)
8412 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008414 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415 return ret;
8416 }
8417 }
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008418 ret = input_register_device(tpacpi_inputdev);
8419 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008420 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03008421 thinkpad_acpi_module_exit();
8422 return ret;
8423 } else {
8424 tp_features.input_device_registered = 1;
8425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008427 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008428 return 0;
8429}
8430
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03008431MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
8432
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008433/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008434 * This will autoload the driver in almost every ThinkPad
8435 * in widespread use.
8436 *
8437 * Only _VERY_ old models, like the 240, 240x and 570 lack
8438 * the HKEY event interface.
8439 */
8440MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
8441
8442/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008443 * DMI matching for module autoloading
8444 *
8445 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8446 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
8447 *
8448 * Only models listed in thinkwiki will be supported, so add yours
8449 * if it is not there yet.
8450 */
8451#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01008452 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008453
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008454/* Ancient thinkpad BIOSes have to be identified by
8455 * BIOS type or model number, and there are far less
8456 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00008457IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008458
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00008459MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
8460MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008461MODULE_DESCRIPTION(TPACPI_DESC);
8462MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008463MODULE_LICENSE("GPL");
8464
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008465module_init(thinkpad_acpi_module_init);
8466module_exit(thinkpad_acpi_module_exit);