blob: 21759dacff6c034ed251bdc8096884de0bb95c34 [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 Holschuh5d2eb142009-12-15 21:51:13 -020024#define TPACPI_VERSION "0.24"
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020025#define TPACPI_SYSFS_VERSION 0x020700
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020062
63#include <linux/nvram.h>
64#include <linux/proc_fs.h>
Alexey Dobriyan887965e2009-12-15 21:51:12 -020065#include <linux/seq_file.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020066#include <linux/sysfs.h>
67#include <linux/backlight.h>
68#include <linux/fb.h>
69#include <linux/platform_device.h>
70#include <linux/hwmon.h>
71#include <linux/hwmon-sysfs.h>
72#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030073#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030074#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020075#include <asm/uaccess.h>
76
77#include <linux/dmi.h>
78#include <linux/jiffies.h>
79#include <linux/workqueue.h>
80
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020081#include <sound/core.h>
82#include <sound/control.h>
83#include <sound/initval.h>
84
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020085#include <acpi/acpi_drivers.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020086
87#include <linux/pci_ids.h>
88
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020089
90/* ThinkPad CMOS commands */
91#define TP_CMOS_VOLUME_DOWN 0
92#define TP_CMOS_VOLUME_UP 1
93#define TP_CMOS_VOLUME_MUTE 2
94#define TP_CMOS_BRIGHTNESS_UP 4
95#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030096#define TP_CMOS_THINKLIGHT_ON 12
97#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020098
99/* NVRAM Addresses */
100enum tp_nvram_addr {
101 TP_NVRAM_ADDR_HK2 = 0x57,
102 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
103 TP_NVRAM_ADDR_VIDEO = 0x59,
104 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
105 TP_NVRAM_ADDR_MIXER = 0x60,
106};
107
108/* NVRAM bit masks */
109enum {
110 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
111 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
112 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
113 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
114 TP_NVRAM_MASK_THINKLIGHT = 0x10,
115 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
116 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
117 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
118 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
119 TP_NVRAM_MASK_MUTE = 0x40,
120 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
121 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
122 TP_NVRAM_POS_LEVEL_VOLUME = 0,
123};
124
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200125/* ACPI HIDs */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200126#define TPACPI_ACPI_HKEY_HID "IBM0068"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200127
128/* Input IDs */
129#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
130#define TPACPI_HKEY_INPUT_VERSION 0x4101
131
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200132/* ACPI \WGSV commands */
133enum {
134 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
135 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
136 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
137 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
138};
139
140/* TP_ACPI_WGSV_GET_STATE bits */
141enum {
142 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
143 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
144 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
145 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
146 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
147 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
148 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
149 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
150 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
151 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
152};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200153
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300154/* HKEY events */
155enum tpacpi_hkey_event_t {
156 /* Hotkey-related */
157 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
158 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
159 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
160 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
161 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
162 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
163
164 /* Reasons for waking up from S3/S4 */
165 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
166 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
167 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
168 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
169 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
170 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
171
172 /* Auto-sleep after eject request */
173 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
174 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
175
176 /* Misc bay events */
177 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
178
179 /* User-interface events */
180 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
181 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
182 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
183 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
184 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
185 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
186 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
187
188 /* Thermal events */
189 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
190 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
191 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
192 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
193 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
194
195 /* Misc */
196 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
197};
198
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200199/****************************************************************************
200 * Main driver
201 */
202
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200203#define TPACPI_NAME "thinkpad"
204#define TPACPI_DESC "ThinkPad ACPI Extras"
205#define TPACPI_FILE TPACPI_NAME "_acpi"
206#define TPACPI_URL "http://ibm-acpi.sf.net/"
207#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200208
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200209#define TPACPI_PROC_DIR "ibm"
210#define TPACPI_ACPI_EVENT_PREFIX "ibm"
211#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300212#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200213#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200214
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300215#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300216#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300217
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200218#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200219
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000220/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200221#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000222#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
223#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
224#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
225#define TPACPI_ERR KERN_ERR TPACPI_LOG
226#define TPACPI_WARN KERN_WARNING TPACPI_LOG
227#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
228#define TPACPI_INFO KERN_INFO TPACPI_LOG
229#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200230
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000231/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200232#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000233#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200234#define TPACPI_DBG_INIT 0x0001
235#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +0000236#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000237#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000238#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000239#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200240#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200241
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200242#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
243#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
244#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200245
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200246
247/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200248 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200249 */
250
251struct ibm_struct;
252
253struct tp_acpi_drv_struct {
254 const struct acpi_device_id *hid;
255 struct acpi_driver *driver;
256
257 void (*notify) (struct ibm_struct *, u32);
258 acpi_handle *handle;
259 u32 type;
260 struct acpi_device *device;
261};
262
263struct ibm_struct {
264 char *name;
265
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200266 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200267 int (*write) (char *);
268 void (*exit) (void);
269 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200270 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200271 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200272
273 struct list_head all_drivers;
274
275 struct tp_acpi_drv_struct *acpi;
276
277 struct {
278 u8 acpi_driver_registered:1;
279 u8 acpi_notify_installed:1;
280 u8 proc_created:1;
281 u8 init_called:1;
282 u8 experimental:1;
283 } flags;
284};
285
286struct ibm_init_struct {
287 char param[32];
288
289 int (*init) (struct ibm_init_struct *);
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -0300290 mode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200291 struct ibm_struct *data;
292};
293
294static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200295 u32 bluetooth:1;
296 u32 hotkey:1;
297 u32 hotkey_mask:1;
298 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200299 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200300 u32 light:1;
301 u32 light_status:1;
302 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300303 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200304 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200305 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200306 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300307 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300308 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200309 u32 mixer_no_level_control:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200310 u32 input_device_registered:1;
311 u32 platform_drv_registered:1;
312 u32 platform_drv_attrs_registered:1;
313 u32 sensors_pdrv_registered:1;
314 u32 sensors_pdrv_attrs_registered:1;
315 u32 sensors_pdev_attrs_registered:1;
316 u32 hotkey_poll_active:1;
317} tp_features;
318
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300319static struct {
320 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200321 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300322} tp_warned;
323
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200324struct thinkpad_id_data {
325 unsigned int vendor; /* ThinkPad vendor:
326 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
327
328 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
329 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
330
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300331 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200332 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300333 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
334 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200335
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300336 char *model_str; /* ThinkPad T43 */
337 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200338};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200339static struct thinkpad_id_data thinkpad_id;
340
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300341static enum {
342 TPACPI_LIFE_INIT = 0,
343 TPACPI_LIFE_RUNNING,
344 TPACPI_LIFE_EXITING,
345} tpacpi_lifecycle;
346
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200347static int experimental;
348static u32 dbg_level;
349
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300350static struct workqueue_struct *tpacpi_wq;
351
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000352enum led_status_t {
353 TPACPI_LED_OFF = 0,
354 TPACPI_LED_ON,
355 TPACPI_LED_BLINK,
356};
357
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300358/* Special LED class that can defer work */
359struct tpacpi_led_classdev {
360 struct led_classdev led_classdev;
361 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000362 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300363 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300364};
365
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200366#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
367static int dbg_wlswemul;
368static int tpacpi_wlsw_emulstate;
369static int dbg_bluetoothemul;
370static int tpacpi_bluetooth_emulstate;
371static int dbg_wwanemul;
372static int tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200373static int dbg_uwbemul;
374static int tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200375#endif
376
377
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000378/*************************************************************************
379 * Debugging helpers
380 */
381
382#define dbg_printk(a_dbg_level, format, arg...) \
383 do { if (dbg_level & (a_dbg_level)) \
384 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
385 } while (0)
386
387#ifdef CONFIG_THINKPAD_ACPI_DEBUG
388#define vdbg_printk dbg_printk
389static const char *str_supported(int is_supported);
390#else
391#define vdbg_printk(a_dbg_level, format, arg...) \
392 do { } while (0)
393#endif
394
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000395static void tpacpi_log_usertask(const char * const what)
396{
397 printk(TPACPI_DEBUG "%s: access by process with PID %d\n",
398 what, task_tgid_vnr(current));
399}
400
401#define tpacpi_disclose_usertask(what, format, arg...) \
402 do { \
403 if (unlikely( \
404 (dbg_level & TPACPI_DBG_DISCLOSETASK) && \
405 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
406 printk(TPACPI_DEBUG "%s: PID %d: " format, \
407 what, task_tgid_vnr(current), ## arg); \
408 } \
409 } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000410
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300411/*
412 * Quirk handling helpers
413 *
414 * ThinkPad IDs and versions seen in the field so far
415 * are two-characters from the set [0-9A-Z], i.e. base 36.
416 *
417 * We use values well outside that range as specials.
418 */
419
420#define TPACPI_MATCH_ANY 0xffffU
421#define TPACPI_MATCH_UNKNOWN 0U
422
423/* TPID('1', 'Y') == 0x5931 */
424#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
425
426#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
427 { .vendor = PCI_VENDOR_ID_IBM, \
428 .bios = TPID(__id1, __id2), \
429 .ec = TPACPI_MATCH_ANY, \
430 .quirks = (__quirk) }
431
432#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
433 { .vendor = PCI_VENDOR_ID_LENOVO, \
434 .bios = TPID(__id1, __id2), \
435 .ec = TPACPI_MATCH_ANY, \
436 .quirks = (__quirk) }
437
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200438#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
439 { .vendor = PCI_VENDOR_ID_LENOVO, \
440 .bios = TPACPI_MATCH_ANY, \
441 .ec = TPID(__id1, __id2), \
442 .quirks = (__quirk) }
443
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300444struct tpacpi_quirk {
445 unsigned int vendor;
446 u16 bios;
447 u16 ec;
448 unsigned long quirks;
449};
450
451/**
452 * tpacpi_check_quirks() - search BIOS/EC version on a list
453 * @qlist: array of &struct tpacpi_quirk
454 * @qlist_size: number of elements in @qlist
455 *
456 * Iterates over a quirks list until one is found that matches the
457 * ThinkPad's vendor, BIOS and EC model.
458 *
459 * Returns 0 if nothing matches, otherwise returns the quirks field of
460 * the matching &struct tpacpi_quirk entry.
461 *
462 * The match criteria is: vendor, ec and bios much match.
463 */
464static unsigned long __init tpacpi_check_quirks(
465 const struct tpacpi_quirk *qlist,
466 unsigned int qlist_size)
467{
468 while (qlist_size) {
469 if ((qlist->vendor == thinkpad_id.vendor ||
470 qlist->vendor == TPACPI_MATCH_ANY) &&
471 (qlist->bios == thinkpad_id.bios_model ||
472 qlist->bios == TPACPI_MATCH_ANY) &&
473 (qlist->ec == thinkpad_id.ec_model ||
474 qlist->ec == TPACPI_MATCH_ANY))
475 return qlist->quirks;
476
477 qlist_size--;
478 qlist++;
479 }
480 return 0;
481}
482
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300483static inline bool __pure __init tpacpi_is_lenovo(void)
484{
485 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
486}
487
488static inline bool __pure __init tpacpi_is_ibm(void)
489{
490 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
491}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300492
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300493/****************************************************************************
494 ****************************************************************************
495 *
496 * ACPI Helpers and device model
497 *
498 ****************************************************************************
499 ****************************************************************************/
500
501/*************************************************************************
502 * ACPI basic handles
503 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -0300505static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200507#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 static acpi_handle object##_handle; \
509 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400510 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 static char *object##_paths[] = { paths }
512
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200513TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400514 "\\_SB.PCI.ISA.EC", /* 570 */
515 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
516 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
517 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
518 "\\_SB.PCI0.ICH3.EC0", /* R31 */
519 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300520 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200522TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
523TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200525TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
526 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400527 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
528 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300529 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400530
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200531TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400532 "^HKEY", /* R30, R31 */
533 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300534 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400535
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200536TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
537 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
538 "\\_SB.PCI0.VID0", /* 770e */
539 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
540 "\\_SB.PCI0.AGP.VID", /* all others */
541 ); /* R30, R31 */
542
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400543
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300544/*************************************************************************
545 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200546 */
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548static int acpi_evalf(acpi_handle handle,
549 void *res, char *method, char *fmt, ...)
550{
551 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400552 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200553 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400554 struct acpi_buffer result, *resultp;
555 union acpi_object out_obj;
556 acpi_status status;
557 va_list ap;
558 char res_type;
559 int success;
560 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200563 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return 0;
565 }
566
567 if (*fmt == 'q') {
568 quiet = 1;
569 fmt++;
570 } else
571 quiet = 0;
572
573 res_type = *(fmt++);
574
575 params.count = 0;
576 params.pointer = &in_objs[0];
577
578 va_start(ap, fmt);
579 while (*fmt) {
580 char c = *(fmt++);
581 switch (c) {
582 case 'd': /* int */
583 in_objs[params.count].integer.value = va_arg(ap, int);
584 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
585 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400586 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200588 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 "with invalid format character '%c'\n", c);
590 return 0;
591 }
592 }
593 va_end(ap);
594
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400595 if (res_type != 'v') {
596 result.length = sizeof(out_obj);
597 result.pointer = &out_obj;
598 resultp = &result;
599 } else
600 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400602 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400605 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (res)
607 *(int *)res = out_obj.integer.value;
608 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
609 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400610 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 success = status == AE_OK;
612 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400613 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200615 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 "with invalid format character '%c'\n", res_type);
617 return 0;
618 }
619
620 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200621 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 method, fmt0, status);
623
624 return success;
625}
626
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200627static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300628{
629 int v;
630
631 if (ecrd_handle) {
632 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
633 return 0;
634 *p = v;
635 } else {
636 if (ec_read(i, p) < 0)
637 return 0;
638 }
639
640 return 1;
641}
642
643static int acpi_ec_write(int i, u8 v)
644{
645 if (ecwr_handle) {
646 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
647 return 0;
648 } else {
649 if (ec_write(i, v) < 0)
650 return 0;
651 }
652
653 return 1;
654}
655
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300656static int issue_thinkpad_cmos_command(int cmos_cmd)
657{
658 if (!cmos_handle)
659 return -ENXIO;
660
661 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
662 return -EIO;
663
664 return 0;
665}
666
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300667/*************************************************************************
668 * ACPI device model
669 */
670
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200671#define TPACPI_ACPIHANDLE_INIT(object) \
672 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200673 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
674
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300675static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300676 acpi_handle *handle, acpi_handle parent,
677 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300678{
679 int i;
680 acpi_status status;
681
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300682 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
683 name);
684
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300685 for (i = 0; i < num_paths; i++) {
686 status = acpi_get_handle(parent, paths[i], handle);
687 if (ACPI_SUCCESS(status)) {
688 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300689 dbg_printk(TPACPI_DBG_INIT,
690 "Found ACPI handle %s for %s\n",
691 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300692 return;
693 }
694 }
695
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300696 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
697 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300698 *handle = NULL;
699}
700
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300701static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300702{
703 struct ibm_struct *ibm = data;
704
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300705 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
706 return;
707
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300708 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300709 return;
710
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300711 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300712}
713
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300714static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300715{
716 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300717 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300718
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300719 BUG_ON(!ibm->acpi);
720
721 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300722 return 0;
723
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300724 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300725 "setting up ACPI notify for %s\n", ibm->name);
726
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300727 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
728 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200729 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300730 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300731 return -ENODEV;
732 }
733
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700734 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300735 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200736 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300737 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300738
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300739 status = acpi_install_notify_handler(*ibm->acpi->handle,
740 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300741 if (ACPI_FAILURE(status)) {
742 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200743 printk(TPACPI_NOTICE
744 "another device driver is already "
745 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300746 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200747 printk(TPACPI_ERR
748 "acpi_install_notify_handler(%s) failed: %d\n",
749 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300750 }
751 return -ENODEV;
752 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300753 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300754 return 0;
755}
756
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300757static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300758{
759 return 0;
760}
761
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300762static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300763{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300764 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300765
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300766 dbg_printk(TPACPI_DBG_INIT,
767 "registering %s as an ACPI driver\n", ibm->name);
768
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300769 BUG_ON(!ibm->acpi);
770
771 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
772 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300773 printk(TPACPI_ERR
774 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300775 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300776 }
777
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200778 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300779 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200780
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300781 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300782
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300783 rc = acpi_bus_register_driver(ibm->acpi->driver);
784 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200785 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200786 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300787 kfree(ibm->acpi->driver);
788 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300789 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300790 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300791
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300792 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300793}
794
795
796/****************************************************************************
797 ****************************************************************************
798 *
799 * Procfs Helpers
800 *
801 ****************************************************************************
802 ****************************************************************************/
803
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200804static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300805{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200806 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300807
808 if (!ibm || !ibm->read)
809 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200810 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300811}
812
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200813static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300814{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200815 return single_open(file, dispatch_proc_show, PDE(inode)->data);
816}
817
818static ssize_t dispatch_proc_write(struct file *file,
819 const char __user *userbuf,
820 size_t count, loff_t *pos)
821{
822 struct ibm_struct *ibm = PDE(file->f_path.dentry->d_inode)->data;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300823 char *kernbuf;
824 int ret;
825
826 if (!ibm || !ibm->write)
827 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300828 if (count > PAGE_SIZE - 2)
829 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300830
831 kernbuf = kmalloc(count + 2, GFP_KERNEL);
832 if (!kernbuf)
833 return -ENOMEM;
834
835 if (copy_from_user(kernbuf, userbuf, count)) {
836 kfree(kernbuf);
837 return -EFAULT;
838 }
839
840 kernbuf[count] = 0;
841 strcat(kernbuf, ",");
842 ret = ibm->write(kernbuf);
843 if (ret == 0)
844 ret = count;
845
846 kfree(kernbuf);
847
848 return ret;
849}
850
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200851static const struct file_operations dispatch_proc_fops = {
852 .owner = THIS_MODULE,
853 .open = dispatch_proc_open,
854 .read = seq_read,
855 .llseek = seq_lseek,
856 .release = single_release,
857 .write = dispatch_proc_write,
858};
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860static char *next_cmd(char **cmds)
861{
862 char *start = *cmds;
863 char *end;
864
865 while ((end = strchr(start, ',')) && end == start)
866 start = end + 1;
867
868 if (!end)
869 return NULL;
870
871 *end = 0;
872 *cmds = end + 1;
873 return start;
874}
875
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300876
877/****************************************************************************
878 ****************************************************************************
879 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300880 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300881 *
882 ****************************************************************************
883 ****************************************************************************/
884
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -0300885static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300886static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700887static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300888static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300889static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200890static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300891
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200892static int tpacpi_suspend_handler(struct platform_device *pdev,
893 pm_message_t state)
894{
895 struct ibm_struct *ibm, *itmp;
896
897 list_for_each_entry_safe(ibm, itmp,
898 &tpacpi_all_drivers,
899 all_drivers) {
900 if (ibm->suspend)
901 (ibm->suspend)(state);
902 }
903
904 return 0;
905}
906
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300907static int tpacpi_resume_handler(struct platform_device *pdev)
908{
909 struct ibm_struct *ibm, *itmp;
910
911 list_for_each_entry_safe(ibm, itmp,
912 &tpacpi_all_drivers,
913 all_drivers) {
914 if (ibm->resume)
915 (ibm->resume)();
916 }
917
918 return 0;
919}
920
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200921static void tpacpi_shutdown_handler(struct platform_device *pdev)
922{
923 struct ibm_struct *ibm, *itmp;
924
925 list_for_each_entry_safe(ibm, itmp,
926 &tpacpi_all_drivers,
927 all_drivers) {
928 if (ibm->shutdown)
929 (ibm->shutdown)();
930 }
931}
932
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300933static struct platform_driver tpacpi_pdriver = {
934 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200935 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300936 .owner = THIS_MODULE,
937 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200938 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300939 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200940 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300941};
942
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300943static struct platform_driver tpacpi_hwmon_pdriver = {
944 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200945 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300946 .owner = THIS_MODULE,
947 },
948};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300949
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300950/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300951 * sysfs support helpers
952 */
953
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200954struct attribute_set {
955 unsigned int members, max_members;
956 struct attribute_group group;
957};
958
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300959struct attribute_set_obj {
960 struct attribute_set s;
961 struct attribute *a;
962} __attribute__((packed));
963
964static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200965 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300966{
967 struct attribute_set_obj *sobj;
968
969 if (max_members == 0)
970 return NULL;
971
972 /* Allocates space for implicit NULL at the end too */
973 sobj = kzalloc(sizeof(struct attribute_set_obj) +
974 max_members * sizeof(struct attribute *),
975 GFP_KERNEL);
976 if (!sobj)
977 return NULL;
978 sobj->s.max_members = max_members;
979 sobj->s.group.attrs = &sobj->a;
980 sobj->s.group.name = name;
981
982 return &sobj->s;
983}
984
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200985#define destroy_attr_set(_set) \
986 kfree(_set);
987
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300988/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200989static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300990{
991 if (!s || !attr)
992 return -EINVAL;
993
994 if (s->members >= s->max_members)
995 return -ENOMEM;
996
997 s->group.attrs[s->members] = attr;
998 s->members++;
999
1000 return 0;
1001}
1002
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001003static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001004 struct attribute **attr,
1005 unsigned int count)
1006{
1007 int i, res;
1008
1009 for (i = 0; i < count; i++) {
1010 res = add_to_attr_set(s, attr[i]);
1011 if (res)
1012 return res;
1013 }
1014
1015 return 0;
1016}
1017
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001018static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001019{
1020 sysfs_remove_group(kobj, &s->group);
1021 destroy_attr_set(s);
1022}
1023
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001024#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1025 sysfs_create_group(_kobj, &_attr_set->group)
1026
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001027static int parse_strtoul(const char *buf,
1028 unsigned long max, unsigned long *value)
1029{
1030 char *endp;
1031
André Goddard Rosae7d28602009-12-14 18:01:06 -08001032 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1033 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001034 if (*endp || *value > max)
1035 return -EINVAL;
1036
1037 return 0;
1038}
1039
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03001040static void tpacpi_disable_brightness_delay(void)
1041{
1042 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
1043 printk(TPACPI_NOTICE
1044 "ACPI backlight control delay disabled\n");
1045}
1046
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03001047static int __init tpacpi_query_bcl_levels(acpi_handle handle)
1048{
1049 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1050 union acpi_object *obj;
1051 int rc;
1052
1053 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
1054 obj = (union acpi_object *)buffer.pointer;
1055 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
1056 printk(TPACPI_ERR "Unknown _BCL data, "
1057 "please report this to %s\n", TPACPI_MAIL);
1058 rc = 0;
1059 } else {
1060 rc = obj->package.count;
1061 }
1062 } else {
1063 return 0;
1064 }
1065
1066 kfree(buffer.pointer);
1067 return rc;
1068}
1069
1070static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
1071 u32 lvl, void *context, void **rv)
1072{
1073 char name[ACPI_PATH_SEGMENT_LENGTH];
1074 struct acpi_buffer buffer = { sizeof(name), &name };
1075
1076 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
1077 !strncmp("_BCL", name, sizeof(name) - 1)) {
1078 BUG_ON(!rv || !*rv);
1079 **(int **)rv = tpacpi_query_bcl_levels(handle);
1080 return AE_CTRL_TERMINATE;
1081 } else {
1082 return AE_OK;
1083 }
1084}
1085
1086/*
1087 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
1088 */
1089static int __init tpacpi_check_std_acpi_brightness_support(void)
1090{
1091 int status;
1092 int bcl_levels = 0;
1093 void *bcl_ptr = &bcl_levels;
1094
1095 if (!vid_handle) {
1096 TPACPI_ACPIHANDLE_INIT(vid);
1097 }
1098 if (!vid_handle)
1099 return 0;
1100
1101 /*
1102 * Search for a _BCL method, and execute it. This is safe on all
1103 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
1104 * BIOS in ACPI backlight control mode. We do NOT have to care
1105 * about calling the _BCL method in an enabled video device, any
1106 * will do for our purposes.
1107 */
1108
1109 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
Lin Ming22635762009-11-13 10:06:08 +08001110 tpacpi_acpi_walk_find_bcl, NULL, NULL,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03001111 &bcl_ptr);
1112
1113 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
1114 tp_features.bright_acpimode = 1;
1115 return (bcl_levels - 2);
1116 }
1117
1118 return 0;
1119}
1120
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001121static void printk_deprecated_attribute(const char * const what,
1122 const char * const details)
1123{
1124 tpacpi_log_usertask("deprecated sysfs attribute");
1125 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1126 "will be removed. %s\n",
1127 what, details);
1128}
1129
Johannes Berg19d337d2009-06-02 13:01:37 +02001130/*************************************************************************
1131 * rfkill and radio control support helpers
1132 */
1133
1134/*
1135 * ThinkPad-ACPI firmware handling model:
1136 *
1137 * WLSW (master wireless switch) is event-driven, and is common to all
1138 * firmware-controlled radios. It cannot be controlled, just monitored,
1139 * as expected. It overrides all radio state in firmware
1140 *
1141 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1142 * (TODO: verify how WLSW interacts with the returned radio state).
1143 *
1144 * The only time there are shadow radio state changes, is when
1145 * masked-off hotkeys are used.
1146 */
1147
1148/*
1149 * Internal driver API for radio state:
1150 *
1151 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1152 * bool: true means radio blocked (off)
1153 */
1154enum tpacpi_rfkill_state {
1155 TPACPI_RFK_RADIO_OFF = 0,
1156 TPACPI_RFK_RADIO_ON
1157};
1158
1159/* rfkill switches */
1160enum tpacpi_rfk_id {
1161 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1162 TPACPI_RFK_WWAN_SW_ID,
1163 TPACPI_RFK_UWB_SW_ID,
1164 TPACPI_RFK_SW_MAX
1165};
1166
1167static const char *tpacpi_rfkill_names[] = {
1168 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1169 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1170 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1171 [TPACPI_RFK_SW_MAX] = NULL
1172};
1173
1174/* ThinkPad-ACPI rfkill subdriver */
1175struct tpacpi_rfk {
1176 struct rfkill *rfkill;
1177 enum tpacpi_rfk_id id;
1178 const struct tpacpi_rfk_ops *ops;
1179};
1180
1181struct tpacpi_rfk_ops {
1182 /* firmware interface */
1183 int (*get_status)(void);
1184 int (*set_status)(const enum tpacpi_rfkill_state);
1185};
1186
1187static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1188
1189/* Query FW and update rfkill sw state for a given rfkill switch */
1190static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1191{
1192 int status;
1193
1194 if (!tp_rfk)
1195 return -ENODEV;
1196
1197 status = (tp_rfk->ops->get_status)();
1198 if (status < 0)
1199 return status;
1200
1201 rfkill_set_sw_state(tp_rfk->rfkill,
1202 (status == TPACPI_RFK_RADIO_OFF));
1203
1204 return status;
1205}
1206
1207/* Query FW and update rfkill sw state for all rfkill switches */
1208static void tpacpi_rfk_update_swstate_all(void)
1209{
1210 unsigned int i;
1211
1212 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1213 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1214}
1215
1216/*
1217 * Sync the HW-blocking state of all rfkill switches,
1218 * do notice it causes the rfkill core to schedule uevents
1219 */
1220static void tpacpi_rfk_update_hwblock_state(bool blocked)
1221{
1222 unsigned int i;
1223 struct tpacpi_rfk *tp_rfk;
1224
1225 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1226 tp_rfk = tpacpi_rfkill_switches[i];
1227 if (tp_rfk) {
1228 if (rfkill_set_hw_state(tp_rfk->rfkill,
1229 blocked)) {
1230 /* ignore -- we track sw block */
1231 }
1232 }
1233 }
1234}
1235
1236/* Call to get the WLSW state from the firmware */
1237static int hotkey_get_wlsw(void);
1238
1239/* Call to query WLSW state and update all rfkill switches */
1240static bool tpacpi_rfk_check_hwblock_state(void)
1241{
1242 int res = hotkey_get_wlsw();
1243 int hw_blocked;
1244
1245 /* When unknown or unsupported, we have to assume it is unblocked */
1246 if (res < 0)
1247 return false;
1248
1249 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1250 tpacpi_rfk_update_hwblock_state(hw_blocked);
1251
1252 return hw_blocked;
1253}
1254
1255static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1256{
1257 struct tpacpi_rfk *tp_rfk = data;
1258 int res;
1259
1260 dbg_printk(TPACPI_DBG_RFKILL,
1261 "request to change radio state to %s\n",
1262 blocked ? "blocked" : "unblocked");
1263
1264 /* try to set radio state */
1265 res = (tp_rfk->ops->set_status)(blocked ?
1266 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1267
1268 /* and update the rfkill core with whatever the FW really did */
1269 tpacpi_rfk_update_swstate(tp_rfk);
1270
1271 return (res < 0) ? res : 0;
1272}
1273
1274static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1275 .set_block = tpacpi_rfk_hook_set_block,
1276};
1277
1278static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1279 const struct tpacpi_rfk_ops *tp_rfkops,
1280 const enum rfkill_type rfktype,
1281 const char *name,
1282 const bool set_default)
1283{
1284 struct tpacpi_rfk *atp_rfk;
1285 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001286 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001287 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001288 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001289
1290 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1291
Johannes Berg19d337d2009-06-02 13:01:37 +02001292 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1293 if (atp_rfk)
1294 atp_rfk->rfkill = rfkill_alloc(name,
1295 &tpacpi_pdev->dev,
1296 rfktype,
1297 &tpacpi_rfk_rfkill_ops,
1298 atp_rfk);
1299 if (!atp_rfk || !atp_rfk->rfkill) {
1300 printk(TPACPI_ERR
1301 "failed to allocate memory for rfkill class\n");
1302 kfree(atp_rfk);
1303 return -ENOMEM;
1304 }
1305
1306 atp_rfk->id = id;
1307 atp_rfk->ops = tp_rfkops;
1308
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001309 sw_status = (tp_rfkops->get_status)();
1310 if (sw_status < 0) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001311 printk(TPACPI_ERR
1312 "failed to read initial state for %s, error %d\n",
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001313 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001314 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001315 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001316 if (set_default) {
1317 /* try to keep the initial state, since we ask the
1318 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001319 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001320 }
1321 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001322 hw_state = tpacpi_rfk_check_hwblock_state();
1323 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001324
1325 res = rfkill_register(atp_rfk->rfkill);
1326 if (res < 0) {
1327 printk(TPACPI_ERR
1328 "failed to register %s rfkill switch: %d\n",
1329 name, res);
1330 rfkill_destroy(atp_rfk->rfkill);
1331 kfree(atp_rfk);
1332 return res;
1333 }
1334
1335 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001336
1337 printk(TPACPI_INFO "rfkill switch %s: radio is %sblocked\n",
1338 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001339 return 0;
1340}
1341
1342static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1343{
1344 struct tpacpi_rfk *tp_rfk;
1345
1346 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1347
1348 tp_rfk = tpacpi_rfkill_switches[id];
1349 if (tp_rfk) {
1350 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001351 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001352 tpacpi_rfkill_switches[id] = NULL;
1353 kfree(tp_rfk);
1354 }
1355}
1356
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001357static void printk_deprecated_rfkill_attribute(const char * const what)
1358{
1359 printk_deprecated_attribute(what,
1360 "Please switch to generic rfkill before year 2010");
1361}
1362
Johannes Berg19d337d2009-06-02 13:01:37 +02001363/* sysfs <radio> enable ------------------------------------------------ */
1364static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1365 struct device_attribute *attr,
1366 char *buf)
1367{
1368 int status;
1369
1370 printk_deprecated_rfkill_attribute(attr->attr.name);
1371
1372 /* This is in the ABI... */
1373 if (tpacpi_rfk_check_hwblock_state()) {
1374 status = TPACPI_RFK_RADIO_OFF;
1375 } else {
1376 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1377 if (status < 0)
1378 return status;
1379 }
1380
1381 return snprintf(buf, PAGE_SIZE, "%d\n",
1382 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1383}
1384
1385static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1386 struct device_attribute *attr,
1387 const char *buf, size_t count)
1388{
1389 unsigned long t;
1390 int res;
1391
1392 printk_deprecated_rfkill_attribute(attr->attr.name);
1393
1394 if (parse_strtoul(buf, 1, &t))
1395 return -EINVAL;
1396
1397 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1398
1399 /* This is in the ABI... */
1400 if (tpacpi_rfk_check_hwblock_state() && !!t)
1401 return -EPERM;
1402
1403 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1404 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1405 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1406
1407 return (res < 0) ? res : count;
1408}
1409
1410/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001411static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001412{
Johannes Berg19d337d2009-06-02 13:01:37 +02001413 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001414 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001415 else {
1416 int status;
1417
1418 /* This is in the ABI... */
1419 if (tpacpi_rfk_check_hwblock_state()) {
1420 status = TPACPI_RFK_RADIO_OFF;
1421 } else {
1422 status = tpacpi_rfk_update_swstate(
1423 tpacpi_rfkill_switches[id]);
1424 if (status < 0)
1425 return status;
1426 }
1427
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001428 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001429 (status == TPACPI_RFK_RADIO_ON) ?
1430 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001431 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001432 }
1433
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001434 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001435}
1436
1437static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1438{
1439 char *cmd;
1440 int status = -1;
1441 int res = 0;
1442
1443 if (id >= TPACPI_RFK_SW_MAX)
1444 return -ENODEV;
1445
1446 while ((cmd = next_cmd(&buf))) {
1447 if (strlencmp(cmd, "enable") == 0)
1448 status = TPACPI_RFK_RADIO_ON;
1449 else if (strlencmp(cmd, "disable") == 0)
1450 status = TPACPI_RFK_RADIO_OFF;
1451 else
1452 return -EINVAL;
1453 }
1454
1455 if (status != -1) {
1456 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1457 (status == TPACPI_RFK_RADIO_ON) ?
1458 "enable" : "disable",
1459 tpacpi_rfkill_names[id]);
1460 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1461 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1462 }
1463
1464 return res;
1465}
1466
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001467/*************************************************************************
1468 * thinkpad-acpi driver attributes
1469 */
1470
1471/* interface_version --------------------------------------------------- */
1472static ssize_t tpacpi_driver_interface_version_show(
1473 struct device_driver *drv,
1474 char *buf)
1475{
1476 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1477}
1478
1479static DRIVER_ATTR(interface_version, S_IRUGO,
1480 tpacpi_driver_interface_version_show, NULL);
1481
1482/* debug_level --------------------------------------------------------- */
1483static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1484 char *buf)
1485{
1486 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1487}
1488
1489static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1490 const char *buf, size_t count)
1491{
1492 unsigned long t;
1493
1494 if (parse_strtoul(buf, 0xffff, &t))
1495 return -EINVAL;
1496
1497 dbg_level = t;
1498
1499 return count;
1500}
1501
1502static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1503 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1504
1505/* version ------------------------------------------------------------- */
1506static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1507 char *buf)
1508{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001509 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1510 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001511}
1512
1513static DRIVER_ATTR(version, S_IRUGO,
1514 tpacpi_driver_version_show, NULL);
1515
1516/* --------------------------------------------------------------------- */
1517
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001518#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1519
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001520/* wlsw_emulstate ------------------------------------------------------ */
1521static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1522 char *buf)
1523{
1524 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1525}
1526
1527static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1528 const char *buf, size_t count)
1529{
1530 unsigned long t;
1531
1532 if (parse_strtoul(buf, 1, &t))
1533 return -EINVAL;
1534
Johannes Berg19d337d2009-06-02 13:01:37 +02001535 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001536 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001537 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1538 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001539
1540 return count;
1541}
1542
1543static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1544 tpacpi_driver_wlsw_emulstate_show,
1545 tpacpi_driver_wlsw_emulstate_store);
1546
1547/* bluetooth_emulstate ------------------------------------------------- */
1548static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1549 struct device_driver *drv,
1550 char *buf)
1551{
1552 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1553}
1554
1555static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1556 struct device_driver *drv,
1557 const char *buf, size_t count)
1558{
1559 unsigned long t;
1560
1561 if (parse_strtoul(buf, 1, &t))
1562 return -EINVAL;
1563
1564 tpacpi_bluetooth_emulstate = !!t;
1565
1566 return count;
1567}
1568
1569static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1570 tpacpi_driver_bluetooth_emulstate_show,
1571 tpacpi_driver_bluetooth_emulstate_store);
1572
1573/* wwan_emulstate ------------------------------------------------- */
1574static ssize_t tpacpi_driver_wwan_emulstate_show(
1575 struct device_driver *drv,
1576 char *buf)
1577{
1578 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1579}
1580
1581static ssize_t tpacpi_driver_wwan_emulstate_store(
1582 struct device_driver *drv,
1583 const char *buf, size_t count)
1584{
1585 unsigned long t;
1586
1587 if (parse_strtoul(buf, 1, &t))
1588 return -EINVAL;
1589
1590 tpacpi_wwan_emulstate = !!t;
1591
1592 return count;
1593}
1594
1595static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1596 tpacpi_driver_wwan_emulstate_show,
1597 tpacpi_driver_wwan_emulstate_store);
1598
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001599/* uwb_emulstate ------------------------------------------------- */
1600static ssize_t tpacpi_driver_uwb_emulstate_show(
1601 struct device_driver *drv,
1602 char *buf)
1603{
1604 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1605}
1606
1607static ssize_t tpacpi_driver_uwb_emulstate_store(
1608 struct device_driver *drv,
1609 const char *buf, size_t count)
1610{
1611 unsigned long t;
1612
1613 if (parse_strtoul(buf, 1, &t))
1614 return -EINVAL;
1615
1616 tpacpi_uwb_emulstate = !!t;
1617
1618 return count;
1619}
1620
1621static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1622 tpacpi_driver_uwb_emulstate_show,
1623 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001624#endif
1625
1626/* --------------------------------------------------------------------- */
1627
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001628static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001629 &driver_attr_debug_level, &driver_attr_version,
1630 &driver_attr_interface_version,
1631};
1632
1633static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1634{
1635 int i, res;
1636
1637 i = 0;
1638 res = 0;
1639 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1640 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1641 i++;
1642 }
1643
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001644#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1645 if (!res && dbg_wlswemul)
1646 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1647 if (!res && dbg_bluetoothemul)
1648 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1649 if (!res && dbg_wwanemul)
1650 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001651 if (!res && dbg_uwbemul)
1652 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001653#endif
1654
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001655 return res;
1656}
1657
1658static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1659{
1660 int i;
1661
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001662 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001663 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001664
1665#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1666 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1667 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1668 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001669 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001670#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001671}
1672
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001673/*************************************************************************
1674 * Firmware Data
1675 */
1676
1677/*
1678 * Table of recommended minimum BIOS versions
1679 *
1680 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001681 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001682 * bugs and bad ACPI behaviour on older versions
1683 *
1684 * 2. BIOS or EC fw with known bugs that trigger on Linux
1685 *
1686 * 3. BIOS with known reduced functionality in older versions
1687 *
1688 * We recommend the latest BIOS and EC version.
1689 * We only support the latest BIOS and EC fw version as a rule.
1690 *
1691 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1692 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001693 *
1694 * WARNING: we use this table also to detect that the machine is
1695 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001696 */
1697
1698#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1699 { .vendor = (__v), \
1700 .bios = TPID(__id1, __id2), \
1701 .ec = TPACPI_MATCH_ANY, \
1702 .quirks = TPACPI_MATCH_ANY << 16 \
1703 | (__bv1) << 8 | (__bv2) }
1704
1705#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001706 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001707 { .vendor = (__v), \
1708 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001709 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001710 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1711 | (__bv1) << 8 | (__bv2) }
1712
1713#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1714 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1715
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001716/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001717#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1718 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001719 __bv1, __bv2, TPID(__id1, __id2), \
1720 __ev1, __ev2), \
1721 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1722 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1723 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001724
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001725/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001726#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1727 __eid1, __eid2, __ev1, __ev2) \
1728 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001729 __bv1, __bv2, TPID(__eid1, __eid2), \
1730 __ev1, __ev2), \
1731 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1732 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1733 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001734
1735#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1736 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1737
1738#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1739 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001740 __bv1, __bv2, TPID(__id1, __id2), \
1741 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001742
1743#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1744 __eid1, __eid2, __ev1, __ev2) \
1745 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001746 __bv1, __bv2, TPID(__eid1, __eid2), \
1747 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001748
1749static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1750 /* Numeric models ------------------ */
1751 /* FW MODEL BIOS VERS */
1752 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1753 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1754 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1755 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1756 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1757 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1758 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1759 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1760 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1761
1762 /* A-series ------------------------- */
1763 /* FW MODEL BIOS VERS EC VERS */
1764 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1765 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1766 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1767 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1768 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1769 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1770 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1771 TPV_QI0('1', '3', '2', '0'), /* A22m */
1772 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1773 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1774 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1775
1776 /* G-series ------------------------- */
1777 /* FW MODEL BIOS VERS */
1778 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1779 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1780
1781 /* R-series, T-series --------------- */
1782 /* FW MODEL BIOS VERS EC VERS */
1783 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1784 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1785 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1786 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1787 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1788 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1789 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1790 T40/p, T41/p, T42/p (1) */
1791 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1792 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1793 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1794 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1795
1796 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1797 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1798 TPV_QI0('1', '6', '3', '2'), /* T22 */
1799 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1800 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1801 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1802
1803 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1804 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001805 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001806
1807 /* BIOS FW BIOS VERS EC FW EC VERS */
1808 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1809 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1810
1811 /* X-series ------------------------- */
1812 /* FW MODEL BIOS VERS EC VERS */
1813 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1814 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1815 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1816 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1817 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1818 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1819 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1820
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001821 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1822 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001823
1824 /* (0) - older versions lack DMI EC fw string and functionality */
1825 /* (1) - older versions known to lack functionality */
1826};
1827
1828#undef TPV_QL1
1829#undef TPV_QL0
1830#undef TPV_QI2
1831#undef TPV_QI1
1832#undef TPV_QI0
1833#undef TPV_Q_X
1834#undef TPV_Q
1835
1836static void __init tpacpi_check_outdated_fw(void)
1837{
1838 unsigned long fwvers;
1839 u16 ec_version, bios_version;
1840
1841 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1842 ARRAY_SIZE(tpacpi_bios_version_qtable));
1843
1844 if (!fwvers)
1845 return;
1846
1847 bios_version = fwvers & 0xffffU;
1848 ec_version = (fwvers >> 16) & 0xffffU;
1849
1850 /* note that unknown versions are set to 0x0000 and we use that */
1851 if ((bios_version > thinkpad_id.bios_release) ||
1852 (ec_version > thinkpad_id.ec_release &&
1853 ec_version != TPACPI_MATCH_ANY)) {
1854 /*
1855 * The changelogs would let us track down the exact
1856 * reason, but it is just too much of a pain to track
1857 * it. We only list BIOSes that are either really
1858 * broken, or really stable to begin with, so it is
1859 * best if the user upgrades the firmware anyway.
1860 */
1861 printk(TPACPI_WARN
1862 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1863 printk(TPACPI_WARN
1864 "WARNING: This firmware may be missing critical bug "
1865 "fixes and/or important features\n");
1866 }
1867}
1868
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001869static bool __init tpacpi_is_fw_known(void)
1870{
1871 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1872 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1873}
1874
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001875/****************************************************************************
1876 ****************************************************************************
1877 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001878 * Subdrivers
1879 *
1880 ****************************************************************************
1881 ****************************************************************************/
1882
1883/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001884 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001885 */
1886
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001887static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001889 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1890 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001892 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001893 (thinkpad_id.bios_version_str) ?
1894 thinkpad_id.bios_version_str : "unknown",
1895 (thinkpad_id.ec_version_str) ?
1896 thinkpad_id.ec_version_str : "unknown");
1897
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03001898 BUG_ON(!thinkpad_id.vendor);
1899
1900 if (thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001901 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001902 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1903 "IBM" : ((thinkpad_id.vendor ==
1904 PCI_VENDOR_ID_LENOVO) ?
1905 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001906 thinkpad_id.model_str,
1907 (thinkpad_id.nummodel_str) ?
1908 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001909
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001910 tpacpi_check_outdated_fw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 return 0;
1912}
1913
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001914static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001916 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1917 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919}
1920
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001921static struct ibm_struct thinkpad_acpi_driver_data = {
1922 .name = "driver",
1923 .read = thinkpad_acpi_driver_read,
1924};
1925
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001926/*************************************************************************
1927 * Hotkey subdriver
1928 */
1929
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001930/*
1931 * ThinkPad firmware event model
1932 *
1933 * The ThinkPad firmware has two main event interfaces: normal ACPI
1934 * notifications (which follow the ACPI standard), and a private event
1935 * interface.
1936 *
1937 * The private event interface also issues events for the hotkeys. As
1938 * the driver gained features, the event handling code ended up being
1939 * built around the hotkey subdriver. This will need to be refactored
1940 * to a more formal event API eventually.
1941 *
1942 * Some "hotkeys" are actually supposed to be used as event reports,
1943 * such as "brightness has changed", "volume has changed", depending on
1944 * the ThinkPad model and how the firmware is operating.
1945 *
1946 * Unlike other classes, hotkey-class events have mask/unmask control on
1947 * non-ancient firmware. However, how it behaves changes a lot with the
1948 * firmware model and version.
1949 */
1950
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001951enum { /* hot key scan codes (derived from ACPI DSDT) */
1952 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1953 TP_ACPI_HOTKEYSCAN_FNF2,
1954 TP_ACPI_HOTKEYSCAN_FNF3,
1955 TP_ACPI_HOTKEYSCAN_FNF4,
1956 TP_ACPI_HOTKEYSCAN_FNF5,
1957 TP_ACPI_HOTKEYSCAN_FNF6,
1958 TP_ACPI_HOTKEYSCAN_FNF7,
1959 TP_ACPI_HOTKEYSCAN_FNF8,
1960 TP_ACPI_HOTKEYSCAN_FNF9,
1961 TP_ACPI_HOTKEYSCAN_FNF10,
1962 TP_ACPI_HOTKEYSCAN_FNF11,
1963 TP_ACPI_HOTKEYSCAN_FNF12,
1964 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1965 TP_ACPI_HOTKEYSCAN_FNINSERT,
1966 TP_ACPI_HOTKEYSCAN_FNDELETE,
1967 TP_ACPI_HOTKEYSCAN_FNHOME,
1968 TP_ACPI_HOTKEYSCAN_FNEND,
1969 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1970 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1971 TP_ACPI_HOTKEYSCAN_FNSPACE,
1972 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1973 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1974 TP_ACPI_HOTKEYSCAN_MUTE,
1975 TP_ACPI_HOTKEYSCAN_THINKPAD,
1976};
1977
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001978enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001979 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1980 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1981};
1982
1983enum { /* Positions of some of the keys in hotkey masks */
1984 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1985 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1986 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1987 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1988 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1989 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1990 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1991 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1992 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1993 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1994 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1995};
1996
1997enum { /* NVRAM to ACPI HKEY group map */
1998 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1999 TP_ACPI_HKEY_ZOOM_MASK |
2000 TP_ACPI_HKEY_DISPSWTCH_MASK |
2001 TP_ACPI_HKEY_HIBERNATE_MASK,
2002 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
2003 TP_ACPI_HKEY_BRGHTDWN_MASK,
2004 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
2005 TP_ACPI_HKEY_VOLDWN_MASK |
2006 TP_ACPI_HKEY_MUTE_MASK,
2007};
2008
2009#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2010struct tp_nvram_state {
2011 u16 thinkpad_toggle:1;
2012 u16 zoom_toggle:1;
2013 u16 display_toggle:1;
2014 u16 thinklight_toggle:1;
2015 u16 hibernate_toggle:1;
2016 u16 displayexp_toggle:1;
2017 u16 display_state:1;
2018 u16 brightness_toggle:1;
2019 u16 volume_toggle:1;
2020 u16 mute:1;
2021
2022 u8 brightness_level;
2023 u8 volume_level;
2024};
2025
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002026/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002027static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002028
2029/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002030static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002031
2032/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002033 * Acquire mutex to write poller control variables as an
2034 * atomic block.
2035 *
2036 * Increment hotkey_config_change when changing them if you
2037 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002038 *
2039 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2040 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002041static struct mutex hotkey_thread_data_mutex;
2042static unsigned int hotkey_config_change;
2043
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002044/*
2045 * hotkey poller control variables
2046 *
2047 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002048 *
2049 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2050 * should be used only when the changes need to be taken as
2051 * a block, OR when one needs to force the kthread to forget
2052 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002053 */
2054static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
2055static unsigned int hotkey_poll_freq = 10; /* Hz */
2056
2057#define HOTKEY_CONFIG_CRITICAL_START \
2058 do { \
2059 mutex_lock(&hotkey_thread_data_mutex); \
2060 hotkey_config_change++; \
2061 } while (0);
2062#define HOTKEY_CONFIG_CRITICAL_END \
2063 mutex_unlock(&hotkey_thread_data_mutex);
2064
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002065#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2066
2067#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002068#define HOTKEY_CONFIG_CRITICAL_START
2069#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002070
2071#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2072
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002073static struct mutex hotkey_mutex;
2074
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002075static enum { /* Reasons for waking up */
2076 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2077 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2078 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2079} hotkey_wakeup_reason;
2080
2081static int hotkey_autosleep_ack;
2082
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002083static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2084static u32 hotkey_all_mask; /* all events supported in fw */
2085static u32 hotkey_reserved_mask; /* events better left disabled */
2086static u32 hotkey_driver_mask; /* events needed by the driver */
2087static u32 hotkey_user_mask; /* events visible to userspace */
2088static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002089
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02002090static unsigned int hotkey_report_mode;
2091
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002092static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002093
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03002094static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002095
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002096static void tpacpi_driver_event(const unsigned int hkey_event);
2097static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002098static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002099
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002100/* HKEY.MHKG() return bits */
2101#define TP_HOTKEY_TABLET_MASK (1 << 3)
2102
Johannes Berg19d337d2009-06-02 13:01:37 +02002103static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002104{
Johannes Berg19d337d2009-06-02 13:01:37 +02002105 int status;
2106
2107 if (!tp_features.hotkey_wlsw)
2108 return -ENODEV;
2109
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002110#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002111 if (dbg_wlswemul)
2112 return (tpacpi_wlsw_emulstate) ?
2113 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002114#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002115
2116 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002117 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002118
2119 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002120}
2121
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002122static int hotkey_get_tablet_mode(int *status)
2123{
2124 int s;
2125
2126 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2127 return -EIO;
2128
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002129 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2130 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002131}
2132
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002133/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002134 * Reads current event mask from firmware, and updates
2135 * hotkey_acpi_mask accordingly. Also resets any bits
2136 * from hotkey_user_mask that are unavailable to be
2137 * delivered (shadow requirement of the userspace ABI).
2138 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002139 * Call with hotkey_mutex held
2140 */
2141static int hotkey_mask_get(void)
2142{
2143 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002144 u32 m = 0;
2145
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002146 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002147 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002148
2149 hotkey_acpi_mask = m;
2150 } else {
2151 /* no mask support doesn't mean no event support... */
2152 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002153 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002154
2155 /* sync userspace-visible mask */
2156 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002157
2158 return 0;
2159}
2160
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002161void static hotkey_mask_warn_incomplete_mask(void)
2162{
2163 /* log only what the user can fix... */
2164 const u32 wantedmask = hotkey_driver_mask &
2165 ~(hotkey_acpi_mask | hotkey_source_mask) &
2166 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2167
2168 if (wantedmask)
2169 printk(TPACPI_NOTICE
2170 "required events 0x%08x not enabled!\n",
2171 wantedmask);
2172}
2173
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002174/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002175 * Set the firmware mask when supported
2176 *
2177 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2178 *
2179 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2180 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002181 * Call with hotkey_mutex held
2182 */
2183static int hotkey_mask_set(u32 mask)
2184{
2185 int i;
2186 int rc = 0;
2187
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002188 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002189
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002190 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002191 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002192 if (!acpi_evalf(hkey_handle,
2193 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002194 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002195 rc = -EIO;
2196 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002197 }
2198 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002199 }
2200
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002201 /*
2202 * We *must* make an inconditional call to hotkey_mask_get to
2203 * refresh hotkey_acpi_mask and update hotkey_user_mask
2204 *
2205 * Take the opportunity to also log when we cannot _enable_
2206 * a given event.
2207 */
2208 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2209 printk(TPACPI_NOTICE
2210 "asked for hotkey mask 0x%08x, but "
2211 "firmware forced it to 0x%08x\n",
2212 fwmask, hotkey_acpi_mask);
2213 }
2214
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002215 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2216 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002217
2218 return rc;
2219}
2220
2221/*
2222 * Sets hotkey_user_mask and tries to set the firmware mask
2223 *
2224 * Call with hotkey_mutex held
2225 */
2226static int hotkey_user_mask_set(const u32 mask)
2227{
2228 int rc;
2229
2230 /* Give people a chance to notice they are doing something that
2231 * is bound to go boom on their users sooner or later */
2232 if (!tp_warned.hotkey_mask_ff &&
2233 (mask == 0xffff || mask == 0xffffff ||
2234 mask == 0xffffffff)) {
2235 tp_warned.hotkey_mask_ff = 1;
2236 printk(TPACPI_NOTICE
2237 "setting the hotkey mask to 0x%08x is likely "
2238 "not the best way to go about it\n", mask);
2239 printk(TPACPI_NOTICE
2240 "please consider using the driver defaults, "
2241 "and refer to up-to-date thinkpad-acpi "
2242 "documentation\n");
2243 }
2244
2245 /* Try to enable what the user asked for, plus whatever we need.
2246 * this syncs everything but won't enable bits in hotkey_user_mask */
2247 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2248
2249 /* Enable the available bits in hotkey_user_mask */
2250 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2251
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002252 return rc;
2253}
2254
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002255/*
2256 * Sets the driver hotkey mask.
2257 *
2258 * Can be called even if the hotkey subdriver is inactive
2259 */
2260static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2261{
2262 int rc;
2263
2264 /* Do the right thing if hotkey_init has not been called yet */
2265 if (!tp_features.hotkey) {
2266 hotkey_driver_mask = mask;
2267 return 0;
2268 }
2269
2270 mutex_lock(&hotkey_mutex);
2271
2272 HOTKEY_CONFIG_CRITICAL_START
2273 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002274#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002275 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002276#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002277 HOTKEY_CONFIG_CRITICAL_END
2278
2279 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2280 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002281 hotkey_poll_setup(true);
2282
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002283 mutex_unlock(&hotkey_mutex);
2284
2285 return rc;
2286}
2287
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002288static int hotkey_status_get(int *status)
2289{
2290 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2291 return -EIO;
2292
2293 return 0;
2294}
2295
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002296static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002297{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002298 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002299 return -EIO;
2300
2301 return 0;
2302}
2303
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002304static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002305{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002306 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002307
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002308 if (tp_features.hotkey_tablet &&
2309 !hotkey_get_tablet_mode(&state)) {
2310 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002311
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002312 input_report_switch(tpacpi_inputdev,
2313 SW_TABLET_MODE, !!state);
2314 input_sync(tpacpi_inputdev);
2315
2316 mutex_unlock(&tpacpi_inputdev_send_mutex);
2317 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002318}
2319
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002320/* Do NOT call without validating scancode first */
2321static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002322{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002323 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002324
2325 if (keycode != KEY_RESERVED) {
2326 mutex_lock(&tpacpi_inputdev_send_mutex);
2327
2328 input_report_key(tpacpi_inputdev, keycode, 1);
2329 if (keycode == KEY_UNKNOWN)
2330 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2331 scancode);
2332 input_sync(tpacpi_inputdev);
2333
2334 input_report_key(tpacpi_inputdev, keycode, 0);
2335 if (keycode == KEY_UNKNOWN)
2336 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2337 scancode);
2338 input_sync(tpacpi_inputdev);
2339
2340 mutex_unlock(&tpacpi_inputdev_send_mutex);
2341 }
2342}
2343
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002344/* Do NOT call without validating scancode first */
2345static void tpacpi_input_send_key_masked(const unsigned int scancode)
2346{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002347 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002348 if (hotkey_user_mask & (1 << scancode))
2349 tpacpi_input_send_key(scancode);
2350}
2351
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002352#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2353static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2354
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002355/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002356static void tpacpi_hotkey_send_key(unsigned int scancode)
2357{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002358 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002359 if (hotkey_report_mode < 2) {
2360 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03002361 0x80, TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002362 }
2363}
2364
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002365static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002366{
2367 u8 d;
2368
2369 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2370 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2371 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2372 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2373 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2374 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2375 }
2376 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2377 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2378 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2379 }
2380 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2381 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2382 n->displayexp_toggle =
2383 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2384 }
2385 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2386 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2387 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2388 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2389 n->brightness_toggle =
2390 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2391 }
2392 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2393 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2394 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2395 >> TP_NVRAM_POS_LEVEL_VOLUME;
2396 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2397 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2398 }
2399}
2400
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002401static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2402 struct tp_nvram_state *newn,
2403 const u32 event_mask)
2404{
2405
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002406#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002407 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002408 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002409 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002410 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002411 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002412
2413#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002414 do { \
2415 if (event_mask & (1 << __scancode)) \
2416 tpacpi_hotkey_send_key(__scancode); \
2417 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002418
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002419 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2420 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2421 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2422 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2423
2424 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2425
2426 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2427
2428 /* handle volume */
2429 if (oldn->volume_toggle != newn->volume_toggle) {
2430 if (oldn->mute != newn->mute) {
2431 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2432 }
2433 if (oldn->volume_level > newn->volume_level) {
2434 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2435 } else if (oldn->volume_level < newn->volume_level) {
2436 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2437 } else if (oldn->mute == newn->mute) {
2438 /* repeated key presses that didn't change state */
2439 if (newn->mute) {
2440 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2441 } else if (newn->volume_level != 0) {
2442 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2443 } else {
2444 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2445 }
2446 }
2447 }
2448
2449 /* handle brightness */
2450 if (oldn->brightness_toggle != newn->brightness_toggle) {
2451 if (oldn->brightness_level < newn->brightness_level) {
2452 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2453 } else if (oldn->brightness_level > newn->brightness_level) {
2454 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2455 } else {
2456 /* repeated key presses that didn't change state */
2457 if (newn->brightness_level != 0) {
2458 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2459 } else {
2460 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2461 }
2462 }
2463 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002464
2465#undef TPACPI_COMPARE_KEY
2466#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002467}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002468
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002469/*
2470 * Polling driver
2471 *
2472 * We track all events in hotkey_source_mask all the time, since
2473 * most of them are edge-based. We only issue those requested by
2474 * hotkey_user_mask or hotkey_driver_mask, though.
2475 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002476static int hotkey_kthread(void *data)
2477{
2478 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002479 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002480 unsigned int si, so;
2481 unsigned long t;
2482 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002483 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002484
2485 mutex_lock(&hotkey_thread_mutex);
2486
2487 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2488 goto exit;
2489
2490 set_freezable();
2491
2492 so = 0;
2493 si = 1;
2494 t = 0;
2495
2496 /* Initial state for compares */
2497 mutex_lock(&hotkey_thread_data_mutex);
2498 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002499 poll_mask = hotkey_source_mask;
2500 event_mask = hotkey_source_mask &
2501 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002502 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002503 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002504 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002505
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002506 while (!kthread_should_stop()) {
2507 if (t == 0) {
2508 if (likely(poll_freq))
2509 t = 1000/poll_freq;
2510 else
2511 t = 100; /* should never happen... */
2512 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002513 t = msleep_interruptible(t);
2514 if (unlikely(kthread_should_stop()))
2515 break;
2516 must_reset = try_to_freeze();
2517 if (t > 0 && !must_reset)
2518 continue;
2519
2520 mutex_lock(&hotkey_thread_data_mutex);
2521 if (must_reset || hotkey_config_change != change_detector) {
2522 /* forget old state on thaw or config change */
2523 si = so;
2524 t = 0;
2525 change_detector = hotkey_config_change;
2526 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002527 poll_mask = hotkey_source_mask;
2528 event_mask = hotkey_source_mask &
2529 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002530 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002531 mutex_unlock(&hotkey_thread_data_mutex);
2532
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002533 if (likely(poll_mask)) {
2534 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002535 if (likely(si != so)) {
2536 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002537 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002538 }
2539 }
2540
2541 so = si;
2542 si ^= 1;
2543 }
2544
2545exit:
2546 mutex_unlock(&hotkey_thread_mutex);
2547 return 0;
2548}
2549
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002550/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002551static void hotkey_poll_stop_sync(void)
2552{
2553 if (tpacpi_hotkey_task) {
2554 if (frozen(tpacpi_hotkey_task) ||
2555 freezing(tpacpi_hotkey_task))
2556 thaw_process(tpacpi_hotkey_task);
2557
2558 kthread_stop(tpacpi_hotkey_task);
2559 tpacpi_hotkey_task = NULL;
2560 mutex_lock(&hotkey_thread_mutex);
2561 /* at this point, the thread did exit */
2562 mutex_unlock(&hotkey_thread_mutex);
2563 }
2564}
2565
2566/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002567static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002568{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002569 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2570 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002571
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002572 if (hotkey_poll_freq > 0 &&
2573 (poll_driver_mask ||
2574 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002575 if (!tpacpi_hotkey_task) {
2576 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002577 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002578 if (IS_ERR(tpacpi_hotkey_task)) {
2579 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002580 printk(TPACPI_ERR
2581 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002582 "for hotkey polling\n");
2583 }
2584 }
2585 } else {
2586 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002587 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002588 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002589 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002590 "hot keys 0x%08x and/or events 0x%08x "
2591 "require polling, which is currently "
2592 "disabled\n",
2593 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002594 }
2595 }
2596}
2597
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002598static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002599{
2600 mutex_lock(&hotkey_mutex);
2601 hotkey_poll_setup(may_warn);
2602 mutex_unlock(&hotkey_mutex);
2603}
2604
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002605/* call with hotkey_mutex held */
2606static void hotkey_poll_set_freq(unsigned int freq)
2607{
2608 if (!freq)
2609 hotkey_poll_stop_sync();
2610
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002611 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002612}
2613
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002614#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2615
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002616static void hotkey_poll_setup(const bool __unused)
2617{
2618}
2619
2620static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002621{
2622}
2623
2624#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2625
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002626static int hotkey_inputdev_open(struct input_dev *dev)
2627{
2628 switch (tpacpi_lifecycle) {
2629 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002630 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002631 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002632 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002633 case TPACPI_LIFE_EXITING:
2634 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002635 }
2636
2637 /* Should only happen if tpacpi_lifecycle is corrupt */
2638 BUG();
2639 return -EBUSY;
2640}
2641
2642static void hotkey_inputdev_close(struct input_dev *dev)
2643{
2644 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002645 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002646 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002647 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002648}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002649
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002650/* sysfs hotkey enable ------------------------------------------------- */
2651static ssize_t hotkey_enable_show(struct device *dev,
2652 struct device_attribute *attr,
2653 char *buf)
2654{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002655 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002656
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002657 printk_deprecated_attribute("hotkey_enable",
2658 "Hotkey reporting is always enabled");
2659
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002660 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002661 if (res)
2662 return res;
2663
2664 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2665}
2666
2667static ssize_t hotkey_enable_store(struct device *dev,
2668 struct device_attribute *attr,
2669 const char *buf, size_t count)
2670{
2671 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002672
2673 printk_deprecated_attribute("hotkey_enable",
2674 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002675
2676 if (parse_strtoul(buf, 1, &t))
2677 return -EINVAL;
2678
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002679 if (t == 0)
2680 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002681
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002682 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002683}
2684
2685static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002686 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002687 hotkey_enable_show, hotkey_enable_store);
2688
2689/* sysfs hotkey mask --------------------------------------------------- */
2690static ssize_t hotkey_mask_show(struct device *dev,
2691 struct device_attribute *attr,
2692 char *buf)
2693{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002694 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002695}
2696
2697static ssize_t hotkey_mask_store(struct device *dev,
2698 struct device_attribute *attr,
2699 const char *buf, size_t count)
2700{
2701 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002702 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002703
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002704 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002705 return -EINVAL;
2706
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002707 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002708 return -ERESTARTSYS;
2709
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002710 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002711
2712#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002713 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002714#endif
2715
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002716 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002717
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002718 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2719
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002720 return (res) ? res : count;
2721}
2722
2723static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002724 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002725 hotkey_mask_show, hotkey_mask_store);
2726
2727/* sysfs hotkey bios_enabled ------------------------------------------- */
2728static ssize_t hotkey_bios_enabled_show(struct device *dev,
2729 struct device_attribute *attr,
2730 char *buf)
2731{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002732 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002733}
2734
2735static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002736 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002737
2738/* sysfs hotkey bios_mask ---------------------------------------------- */
2739static ssize_t hotkey_bios_mask_show(struct device *dev,
2740 struct device_attribute *attr,
2741 char *buf)
2742{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002743 printk_deprecated_attribute("hotkey_bios_mask",
2744 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002745 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002746}
2747
2748static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002749 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002750
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002751/* sysfs hotkey all_mask ----------------------------------------------- */
2752static ssize_t hotkey_all_mask_show(struct device *dev,
2753 struct device_attribute *attr,
2754 char *buf)
2755{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002756 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2757 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002758}
2759
2760static struct device_attribute dev_attr_hotkey_all_mask =
2761 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2762
2763/* sysfs hotkey recommended_mask --------------------------------------- */
2764static ssize_t hotkey_recommended_mask_show(struct device *dev,
2765 struct device_attribute *attr,
2766 char *buf)
2767{
2768 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002769 (hotkey_all_mask | hotkey_source_mask)
2770 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002771}
2772
2773static struct device_attribute dev_attr_hotkey_recommended_mask =
2774 __ATTR(hotkey_recommended_mask, S_IRUGO,
2775 hotkey_recommended_mask_show, NULL);
2776
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002777#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2778
2779/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2780static ssize_t hotkey_source_mask_show(struct device *dev,
2781 struct device_attribute *attr,
2782 char *buf)
2783{
2784 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2785}
2786
2787static ssize_t hotkey_source_mask_store(struct device *dev,
2788 struct device_attribute *attr,
2789 const char *buf, size_t count)
2790{
2791 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002792 u32 r_ev;
2793 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002794
2795 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2796 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2797 return -EINVAL;
2798
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002799 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002800 return -ERESTARTSYS;
2801
2802 HOTKEY_CONFIG_CRITICAL_START
2803 hotkey_source_mask = t;
2804 HOTKEY_CONFIG_CRITICAL_END
2805
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002806 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2807 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002808 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002809
2810 /* check if events needed by the driver got disabled */
2811 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2812 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002813
2814 mutex_unlock(&hotkey_mutex);
2815
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002816 if (rc < 0)
2817 printk(TPACPI_ERR "hotkey_source_mask: failed to update the"
2818 "firmware event mask!\n");
2819
2820 if (r_ev)
2821 printk(TPACPI_NOTICE "hotkey_source_mask: "
2822 "some important events were disabled: "
2823 "0x%04x\n", r_ev);
2824
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002825 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2826
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002827 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002828}
2829
2830static struct device_attribute dev_attr_hotkey_source_mask =
2831 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2832 hotkey_source_mask_show, hotkey_source_mask_store);
2833
2834/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2835static ssize_t hotkey_poll_freq_show(struct device *dev,
2836 struct device_attribute *attr,
2837 char *buf)
2838{
2839 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2840}
2841
2842static ssize_t hotkey_poll_freq_store(struct device *dev,
2843 struct device_attribute *attr,
2844 const char *buf, size_t count)
2845{
2846 unsigned long t;
2847
2848 if (parse_strtoul(buf, 25, &t))
2849 return -EINVAL;
2850
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002851 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002852 return -ERESTARTSYS;
2853
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002854 hotkey_poll_set_freq(t);
2855 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002856
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002857 mutex_unlock(&hotkey_mutex);
2858
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002859 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2860
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002861 return count;
2862}
2863
2864static struct device_attribute dev_attr_hotkey_poll_freq =
2865 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2866 hotkey_poll_freq_show, hotkey_poll_freq_store);
2867
2868#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2869
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002870/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002871static ssize_t hotkey_radio_sw_show(struct device *dev,
2872 struct device_attribute *attr,
2873 char *buf)
2874{
Johannes Berg19d337d2009-06-02 13:01:37 +02002875 int res;
2876 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002877 if (res < 0)
2878 return res;
2879
Johannes Berg19d337d2009-06-02 13:01:37 +02002880 /* Opportunistic update */
2881 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2882
2883 return snprintf(buf, PAGE_SIZE, "%d\n",
2884 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002885}
2886
2887static struct device_attribute dev_attr_hotkey_radio_sw =
2888 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2889
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002890static void hotkey_radio_sw_notify_change(void)
2891{
2892 if (tp_features.hotkey_wlsw)
2893 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2894 "hotkey_radio_sw");
2895}
2896
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002897/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2898static ssize_t hotkey_tablet_mode_show(struct device *dev,
2899 struct device_attribute *attr,
2900 char *buf)
2901{
2902 int res, s;
2903 res = hotkey_get_tablet_mode(&s);
2904 if (res < 0)
2905 return res;
2906
2907 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2908}
2909
2910static struct device_attribute dev_attr_hotkey_tablet_mode =
2911 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2912
2913static void hotkey_tablet_mode_notify_change(void)
2914{
2915 if (tp_features.hotkey_tablet)
2916 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2917 "hotkey_tablet_mode");
2918}
2919
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002920/* sysfs hotkey report_mode -------------------------------------------- */
2921static ssize_t hotkey_report_mode_show(struct device *dev,
2922 struct device_attribute *attr,
2923 char *buf)
2924{
2925 return snprintf(buf, PAGE_SIZE, "%d\n",
2926 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2927}
2928
2929static struct device_attribute dev_attr_hotkey_report_mode =
2930 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2931
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002932/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002933static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2934 struct device_attribute *attr,
2935 char *buf)
2936{
2937 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2938}
2939
2940static struct device_attribute dev_attr_hotkey_wakeup_reason =
2941 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2942
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002943static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002944{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002945 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2946 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002947}
2948
2949/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002950static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2951 struct device_attribute *attr,
2952 char *buf)
2953{
2954 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2955}
2956
2957static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2958 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2959 hotkey_wakeup_hotunplug_complete_show, NULL);
2960
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002961static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002962{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002963 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2964 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002965}
2966
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002967/* --------------------------------------------------------------------- */
2968
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002969static struct attribute *hotkey_attributes[] __initdata = {
2970 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002971 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002972 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002973 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002974 &dev_attr_hotkey_wakeup_reason.attr,
2975 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002976 &dev_attr_hotkey_mask.attr,
2977 &dev_attr_hotkey_all_mask.attr,
2978 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002979#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002980 &dev_attr_hotkey_source_mask.attr,
2981 &dev_attr_hotkey_poll_freq.attr,
2982#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002983};
2984
Johannes Berg19d337d2009-06-02 13:01:37 +02002985/*
2986 * Sync both the hw and sw blocking state of all switches
2987 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002988static void tpacpi_send_radiosw_update(void)
2989{
2990 int wlsw;
2991
Johannes Berg19d337d2009-06-02 13:01:37 +02002992 /*
2993 * We must sync all rfkill controllers *before* issuing any
2994 * rfkill input events, or we will race the rfkill core input
2995 * handler.
2996 *
2997 * tpacpi_inputdev_send_mutex works as a syncronization point
2998 * for the above.
2999 *
3000 * We optimize to avoid numerous calls to hotkey_get_wlsw.
3001 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003002
Johannes Berg19d337d2009-06-02 13:01:37 +02003003 wlsw = hotkey_get_wlsw();
3004
3005 /* Sync hw blocking state first if it is hw-blocked */
3006 if (wlsw == TPACPI_RFK_RADIO_OFF)
3007 tpacpi_rfk_update_hwblock_state(true);
3008
3009 /* Sync sw blocking state */
3010 tpacpi_rfk_update_swstate_all();
3011
3012 /* Sync hw blocking state last if it is hw-unblocked */
3013 if (wlsw == TPACPI_RFK_RADIO_ON)
3014 tpacpi_rfk_update_hwblock_state(false);
3015
3016 /* Issue rfkill input event for WLSW switch */
3017 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003018 mutex_lock(&tpacpi_inputdev_send_mutex);
3019
3020 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02003021 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003022 input_sync(tpacpi_inputdev);
3023
3024 mutex_unlock(&tpacpi_inputdev_send_mutex);
3025 }
Johannes Berg19d337d2009-06-02 13:01:37 +02003026
3027 /*
3028 * this can be unconditional, as we will poll state again
3029 * if userspace uses the notify to read data
3030 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003031 hotkey_radio_sw_notify_change();
3032}
3033
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003034static void hotkey_exit(void)
3035{
3036#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003037 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003038 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003039 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003040#endif
3041
3042 if (hotkey_dev_attributes)
3043 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3044
3045 kfree(hotkey_keycode_map);
3046
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003047 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003048 "restoring original HKEY status and mask\n");
3049 /* yes, there is a bitwise or below, we want the
3050 * functions to be called even if one of them fail */
3051 if (((tp_features.hotkey_mask &&
3052 hotkey_mask_set(hotkey_orig_mask)) |
3053 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003054 printk(TPACPI_ERR
3055 "failed to restore hot key mask "
3056 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003057}
3058
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003059static void __init hotkey_unmap(const unsigned int scancode)
3060{
3061 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3062 clear_bit(hotkey_keycode_map[scancode],
3063 tpacpi_inputdev->keybit);
3064 hotkey_keycode_map[scancode] = KEY_RESERVED;
3065 }
3066}
3067
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003068/*
3069 * HKEY quirks:
3070 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3071 */
3072
3073#define TPACPI_HK_Q_INIMASK 0x0001
3074
3075static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3076 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3077 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3078 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3079 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3080 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3081 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3082 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3083 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3084 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3085 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3086 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3087 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3088 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3089 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3090 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3091 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3092 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3093 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3094 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3095};
3096
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003097static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003098{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003099 /* Requirements for changing the default keymaps:
3100 *
3101 * 1. Many of the keys are mapped to KEY_RESERVED for very
3102 * good reasons. Do not change them unless you have deep
3103 * knowledge on the IBM and Lenovo ThinkPad firmware for
3104 * the various ThinkPad models. The driver behaves
3105 * differently for KEY_RESERVED: such keys have their
3106 * hot key mask *unset* in mask_recommended, and also
3107 * in the initial hot key mask programmed into the
3108 * firmware at driver load time, which means the firm-
3109 * ware may react very differently if you change them to
3110 * something else;
3111 *
3112 * 2. You must be subscribed to the linux-thinkpad and
3113 * ibm-acpi-devel mailing lists, and you should read the
3114 * list archives since 2007 if you want to change the
3115 * keymaps. This requirement exists so that you will
3116 * know the past history of problems with the thinkpad-
3117 * acpi driver keymaps, and also that you will be
3118 * listening to any bug reports;
3119 *
3120 * 3. Do not send thinkpad-acpi specific patches directly to
3121 * for merging, *ever*. Send them to the linux-acpi
3122 * mailinglist for comments. Merging is to be done only
3123 * through acpi-test and the ACPI maintainer.
3124 *
3125 * If the above is too much to ask, don't change the keymap.
3126 * Ask the thinkpad-acpi maintainer to do it, instead.
3127 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003128 static u16 ibm_keycode_map[] __initdata = {
3129 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3130 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
3131 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3132 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003133
3134 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003135 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3136 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3137 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003138
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003139 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003140 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003141 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003142
3143 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003144 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003145
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003146 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3147 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003148
3149 /* Volume: firmware always react to it and reprograms
3150 * the built-in *extra* mixer. Never map it to control
3151 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003152 KEY_RESERVED, /* 0x14: VOLUME UP */
3153 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3154 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003155
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003156 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003157
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003158 /* (assignments unknown, please report if found) */
3159 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3160 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3161 };
3162 static u16 lenovo_keycode_map[] __initdata = {
3163 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3164 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
3165 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3166 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003167
3168 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003169 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3170 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3171 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003172
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003173 /* These should be enabled --only-- when ACPI video
3174 * is disabled (i.e. in "vendor" mode), and are handled
3175 * in a special way by the init code */
3176 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3177 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003178
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003179 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003180
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003181 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3182 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003183
3184 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3185 * react to it and reprograms the built-in *extra* mixer.
3186 * Never map it to control another mixer by default.
3187 *
3188 * T60?, T61, R60?, R61: firmware and EC tries to send
3189 * these over the regular keyboard, so these are no-ops,
3190 * but there are still weird bugs re. MUTE, so do not
3191 * change unless you get test reports from all Lenovo
3192 * models. May cause the BIOS to interfere with the
3193 * HDA mixer.
3194 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003195 KEY_RESERVED, /* 0x14: VOLUME UP */
3196 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3197 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003198
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003199 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003200
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003201 /* (assignments unknown, please report if found) */
3202 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3203 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3204 };
3205
3206#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
3207#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
3208#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
3209
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003210 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003211 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003212 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003213 bool radiosw_state = false;
3214 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003215
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003216 unsigned long quirks;
3217
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003218 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3219 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003220
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003221 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003222 BUG_ON(tpacpi_inputdev->open != NULL ||
3223 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003224
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003225 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003226 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003227
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003228#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3229 mutex_init(&hotkey_thread_mutex);
3230 mutex_init(&hotkey_thread_data_mutex);
3231#endif
3232
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003233 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003234 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003235
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003236 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3237 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003238 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003239
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003240 if (!tp_features.hotkey)
3241 return 1;
3242
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003243 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3244 ARRAY_SIZE(tpacpi_hotkey_qtable));
3245
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003246 tpacpi_disable_brightness_delay();
3247
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003248 /* MUST have enough space for all attributes to be added to
3249 * hotkey_dev_attributes */
3250 hotkey_dev_attributes = create_attr_set(
3251 ARRAY_SIZE(hotkey_attributes) + 2,
3252 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003253 if (!hotkey_dev_attributes)
3254 return -ENOMEM;
3255 res = add_many_to_attr_set(hotkey_dev_attributes,
3256 hotkey_attributes,
3257 ARRAY_SIZE(hotkey_attributes));
3258 if (res)
3259 goto err_exit;
3260
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003261 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003262 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3263 for HKEY interface version 0x100 */
3264 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3265 if ((hkeyv >> 8) != 1) {
3266 printk(TPACPI_ERR "unknown version of the "
3267 "HKEY interface: 0x%x\n", hkeyv);
3268 printk(TPACPI_ERR "please report this to %s\n",
3269 TPACPI_MAIL);
3270 } else {
3271 /*
3272 * MHKV 0x100 in A31, R40, R40e,
3273 * T4x, X31, and later
3274 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003275 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3276 "firmware HKEY interface version: 0x%x\n",
3277 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003278
3279 /* Paranoia check AND init hotkey_all_mask */
3280 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3281 "MHKA", "qd")) {
3282 printk(TPACPI_ERR
3283 "missing MHKA handler, "
3284 "please report this to %s\n",
3285 TPACPI_MAIL);
3286 /* Fallback: pre-init for FN+F3,F4,F12 */
3287 hotkey_all_mask = 0x080cU;
3288 } else {
3289 tp_features.hotkey_mask = 1;
3290 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003291 }
3292 }
3293
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003294 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3295 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003296 str_supported(tp_features.hotkey_mask));
3297
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003298 /* Init hotkey_all_mask if not initialized yet */
3299 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3300 (quirks & TPACPI_HK_Q_INIMASK))
3301 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003302
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003303 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003304 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003305 /* hotkey_source_mask *must* be zero for
3306 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003307 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003308 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003309 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003310
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003311 hotkey_orig_mask = hotkey_acpi_mask;
3312 } else {
3313 hotkey_orig_mask = hotkey_all_mask;
3314 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003315 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003316
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003317#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3318 if (dbg_wlswemul) {
3319 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003320 radiosw_state = !!tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003321 printk(TPACPI_INFO
3322 "radio switch emulation enabled\n");
3323 } else
3324#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003325 /* Not all thinkpads have a hardware radio switch */
3326 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3327 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003328 radiosw_state = !!status;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003329 printk(TPACPI_INFO
3330 "radio switch found; radios are %s\n",
3331 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003332 }
3333 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003334 res = add_to_attr_set(hotkey_dev_attributes,
3335 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003336
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003337 /* For X41t, X60t, X61t Tablets... */
3338 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3339 tp_features.hotkey_tablet = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003340 tabletsw_state = !!(status & TP_HOTKEY_TABLET_MASK);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003341 printk(TPACPI_INFO
3342 "possible tablet mode switch found; "
3343 "ThinkPad in %s mode\n",
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003344 (tabletsw_state) ? "tablet" : "laptop");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003345 res = add_to_attr_set(hotkey_dev_attributes,
3346 &dev_attr_hotkey_tablet_mode.attr);
3347 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003348
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003349 if (!res)
3350 res = register_attr_set_with_sysfs(
3351 hotkey_dev_attributes,
3352 &tpacpi_pdev->dev.kobj);
3353 if (res)
3354 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003355
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003356 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003357
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003358 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3359 GFP_KERNEL);
3360 if (!hotkey_keycode_map) {
3361 printk(TPACPI_ERR
3362 "failed to allocate memory for key map\n");
3363 res = -ENOMEM;
3364 goto err_exit;
3365 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003366
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03003367 if (tpacpi_is_lenovo()) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003368 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003369 "using Lenovo default hot key map\n");
3370 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3371 TPACPI_HOTKEY_MAP_SIZE);
3372 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003373 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003374 "using IBM default hot key map\n");
3375 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3376 TPACPI_HOTKEY_MAP_SIZE);
3377 }
3378
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003379 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003380 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3381 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3382 tpacpi_inputdev->keycode = hotkey_keycode_map;
3383 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3384 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003385 input_set_capability(tpacpi_inputdev, EV_KEY,
3386 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003387 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003388 if (i < sizeof(hotkey_reserved_mask)*8)
3389 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003390 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003391 }
3392
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003393 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003394 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003395 input_report_switch(tpacpi_inputdev,
3396 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003397 }
3398 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003399 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003400 input_report_switch(tpacpi_inputdev,
3401 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003402 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003403
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003404 /* Do not issue duplicate brightness change events to
3405 * userspace */
3406 if (!tp_features.bright_acpimode)
3407 /* update bright_acpimode... */
3408 tpacpi_check_std_acpi_brightness_support();
3409
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003410 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003411 printk(TPACPI_INFO
3412 "This ThinkPad has standard ACPI backlight "
3413 "brightness control, supported by the ACPI "
3414 "video driver\n");
3415 printk(TPACPI_NOTICE
3416 "Disabling thinkpad-acpi brightness events "
3417 "by default...\n");
3418
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003419 /* Disable brightness up/down on Lenovo thinkpads when
3420 * ACPI is handling them, otherwise it is plain impossible
3421 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003422 hotkey_reserved_mask |=
3423 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3424 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003425 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3426 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003427 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003428
Henrique de Moraes Holschuh230d8cf2009-09-12 15:22:17 -03003429#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003430 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3431 & ~hotkey_all_mask
3432 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf2009-09-12 15:22:17 -03003433
3434 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3435 "hotkey source mask 0x%08x, polling freq %u\n",
3436 hotkey_source_mask, hotkey_poll_freq);
3437#endif
3438
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003439 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3440 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003441 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003442 if (res) {
3443 hotkey_exit();
3444 return res;
3445 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003446 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3447 | hotkey_driver_mask)
3448 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003449 if (res < 0 && res != -ENXIO) {
3450 hotkey_exit();
3451 return res;
3452 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003453 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3454 & ~hotkey_reserved_mask;
3455 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3456 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3457 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003458
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003459 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3460 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003461 (hotkey_report_mode < 2) ?
3462 "enabled" : "disabled");
3463
3464 tpacpi_inputdev->open = &hotkey_inputdev_open;
3465 tpacpi_inputdev->close = &hotkey_inputdev_close;
3466
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003467 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003468
3469 return 0;
3470
3471err_exit:
3472 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3473 hotkey_dev_attributes = NULL;
3474
3475 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003476}
3477
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003478static bool hotkey_notify_hotkey(const u32 hkey,
3479 bool *send_acpi_ev,
3480 bool *ignore_acpi_ev)
3481{
3482 /* 0x1000-0x1FFF: key presses */
3483 unsigned int scancode = hkey & 0xfff;
3484 *send_acpi_ev = true;
3485 *ignore_acpi_ev = false;
3486
3487 if (scancode > 0 && scancode < 0x21) {
3488 scancode--;
3489 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003490 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003491 *send_acpi_ev = false;
3492 } else {
3493 *ignore_acpi_ev = true;
3494 }
3495 return true;
3496 }
3497 return false;
3498}
3499
3500static bool hotkey_notify_wakeup(const u32 hkey,
3501 bool *send_acpi_ev,
3502 bool *ignore_acpi_ev)
3503{
3504 /* 0x2000-0x2FFF: Wakeup reason */
3505 *send_acpi_ev = true;
3506 *ignore_acpi_ev = false;
3507
3508 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003509 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3510 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003511 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3512 *ignore_acpi_ev = true;
3513 break;
3514
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003515 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3516 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003517 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3518 *ignore_acpi_ev = true;
3519 break;
3520
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003521 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3522 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003523 printk(TPACPI_ALERT
3524 "EMERGENCY WAKEUP: battery almost empty\n");
3525 /* how to auto-heal: */
3526 /* 2313: woke up from S3, go to S4/S5 */
3527 /* 2413: woke up from S4, go to S5 */
3528 break;
3529
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003530 default:
3531 return false;
3532 }
3533
3534 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3535 printk(TPACPI_INFO
3536 "woke up due to a hot-unplug "
3537 "request...\n");
3538 hotkey_wakeup_reason_notify_change();
3539 }
3540 return true;
3541}
3542
3543static bool hotkey_notify_usrevent(const u32 hkey,
3544 bool *send_acpi_ev,
3545 bool *ignore_acpi_ev)
3546{
3547 /* 0x5000-0x5FFF: human interface helpers */
3548 *send_acpi_ev = true;
3549 *ignore_acpi_ev = false;
3550
3551 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003552 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3553 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003554 return true;
3555
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003556 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3557 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003558 tpacpi_input_send_tabletsw();
3559 hotkey_tablet_mode_notify_change();
3560 *send_acpi_ev = false;
3561 return true;
3562
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003563 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3564 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3565 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003566 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003567 *ignore_acpi_ev = true;
3568 return true;
3569
3570 default:
3571 return false;
3572 }
3573}
3574
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003575static void thermal_dump_all_sensors(void);
3576
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003577static bool hotkey_notify_thermal(const u32 hkey,
3578 bool *send_acpi_ev,
3579 bool *ignore_acpi_ev)
3580{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003581 bool known = true;
3582
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003583 /* 0x6000-0x6FFF: thermal alarms */
3584 *send_acpi_ev = true;
3585 *ignore_acpi_ev = false;
3586
3587 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003588 case TP_HKEY_EV_THM_TABLE_CHANGED:
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003589 printk(TPACPI_INFO
3590 "EC reports that Thermal Table has changed\n");
3591 /* recommended action: do nothing, we don't have
3592 * Lenovo ATM information */
3593 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003594 case TP_HKEY_EV_ALARM_BAT_HOT:
3595 printk(TPACPI_CRIT
3596 "THERMAL ALARM: battery is too hot!\n");
3597 /* recommended action: warn user through gui */
3598 break;
3599 case TP_HKEY_EV_ALARM_BAT_XHOT:
3600 printk(TPACPI_ALERT
3601 "THERMAL EMERGENCY: battery is extremely hot!\n");
3602 /* recommended action: immediate sleep/hibernate */
3603 break;
3604 case TP_HKEY_EV_ALARM_SENSOR_HOT:
3605 printk(TPACPI_CRIT
3606 "THERMAL ALARM: "
3607 "a sensor reports something is too hot!\n");
3608 /* recommended action: warn user through gui, that */
3609 /* some internal component is too hot */
3610 break;
3611 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
3612 printk(TPACPI_ALERT
3613 "THERMAL EMERGENCY: "
3614 "a sensor reports something is extremely hot!\n");
3615 /* recommended action: immediate sleep/hibernate */
3616 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003617 default:
3618 printk(TPACPI_ALERT
3619 "THERMAL ALERT: unknown thermal alarm received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003620 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003621 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003622
3623 thermal_dump_all_sensors();
3624
3625 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003626}
3627
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003628static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3629{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003630 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003631 bool send_acpi_ev;
3632 bool ignore_acpi_ev;
3633 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003634
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003635 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003636 printk(TPACPI_ERR
3637 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003638 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003639 acpi_bus_generate_netlink_event(
3640 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003641 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003642 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003643 return;
3644 }
3645
3646 while (1) {
3647 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003648 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003649 return;
3650 }
3651
3652 if (hkey == 0) {
3653 /* queue empty */
3654 return;
3655 }
3656
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003657 send_acpi_ev = true;
3658 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003659
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003660 switch (hkey >> 12) {
3661 case 1:
3662 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003663 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3664 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003665 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003666 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003667 /* 0x2000-0x2FFF: Wakeup reason */
3668 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3669 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003670 break;
3671 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003672 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003673 switch (hkey) {
3674 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003675 hotkey_autosleep_ack = 1;
3676 printk(TPACPI_INFO
3677 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003678 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003679 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003680 break;
3681 case TP_HKEY_EV_OPTDRV_EJ:
3682 /* FIXME: kick libata if SATA link offline */
3683 known_ev = true;
3684 break;
3685 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003686 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003687 }
3688 break;
3689 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003690 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003691 if (hkey == TP_HKEY_EV_UNDOCK_ACK) {
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003692 hotkey_autosleep_ack = 1;
3693 printk(TPACPI_INFO
3694 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003695 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003696 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003697 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003698 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003699 }
3700 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003701 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003702 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003703 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3704 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003705 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003706 case 6:
3707 /* 0x6000-0x6FFF: thermal alarms */
3708 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3709 &ignore_acpi_ev);
3710 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003711 case 7:
3712 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003713 if (tp_features.hotkey_wlsw &&
3714 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003715 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003716 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003717 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003718 break;
3719 }
3720 /* fallthrough to default */
3721 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003722 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003723 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003724 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003725 printk(TPACPI_NOTICE
3726 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003727 printk(TPACPI_NOTICE
3728 "please report the conditions when this "
3729 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003730 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003731
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003732 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003733 if (!ignore_acpi_ev &&
3734 (send_acpi_ev || hotkey_report_mode < 2)) {
3735 acpi_bus_generate_proc_event(ibm->acpi->device,
3736 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003737 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003738
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003739 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003740 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003741 acpi_bus_generate_netlink_event(
3742 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003743 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003744 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003745 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003746 }
3747}
3748
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003749static void hotkey_suspend(pm_message_t state)
3750{
3751 /* Do these on suspend, we get the events on early resume! */
3752 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3753 hotkey_autosleep_ack = 0;
3754}
3755
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003756static void hotkey_resume(void)
3757{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003758 tpacpi_disable_brightness_delay();
3759
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003760 if (hotkey_status_set(true) < 0 ||
3761 hotkey_mask_set(hotkey_acpi_mask) < 0)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003762 printk(TPACPI_ERR
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003763 "error while attempting to reset the event "
3764 "firmware interface\n");
3765
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003766 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003767 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003768 hotkey_wakeup_reason_notify_change();
3769 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003770 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003771}
3772
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003773/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003774static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003776 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003778 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003779 seq_printf(m, "status:\t\tnot supported\n");
3780 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003781 }
3782
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003783 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003784 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003785 res = hotkey_status_get(&status);
3786 if (!res)
3787 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003788 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003789 if (res)
3790 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003792 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003793 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003794 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
3795 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003797 seq_printf(m, "mask:\t\tnot supported\n");
3798 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 }
3800
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802}
3803
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003804static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003805{
3806 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003807 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3808 TPACPI_WARN
3809 "hotkey enable/disable functionality has been "
3810 "removed from the driver. Hotkeys are always "
3811 "enabled\n"))
3812 printk(TPACPI_ERR
3813 "Please remove the hotkey=enable module "
3814 "parameter, it is deprecated. Hotkeys are always "
3815 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003816}
3817
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003818static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003820 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003821 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003824 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 return -ENODEV;
3826
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003827 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003828 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003829
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003830 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003831
3832 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 while ((cmd = next_cmd(&buf))) {
3834 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003835 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003837 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003838 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003840 mask = (hotkey_all_mask | hotkey_source_mask)
3841 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3843 /* mask set */
3844 } else if (sscanf(cmd, "%x", &mask) == 1) {
3845 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003846 } else {
3847 res = -EINVAL;
3848 goto errexit;
3849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003851
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003852 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003853 tpacpi_disclose_usertask("procfs hotkey",
3854 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003855 res = hotkey_user_mask_set(mask);
3856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003858errexit:
3859 mutex_unlock(&hotkey_mutex);
3860 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003861}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003863static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003864 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003865 {"", 0},
3866};
3867
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003868static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003869 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003870 .notify = hotkey_notify,
3871 .handle = &hkey_handle,
3872 .type = ACPI_DEVICE_NOTIFY,
3873};
3874
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003875static struct ibm_struct hotkey_driver_data = {
3876 .name = "hotkey",
3877 .read = hotkey_read,
3878 .write = hotkey_write,
3879 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003880 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003881 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003882 .acpi = &ibm_hotkey_acpidriver,
3883};
3884
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003885/*************************************************************************
3886 * Bluetooth subdriver
3887 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003889enum {
3890 /* ACPI GBDC/SBDC bits */
3891 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3892 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003893 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003894 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003895};
3896
3897enum {
3898 /* ACPI \BLTH commands */
3899 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3900 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3901 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3902 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3903 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003904};
3905
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003906#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3907
Johannes Berg19d337d2009-06-02 13:01:37 +02003908static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003909{
3910 int status;
3911
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003912#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3913 if (dbg_bluetoothemul)
3914 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003915 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003916#endif
3917
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003918 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3919 return -EIO;
3920
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003921 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003922 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003923}
3924
Johannes Berg19d337d2009-06-02 13:01:37 +02003925static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003926{
3927 int status;
3928
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003929 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003930 "will attempt to %s bluetooth\n",
3931 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003932
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003933#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3934 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003935 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003936 return 0;
3937 }
3938#endif
3939
Johannes Berg19d337d2009-06-02 13:01:37 +02003940 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003941 status = TP_ACPI_BLUETOOTH_RADIOSSW
3942 | TP_ACPI_BLUETOOTH_RESUMECTRL;
3943 else
3944 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003945
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003946 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3947 return -EIO;
3948
3949 return 0;
3950}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003951
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003952/* sysfs bluetooth enable ---------------------------------------------- */
3953static ssize_t bluetooth_enable_show(struct device *dev,
3954 struct device_attribute *attr,
3955 char *buf)
3956{
Johannes Berg19d337d2009-06-02 13:01:37 +02003957 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3958 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003959}
3960
3961static ssize_t bluetooth_enable_store(struct device *dev,
3962 struct device_attribute *attr,
3963 const char *buf, size_t count)
3964{
Johannes Berg19d337d2009-06-02 13:01:37 +02003965 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3966 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003967}
3968
3969static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003970 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003971 bluetooth_enable_show, bluetooth_enable_store);
3972
3973/* --------------------------------------------------------------------- */
3974
3975static struct attribute *bluetooth_attributes[] = {
3976 &dev_attr_bluetooth_enable.attr,
3977 NULL
3978};
3979
3980static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003981 .attrs = bluetooth_attributes,
3982};
3983
Johannes Berg19d337d2009-06-02 13:01:37 +02003984static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3985 .get_status = bluetooth_get_status,
3986 .set_status = bluetooth_set_status,
3987};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003988
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003989static void bluetooth_shutdown(void)
3990{
3991 /* Order firmware to save current state to NVRAM */
3992 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3993 TP_ACPI_BLTH_SAVE_STATE))
3994 printk(TPACPI_NOTICE
3995 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003996 else
3997 vdbg_printk(TPACPI_DBG_RFKILL,
3998 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003999}
4000
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004001static void bluetooth_exit(void)
4002{
4003 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4004 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004005
4006 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4007
4008 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004009}
4010
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004011static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004013 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004014 int status = 0;
4015
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004016 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4017 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004018
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004019 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004020
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004021 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4022 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004023 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004024 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004026 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4027 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004028 str_supported(tp_features.bluetooth),
4029 status);
4030
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004031#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4032 if (dbg_bluetoothemul) {
4033 tp_features.bluetooth = 1;
4034 printk(TPACPI_INFO
4035 "bluetooth switch emulation enabled\n");
4036 } else
4037#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004038 if (tp_features.bluetooth &&
4039 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4040 /* no bluetooth hardware present in system */
4041 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004042 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004043 "bluetooth hardware not installed\n");
4044 }
4045
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004046 if (!tp_features.bluetooth)
4047 return 1;
4048
Johannes Berg19d337d2009-06-02 13:01:37 +02004049 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4050 &bluetooth_tprfk_ops,
4051 RFKILL_TYPE_BLUETOOTH,
4052 TPACPI_RFK_BLUETOOTH_SW_NAME,
4053 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004054 if (res)
4055 return res;
4056
Johannes Berg19d337d2009-06-02 13:01:37 +02004057 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4058 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004059 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004060 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004061 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004062 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004063
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004064 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065}
4066
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004067/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004068static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004070 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071}
4072
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004073static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074{
Johannes Berg19d337d2009-06-02 13:01:37 +02004075 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076}
4077
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004078static struct ibm_struct bluetooth_driver_data = {
4079 .name = "bluetooth",
4080 .read = bluetooth_read,
4081 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004082 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004083 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004084};
4085
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004086/*************************************************************************
4087 * Wan subdriver
4088 */
4089
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004090enum {
4091 /* ACPI GWAN/SWAN bits */
4092 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4093 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004094 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004095 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004096};
4097
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004098#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4099
Johannes Berg19d337d2009-06-02 13:01:37 +02004100static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004101{
4102 int status;
4103
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004104#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4105 if (dbg_wwanemul)
4106 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004107 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004108#endif
4109
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004110 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4111 return -EIO;
4112
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004113 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004114 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004115}
4116
Johannes Berg19d337d2009-06-02 13:01:37 +02004117static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004118{
4119 int status;
4120
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004121 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004122 "will attempt to %s wwan\n",
4123 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004124
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004125#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4126 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004127 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004128 return 0;
4129 }
4130#endif
4131
Johannes Berg19d337d2009-06-02 13:01:37 +02004132 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004133 status = TP_ACPI_WANCARD_RADIOSSW
4134 | TP_ACPI_WANCARD_RESUMECTRL;
4135 else
4136 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004137
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004138 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4139 return -EIO;
4140
4141 return 0;
4142}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004143
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004144/* sysfs wan enable ---------------------------------------------------- */
4145static ssize_t wan_enable_show(struct device *dev,
4146 struct device_attribute *attr,
4147 char *buf)
4148{
Johannes Berg19d337d2009-06-02 13:01:37 +02004149 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4150 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004151}
4152
4153static ssize_t wan_enable_store(struct device *dev,
4154 struct device_attribute *attr,
4155 const char *buf, size_t count)
4156{
Johannes Berg19d337d2009-06-02 13:01:37 +02004157 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4158 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004159}
4160
4161static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004162 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004163 wan_enable_show, wan_enable_store);
4164
4165/* --------------------------------------------------------------------- */
4166
4167static struct attribute *wan_attributes[] = {
4168 &dev_attr_wan_enable.attr,
4169 NULL
4170};
4171
4172static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004173 .attrs = wan_attributes,
4174};
4175
Johannes Berg19d337d2009-06-02 13:01:37 +02004176static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4177 .get_status = wan_get_status,
4178 .set_status = wan_set_status,
4179};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004180
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004181static void wan_shutdown(void)
4182{
4183 /* Order firmware to save current state to NVRAM */
4184 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4185 TP_ACPI_WGSV_SAVE_STATE))
4186 printk(TPACPI_NOTICE
4187 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004188 else
4189 vdbg_printk(TPACPI_DBG_RFKILL,
4190 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004191}
4192
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004193static void wan_exit(void)
4194{
4195 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4196 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004197
4198 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4199
4200 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004201}
4202
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004203static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004204{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004205 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004206 int status = 0;
4207
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004208 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4209 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004210
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004211 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004212
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004213 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004214 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004215
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004216 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4217 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004218 str_supported(tp_features.wan),
4219 status);
4220
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004221#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4222 if (dbg_wwanemul) {
4223 tp_features.wan = 1;
4224 printk(TPACPI_INFO
4225 "wwan switch emulation enabled\n");
4226 } else
4227#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004228 if (tp_features.wan &&
4229 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4230 /* no wan hardware present in system */
4231 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004232 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004233 "wan hardware not installed\n");
4234 }
4235
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004236 if (!tp_features.wan)
4237 return 1;
4238
Johannes Berg19d337d2009-06-02 13:01:37 +02004239 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4240 &wan_tprfk_ops,
4241 RFKILL_TYPE_WWAN,
4242 TPACPI_RFK_WWAN_SW_NAME,
4243 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004244 if (res)
4245 return res;
4246
Johannes Berg19d337d2009-06-02 13:01:37 +02004247 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4248 &wan_attr_group);
4249
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004250 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004251 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004252 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004253 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004254
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004255 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004256}
4257
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004258/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004259static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004260{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004261 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004262}
4263
4264static int wan_write(char *buf)
4265{
Johannes Berg19d337d2009-06-02 13:01:37 +02004266 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004267}
4268
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004269static struct ibm_struct wan_driver_data = {
4270 .name = "wan",
4271 .read = wan_read,
4272 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004273 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004274 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004275};
4276
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004277/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004278 * UWB subdriver
4279 */
4280
4281enum {
4282 /* ACPI GUWB/SUWB bits */
4283 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4284 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4285};
4286
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004287#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4288
Johannes Berg19d337d2009-06-02 13:01:37 +02004289static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004290{
4291 int status;
4292
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004293#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4294 if (dbg_uwbemul)
4295 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004296 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004297#endif
4298
4299 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4300 return -EIO;
4301
4302 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004303 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004304}
4305
Johannes Berg19d337d2009-06-02 13:01:37 +02004306static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004307{
4308 int status;
4309
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004310 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004311 "will attempt to %s UWB\n",
4312 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004313
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004314#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4315 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004316 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004317 return 0;
4318 }
4319#endif
4320
Johannes Berg19d337d2009-06-02 13:01:37 +02004321 if (state == TPACPI_RFK_RADIO_ON)
4322 status = TP_ACPI_UWB_RADIOSSW;
4323 else
4324 status = 0;
4325
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004326 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4327 return -EIO;
4328
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004329 return 0;
4330}
4331
4332/* --------------------------------------------------------------------- */
4333
Johannes Berg19d337d2009-06-02 13:01:37 +02004334static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4335 .get_status = uwb_get_status,
4336 .set_status = uwb_set_status,
4337};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004338
4339static void uwb_exit(void)
4340{
Johannes Berg19d337d2009-06-02 13:01:37 +02004341 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004342}
4343
4344static int __init uwb_init(struct ibm_init_struct *iibm)
4345{
4346 int res;
4347 int status = 0;
4348
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004349 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4350 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004351
4352 TPACPI_ACPIHANDLE_INIT(hkey);
4353
4354 tp_features.uwb = hkey_handle &&
4355 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4356
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004357 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4358 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004359 str_supported(tp_features.uwb),
4360 status);
4361
4362#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4363 if (dbg_uwbemul) {
4364 tp_features.uwb = 1;
4365 printk(TPACPI_INFO
4366 "uwb switch emulation enabled\n");
4367 } else
4368#endif
4369 if (tp_features.uwb &&
4370 !(status & TP_ACPI_UWB_HWPRESENT)) {
4371 /* no uwb hardware present in system */
4372 tp_features.uwb = 0;
4373 dbg_printk(TPACPI_DBG_INIT,
4374 "uwb hardware not installed\n");
4375 }
4376
4377 if (!tp_features.uwb)
4378 return 1;
4379
4380 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004381 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004382 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004383 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004384 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004385 return res;
4386}
4387
4388static struct ibm_struct uwb_driver_data = {
4389 .name = "uwb",
4390 .exit = uwb_exit,
4391 .flags.experimental = 1,
4392};
4393
4394/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004395 * Video subdriver
4396 */
4397
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004398#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4399
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004400enum video_access_mode {
4401 TPACPI_VIDEO_NONE = 0,
4402 TPACPI_VIDEO_570, /* 570 */
4403 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4404 TPACPI_VIDEO_NEW, /* all others */
4405};
4406
4407enum { /* video status flags, based on VIDEO_570 */
4408 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4409 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4410 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4411};
4412
4413enum { /* TPACPI_VIDEO_570 constants */
4414 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4415 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4416 * video_status_flags */
4417 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4418 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4419};
4420
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004421static enum video_access_mode video_supported;
4422static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004423
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004424static int video_autosw_get(void);
4425static int video_autosw_set(int enable);
4426
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004427TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004428
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004429static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004431 int ivga;
4432
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004433 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4434
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004435 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004436 if (tpacpi_is_ibm())
4437 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004438
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004439 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4440 /* G41, assume IVGA doesn't change */
4441 vid_handle = vid2_handle;
4442
4443 if (!vid_handle)
4444 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004445 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004446 else if (tpacpi_is_ibm() &&
4447 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004448 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004449 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004450 else if (tpacpi_is_ibm() &&
4451 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004452 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004453 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004454 else
4455 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004456 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004458 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4459 str_supported(video_supported != TPACPI_VIDEO_NONE),
4460 video_supported);
4461
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004462 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463}
4464
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004465static void video_exit(void)
4466{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004467 dbg_printk(TPACPI_DBG_EXIT,
4468 "restoring original video autoswitch mode\n");
4469 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004470 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004471 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004472}
4473
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004474static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475{
4476 int status = 0;
4477 int i;
4478
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004479 switch (video_supported) {
4480 case TPACPI_VIDEO_570:
4481 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4482 TP_ACPI_VIDEO_570_PHSCMD))
4483 return -EIO;
4484 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4485 break;
4486 case TPACPI_VIDEO_770:
4487 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4488 return -EIO;
4489 if (i)
4490 status |= TP_ACPI_VIDEO_S_LCD;
4491 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4492 return -EIO;
4493 if (i)
4494 status |= TP_ACPI_VIDEO_S_CRT;
4495 break;
4496 case TPACPI_VIDEO_NEW:
4497 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4498 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4499 return -EIO;
4500 if (i)
4501 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004503 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4504 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4505 return -EIO;
4506 if (i)
4507 status |= TP_ACPI_VIDEO_S_LCD;
4508 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4509 return -EIO;
4510 if (i)
4511 status |= TP_ACPI_VIDEO_S_DVI;
4512 break;
4513 default:
4514 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
4517 return status;
4518}
4519
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004520static int video_outputsw_set(int status)
4521{
4522 int autosw;
4523 int res = 0;
4524
4525 switch (video_supported) {
4526 case TPACPI_VIDEO_570:
4527 res = acpi_evalf(NULL, NULL,
4528 "\\_SB.PHS2", "vdd",
4529 TP_ACPI_VIDEO_570_PHS2CMD,
4530 status | TP_ACPI_VIDEO_570_PHS2SET);
4531 break;
4532 case TPACPI_VIDEO_770:
4533 autosw = video_autosw_get();
4534 if (autosw < 0)
4535 return autosw;
4536
4537 res = video_autosw_set(1);
4538 if (res)
4539 return res;
4540 res = acpi_evalf(vid_handle, NULL,
4541 "ASWT", "vdd", status * 0x100, 0);
4542 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004543 printk(TPACPI_ERR
4544 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004545 return -EIO;
4546 }
4547 break;
4548 case TPACPI_VIDEO_NEW:
4549 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004550 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004551 break;
4552 default:
4553 return -ENOSYS;
4554 }
4555
4556 return (res)? 0 : -EIO;
4557}
4558
4559static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004561 int autosw = 0;
4562
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004563 switch (video_supported) {
4564 case TPACPI_VIDEO_570:
4565 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4566 return -EIO;
4567 break;
4568 case TPACPI_VIDEO_770:
4569 case TPACPI_VIDEO_NEW:
4570 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4571 return -EIO;
4572 break;
4573 default:
4574 return -ENOSYS;
4575 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004576
4577 return autosw & 1;
4578}
4579
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004580static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004581{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004582 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004583 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004584 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004585}
4586
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004587static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004588{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004589 int autosw = video_autosw_get();
4590 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004591
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004592 if (autosw < 0)
4593 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004594
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004595 switch (video_supported) {
4596 case TPACPI_VIDEO_570:
4597 res = video_autosw_set(1);
4598 if (res)
4599 return res;
4600 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4601 break;
4602 case TPACPI_VIDEO_770:
4603 case TPACPI_VIDEO_NEW:
4604 res = video_autosw_set(1);
4605 if (res)
4606 return res;
4607 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4608 break;
4609 default:
4610 return -ENOSYS;
4611 }
4612 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004613 printk(TPACPI_ERR
4614 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004615 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004616 }
4617
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004618 return (res)? 0 : -EIO;
4619}
4620
4621static int video_expand_toggle(void)
4622{
4623 switch (video_supported) {
4624 case TPACPI_VIDEO_570:
4625 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4626 0 : -EIO;
4627 case TPACPI_VIDEO_770:
4628 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4629 0 : -EIO;
4630 case TPACPI_VIDEO_NEW:
4631 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4632 0 : -EIO;
4633 default:
4634 return -ENOSYS;
4635 }
4636 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004637}
4638
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004639static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004640{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004641 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004642
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004643 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004644 seq_printf(m, "status:\t\tnot supported\n");
4645 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004646 }
4647
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004648 /* Even reads can crash X.org, so... */
4649 if (!capable(CAP_SYS_ADMIN))
4650 return -EPERM;
4651
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004652 status = video_outputsw_get();
4653 if (status < 0)
4654 return status;
4655
4656 autosw = video_autosw_get();
4657 if (autosw < 0)
4658 return autosw;
4659
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004660 seq_printf(m, "status:\t\tsupported\n");
4661 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4662 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004663 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004664 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4665 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4666 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4667 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004668 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004669 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4670 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4671 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004672
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004673 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004674}
4675
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004676static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677{
4678 char *cmd;
4679 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004680 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004682 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004683 return -ENODEV;
4684
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004685 /* Even reads can crash X.org, let alone writes... */
4686 if (!capable(CAP_SYS_ADMIN))
4687 return -EPERM;
4688
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004689 enable = 0;
4690 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
4692 while ((cmd = next_cmd(&buf))) {
4693 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004694 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004696 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004698 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004700 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004701 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004702 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004703 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004704 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004705 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004706 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004708 res = video_autosw_set(1);
4709 if (res)
4710 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004712 res = video_autosw_set(0);
4713 if (res)
4714 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004716 res = video_outputsw_cycle();
4717 if (res)
4718 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004720 res = video_expand_toggle();
4721 if (res)
4722 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 } else
4724 return -EINVAL;
4725 }
4726
4727 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004728 status = video_outputsw_get();
4729 if (status < 0)
4730 return status;
4731 res = video_outputsw_set((status & ~disable) | enable);
4732 if (res)
4733 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 }
4735
4736 return 0;
4737}
4738
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004739static struct ibm_struct video_driver_data = {
4740 .name = "video",
4741 .read = video_read,
4742 .write = video_write,
4743 .exit = video_exit,
4744};
4745
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004746#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4747
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004748/*************************************************************************
4749 * Light (thinklight) subdriver
4750 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004752TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4753TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004754
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004755static int light_get_status(void)
4756{
4757 int status = 0;
4758
4759 if (tp_features.light_status) {
4760 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4761 return -EIO;
4762 return (!!status);
4763 }
4764
4765 return -ENXIO;
4766}
4767
4768static int light_set_status(int status)
4769{
4770 int rc;
4771
4772 if (tp_features.light) {
4773 if (cmos_handle) {
4774 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4775 (status)?
4776 TP_CMOS_THINKLIGHT_ON :
4777 TP_CMOS_THINKLIGHT_OFF);
4778 } else {
4779 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4780 (status)? 1 : 0);
4781 }
4782 return (rc)? 0 : -EIO;
4783 }
4784
4785 return -ENXIO;
4786}
4787
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004788static void light_set_status_worker(struct work_struct *work)
4789{
4790 struct tpacpi_led_classdev *data =
4791 container_of(work, struct tpacpi_led_classdev, work);
4792
4793 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004794 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004795}
4796
4797static void light_sysfs_set(struct led_classdev *led_cdev,
4798 enum led_brightness brightness)
4799{
4800 struct tpacpi_led_classdev *data =
4801 container_of(led_cdev,
4802 struct tpacpi_led_classdev,
4803 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004804 data->new_state = (brightness != LED_OFF) ?
4805 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004806 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004807}
4808
4809static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4810{
4811 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4812}
4813
4814static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4815 .led_classdev = {
4816 .name = "tpacpi::thinklight",
4817 .brightness_set = &light_sysfs_set,
4818 .brightness_get = &light_sysfs_get,
4819 }
4820};
4821
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004822static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004824 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004825
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004826 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4827
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004828 if (tpacpi_is_ibm()) {
4829 TPACPI_ACPIHANDLE_INIT(ledb);
4830 TPACPI_ACPIHANDLE_INIT(lght);
4831 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004832 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004833 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004834
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004835 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004836 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004837
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004838 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004839 /* light status not supported on
4840 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004841 tp_features.light_status =
4842 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004844 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4845 str_supported(tp_features.light),
4846 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004847
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004848 if (!tp_features.light)
4849 return 1;
4850
4851 rc = led_classdev_register(&tpacpi_pdev->dev,
4852 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004853
4854 if (rc < 0) {
4855 tp_features.light = 0;
4856 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004857 } else {
4858 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004859 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004860
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004861 return rc;
4862}
4863
4864static void light_exit(void)
4865{
4866 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4867 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004868 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869}
4870
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004871static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004873 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004875 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004876 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004877 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004878 seq_printf(m, "status:\t\tunknown\n");
4879 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004880 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004881 status = light_get_status();
4882 if (status < 0)
4883 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004884 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
4885 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889}
4890
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004891static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004894 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004895
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004896 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004897 return -ENODEV;
4898
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 while ((cmd = next_cmd(&buf))) {
4900 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004901 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004903 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 } else
4905 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 }
4907
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004908 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909}
4910
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004911static struct ibm_struct light_driver_data = {
4912 .name = "light",
4913 .read = light_read,
4914 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004915 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004916};
4917
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004918/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004919 * CMOS subdriver
4920 */
4921
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004922/* sysfs cmos_command -------------------------------------------------- */
4923static ssize_t cmos_command_store(struct device *dev,
4924 struct device_attribute *attr,
4925 const char *buf, size_t count)
4926{
4927 unsigned long cmos_cmd;
4928 int res;
4929
4930 if (parse_strtoul(buf, 21, &cmos_cmd))
4931 return -EINVAL;
4932
4933 res = issue_thinkpad_cmos_command(cmos_cmd);
4934 return (res)? res : count;
4935}
4936
4937static struct device_attribute dev_attr_cmos_command =
4938 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4939
4940/* --------------------------------------------------------------------- */
4941
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004942static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004943{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004944 int res;
4945
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004946 vdbg_printk(TPACPI_DBG_INIT,
4947 "initializing cmos commands subdriver\n");
4948
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004949 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004950
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004951 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4952 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004953
4954 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4955 if (res)
4956 return res;
4957
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004958 return (cmos_handle)? 0 : 1;
4959}
4960
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004961static void cmos_exit(void)
4962{
4963 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4964}
4965
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004966static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004968 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4969 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004971 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004973 seq_printf(m, "status:\t\tsupported\n");
4974 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 }
4976
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978}
4979
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004980static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981{
4982 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004983 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
4985 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004986 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4987 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 /* cmos_cmd set */
4989 } else
4990 return -EINVAL;
4991
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004992 res = issue_thinkpad_cmos_command(cmos_cmd);
4993 if (res)
4994 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 }
4996
4997 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004998}
4999
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005000static struct ibm_struct cmos_driver_data = {
5001 .name = "cmos",
5002 .read = cmos_read,
5003 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005004 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005005};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005006
5007/*************************************************************************
5008 * LED subdriver
5009 */
5010
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005011enum led_access_mode {
5012 TPACPI_LED_NONE = 0,
5013 TPACPI_LED_570, /* 570 */
5014 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5015 TPACPI_LED_NEW, /* all others */
5016};
5017
5018enum { /* For TPACPI_LED_OLD */
5019 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5020 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5021 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5022};
5023
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005024static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005025
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005026TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005027 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
5028 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005029 "LED", /* all others */
5030 ); /* R30, R31 */
5031
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005032#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005033static struct tpacpi_led_classdev *tpacpi_leds;
5034static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005035static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005036 /* there's a limit of 19 chars + NULL before 2.6.26 */
5037 "tpacpi::power",
5038 "tpacpi:orange:batt",
5039 "tpacpi:green:batt",
5040 "tpacpi::dock_active",
5041 "tpacpi::bay_active",
5042 "tpacpi::dock_batt",
5043 "tpacpi::unknown_led",
5044 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005045 "tpacpi::dock_status1",
5046 "tpacpi::dock_status2",
5047 "tpacpi::unknown_led2",
5048 "tpacpi::unknown_led3",
5049 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005050};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005051#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005052
5053static inline bool tpacpi_is_led_restricted(const unsigned int led)
5054{
5055#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5056 return false;
5057#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005058 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005059#endif
5060}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005061
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005062static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005063{
5064 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005065 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005066
5067 switch (led_supported) {
5068 case TPACPI_LED_570:
5069 if (!acpi_evalf(ec_handle,
5070 &status, "GLED", "dd", 1 << led))
5071 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005072 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005073 TPACPI_LED_OFF :
5074 ((status == 1)?
5075 TPACPI_LED_ON :
5076 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005077 tpacpi_led_state_cache[led] = led_s;
5078 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005079 default:
5080 return -ENXIO;
5081 }
5082
5083 /* not reached */
5084}
5085
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005086static int led_set_status(const unsigned int led,
5087 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005088{
5089 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005090 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5091 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005092
5093 int rc = 0;
5094
5095 switch (led_supported) {
5096 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005097 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005098 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005099 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005100 if (unlikely(tpacpi_is_led_restricted(led)))
5101 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005102 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5103 (1 << led), led_sled_arg1[ledstatus]))
5104 rc = -EIO;
5105 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005106 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005107 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005108 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005109 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005110 if (unlikely(tpacpi_is_led_restricted(led)))
5111 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005112 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5113 if (rc >= 0)
5114 rc = ec_write(TPACPI_LED_EC_HLBL,
5115 (ledstatus == TPACPI_LED_BLINK) << led);
5116 if (rc >= 0)
5117 rc = ec_write(TPACPI_LED_EC_HLCL,
5118 (ledstatus != TPACPI_LED_OFF) << led);
5119 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005120 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005121 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005122 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5123 return -EINVAL;
5124 if (unlikely(tpacpi_is_led_restricted(led)))
5125 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005126 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5127 led, led_led_arg1[ledstatus]))
5128 rc = -EIO;
5129 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005130 default:
5131 rc = -ENXIO;
5132 }
5133
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005134 if (!rc)
5135 tpacpi_led_state_cache[led] = ledstatus;
5136
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005137 return rc;
5138}
5139
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005140static void led_set_status_worker(struct work_struct *work)
5141{
5142 struct tpacpi_led_classdev *data =
5143 container_of(work, struct tpacpi_led_classdev, work);
5144
5145 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005146 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005147}
5148
5149static void led_sysfs_set(struct led_classdev *led_cdev,
5150 enum led_brightness brightness)
5151{
5152 struct tpacpi_led_classdev *data = container_of(led_cdev,
5153 struct tpacpi_led_classdev, led_classdev);
5154
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005155 if (brightness == LED_OFF)
5156 data->new_state = TPACPI_LED_OFF;
5157 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5158 data->new_state = TPACPI_LED_ON;
5159 else
5160 data->new_state = TPACPI_LED_BLINK;
5161
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005162 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005163}
5164
5165static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5166 unsigned long *delay_on, unsigned long *delay_off)
5167{
5168 struct tpacpi_led_classdev *data = container_of(led_cdev,
5169 struct tpacpi_led_classdev, led_classdev);
5170
5171 /* Can we choose the flash rate? */
5172 if (*delay_on == 0 && *delay_off == 0) {
5173 /* yes. set them to the hardware blink rate (1 Hz) */
5174 *delay_on = 500; /* ms */
5175 *delay_off = 500; /* ms */
5176 } else if ((*delay_on != 500) || (*delay_off != 500))
5177 return -EINVAL;
5178
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005179 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005180 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005181
5182 return 0;
5183}
5184
5185static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5186{
5187 int rc;
5188
5189 struct tpacpi_led_classdev *data = container_of(led_cdev,
5190 struct tpacpi_led_classdev, led_classdev);
5191
5192 rc = led_get_status(data->led);
5193
5194 if (rc == TPACPI_LED_OFF || rc < 0)
5195 rc = LED_OFF; /* no error handling in led class :( */
5196 else
5197 rc = LED_FULL;
5198
5199 return rc;
5200}
5201
5202static void led_exit(void)
5203{
5204 unsigned int i;
5205
5206 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5207 if (tpacpi_leds[i].led_classdev.name)
5208 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5209 }
5210
5211 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005212}
5213
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005214static int __init tpacpi_init_led(unsigned int led)
5215{
5216 int rc;
5217
5218 tpacpi_leds[led].led = led;
5219
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005220 /* LEDs with no name don't get registered */
5221 if (!tpacpi_led_names[led])
5222 return 0;
5223
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005224 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5225 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5226 if (led_supported == TPACPI_LED_570)
5227 tpacpi_leds[led].led_classdev.brightness_get =
5228 &led_sysfs_get;
5229
5230 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5231
5232 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5233
5234 rc = led_classdev_register(&tpacpi_pdev->dev,
5235 &tpacpi_leds[led].led_classdev);
5236 if (rc < 0)
5237 tpacpi_leds[led].led_classdev.name = NULL;
5238
5239 return rc;
5240}
5241
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005242static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5243 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5244 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5245 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5246
5247 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5248 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5249 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5250 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5251 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5252 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5253 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5254 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5255
5256 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5257 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5258 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5259 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5260 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5261
5262 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5263 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5264 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5265 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5266
5267 /* (1) - may have excess leds enabled on MSB */
5268
5269 /* Defaults (order matters, keep last, don't reorder!) */
5270 { /* Lenovo */
5271 .vendor = PCI_VENDOR_ID_LENOVO,
5272 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5273 .quirks = 0x1fffU,
5274 },
5275 { /* IBM ThinkPads with no EC version string */
5276 .vendor = PCI_VENDOR_ID_IBM,
5277 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5278 .quirks = 0x00ffU,
5279 },
5280 { /* IBM ThinkPads with EC version string */
5281 .vendor = PCI_VENDOR_ID_IBM,
5282 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5283 .quirks = 0x00bfU,
5284 },
5285};
5286
5287#undef TPACPI_LEDQ_IBM
5288#undef TPACPI_LEDQ_LNV
5289
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005290static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005291{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005292 unsigned int i;
5293 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005294 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005295
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005296 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5297
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005298 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005299
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005300 if (!led_handle)
5301 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005302 led_supported = TPACPI_LED_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005303 else if (tpacpi_is_ibm() && strlencmp(led_path, "SLED") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005304 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005305 led_supported = TPACPI_LED_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005306 else if (tpacpi_is_ibm() && strlencmp(led_path, "SYSL") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005307 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005308 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005309 else
5310 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005311 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005312
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005313 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5314 str_supported(led_supported), led_supported);
5315
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005316 if (led_supported == TPACPI_LED_NONE)
5317 return 1;
5318
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005319 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5320 GFP_KERNEL);
5321 if (!tpacpi_leds) {
5322 printk(TPACPI_ERR "Out of memory for LED data\n");
5323 return -ENOMEM;
5324 }
5325
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005326 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5327 ARRAY_SIZE(led_useful_qtable));
5328
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005329 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005330 if (!tpacpi_is_led_restricted(i) &&
5331 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005332 rc = tpacpi_init_led(i);
5333 if (rc < 0) {
5334 led_exit();
5335 return rc;
5336 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005337 }
5338 }
5339
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005340#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005341 printk(TPACPI_NOTICE
5342 "warning: userspace override of important "
5343 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005344#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005345 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005346}
5347
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005348#define str_led_status(s) \
5349 ((s) == TPACPI_LED_OFF ? "off" : \
5350 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005351
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005352static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005354 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005355 seq_printf(m, "status:\t\tnot supported\n");
5356 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005357 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005358 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005359
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005360 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005361 /* 570 */
5362 int i, status;
5363 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005364 status = led_get_status(i);
5365 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005366 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005367 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005368 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005369 }
5370 }
5371
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005372 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005373 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376}
5377
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005378static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379{
5380 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005381 int led, rc;
5382 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005383
5384 if (!led_supported)
5385 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005388 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 return -EINVAL;
5390
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005391 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005392 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005394 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005395 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005396 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005397 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005398 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005399 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005400
5401 rc = led_set_status(led, s);
5402 if (rc < 0)
5403 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 }
5405
5406 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005407}
5408
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005409static struct ibm_struct led_driver_data = {
5410 .name = "led",
5411 .read = led_read,
5412 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005413 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005414};
5415
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005416/*************************************************************************
5417 * Beep subdriver
5418 */
5419
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005420TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005421
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005422#define TPACPI_BEEP_Q1 0x0001
5423
5424static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5425 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5426 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5427};
5428
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005429static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005430{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005431 unsigned long quirks;
5432
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005433 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5434
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005435 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005436
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005437 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5438 str_supported(beep_handle != NULL));
5439
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005440 quirks = tpacpi_check_quirks(beep_quirk_table,
5441 ARRAY_SIZE(beep_quirk_table));
5442
5443 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5444
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005445 return (beep_handle)? 0 : 1;
5446}
5447
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005448static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005450 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005451 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005452 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005453 seq_printf(m, "status:\t\tsupported\n");
5454 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458}
5459
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005460static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461{
5462 char *cmd;
5463 int beep_cmd;
5464
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005465 if (!beep_handle)
5466 return -ENODEV;
5467
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005469 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5470 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 /* beep_cmd set */
5472 } else
5473 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005474 if (tp_features.beep_needs_two_args) {
5475 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5476 beep_cmd, 0))
5477 return -EIO;
5478 } else {
5479 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5480 beep_cmd))
5481 return -EIO;
5482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 }
5484
5485 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005486}
5487
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005488static struct ibm_struct beep_driver_data = {
5489 .name = "beep",
5490 .read = beep_read,
5491 .write = beep_write,
5492};
5493
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005494/*************************************************************************
5495 * Thermal subdriver
5496 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005497
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005498enum thermal_access_mode {
5499 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5500 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5501 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5502 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5503 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5504};
5505
5506enum { /* TPACPI_THERMAL_TPEC_* */
5507 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5508 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5509 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005510
5511 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005512};
5513
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005514
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005515#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5516struct ibm_thermal_sensors_struct {
5517 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5518};
5519
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005520static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005521
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005522/* idx is zero-based */
5523static int thermal_get_sensor(int idx, s32 *value)
5524{
5525 int t;
5526 s8 tmp;
5527 char tmpi[5];
5528
5529 t = TP_EC_THERMAL_TMP0;
5530
5531 switch (thermal_read_mode) {
5532#if TPACPI_MAX_THERMAL_SENSORS >= 16
5533 case TPACPI_THERMAL_TPEC_16:
5534 if (idx >= 8 && idx <= 15) {
5535 t = TP_EC_THERMAL_TMP8;
5536 idx -= 8;
5537 }
5538 /* fallthrough */
5539#endif
5540 case TPACPI_THERMAL_TPEC_8:
5541 if (idx <= 7) {
5542 if (!acpi_ec_read(t + idx, &tmp))
5543 return -EIO;
5544 *value = tmp * 1000;
5545 return 0;
5546 }
5547 break;
5548
5549 case TPACPI_THERMAL_ACPI_UPDT:
5550 if (idx <= 7) {
5551 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5552 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5553 return -EIO;
5554 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5555 return -EIO;
5556 *value = (t - 2732) * 100;
5557 return 0;
5558 }
5559 break;
5560
5561 case TPACPI_THERMAL_ACPI_TMP07:
5562 if (idx <= 7) {
5563 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5564 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5565 return -EIO;
5566 if (t > 127 || t < -127)
5567 t = TP_EC_THERMAL_TMP_NA;
5568 *value = t * 1000;
5569 return 0;
5570 }
5571 break;
5572
5573 case TPACPI_THERMAL_NONE:
5574 default:
5575 return -ENOSYS;
5576 }
5577
5578 return -EINVAL;
5579}
5580
5581static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5582{
5583 int res, i;
5584 int n;
5585
5586 n = 8;
5587 i = 0;
5588
5589 if (!s)
5590 return -EINVAL;
5591
5592 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5593 n = 16;
5594
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005595 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005596 res = thermal_get_sensor(i, &s->temp[i]);
5597 if (res)
5598 return res;
5599 }
5600
5601 return n;
5602}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005603
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005604static void thermal_dump_all_sensors(void)
5605{
5606 int n, i;
5607 struct ibm_thermal_sensors_struct t;
5608
5609 n = thermal_get_sensors(&t);
5610 if (n <= 0)
5611 return;
5612
5613 printk(TPACPI_NOTICE
5614 "temperatures (Celsius):");
5615
5616 for (i = 0; i < n; i++) {
5617 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
5618 printk(KERN_CONT " %d", (int)(t.temp[i] / 1000));
5619 else
5620 printk(KERN_CONT " N/A");
5621 }
5622
5623 printk(KERN_CONT "\n");
5624}
5625
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005626/* sysfs temp##_input -------------------------------------------------- */
5627
5628static ssize_t thermal_temp_input_show(struct device *dev,
5629 struct device_attribute *attr,
5630 char *buf)
5631{
5632 struct sensor_device_attribute *sensor_attr =
5633 to_sensor_dev_attr(attr);
5634 int idx = sensor_attr->index;
5635 s32 value;
5636 int res;
5637
5638 res = thermal_get_sensor(idx, &value);
5639 if (res)
5640 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005641 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005642 return -ENXIO;
5643
5644 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5645}
5646
5647#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005648 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5649 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005650
5651static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5652 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5653 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5654 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5655 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5656 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5657 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5658 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5659 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5660 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5661 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5662 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5663 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5664 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5665 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5666 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5667 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5668};
5669
5670#define THERMAL_ATTRS(X) \
5671 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5672
5673static struct attribute *thermal_temp_input_attr[] = {
5674 THERMAL_ATTRS(8),
5675 THERMAL_ATTRS(9),
5676 THERMAL_ATTRS(10),
5677 THERMAL_ATTRS(11),
5678 THERMAL_ATTRS(12),
5679 THERMAL_ATTRS(13),
5680 THERMAL_ATTRS(14),
5681 THERMAL_ATTRS(15),
5682 THERMAL_ATTRS(0),
5683 THERMAL_ATTRS(1),
5684 THERMAL_ATTRS(2),
5685 THERMAL_ATTRS(3),
5686 THERMAL_ATTRS(4),
5687 THERMAL_ATTRS(5),
5688 THERMAL_ATTRS(6),
5689 THERMAL_ATTRS(7),
5690 NULL
5691};
5692
5693static const struct attribute_group thermal_temp_input16_group = {
5694 .attrs = thermal_temp_input_attr
5695};
5696
5697static const struct attribute_group thermal_temp_input8_group = {
5698 .attrs = &thermal_temp_input_attr[8]
5699};
5700
5701#undef THERMAL_SENSOR_ATTR_TEMP
5702#undef THERMAL_ATTRS
5703
5704/* --------------------------------------------------------------------- */
5705
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005706static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005707{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005708 u8 t, ta1, ta2;
5709 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005710 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005711 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005712
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005713 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5714
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005715 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005716
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005717 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005718 /*
5719 * Direct EC access mode: sensors at registers
5720 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5721 * non-implemented, thermal sensors return 0x80 when
5722 * not available
5723 */
5724
5725 ta1 = ta2 = 0;
5726 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005727 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005728 ta1 |= t;
5729 } else {
5730 ta1 = 0;
5731 break;
5732 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005733 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005734 ta2 |= t;
5735 } else {
5736 ta1 = 0;
5737 break;
5738 }
5739 }
5740 if (ta1 == 0) {
5741 /* This is sheer paranoia, but we handle it anyway */
5742 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005743 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005744 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005745 "falling back to ACPI TMPx access "
5746 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005747 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005748 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005749 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005750 "ThinkPad ACPI EC access misbehaving, "
5751 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005752 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005753 }
5754 } else {
5755 thermal_read_mode =
5756 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005757 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005758 }
5759 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005760 if (tpacpi_is_ibm() &&
5761 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005762 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005763 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005764 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005765 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005766 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005767 }
5768 } else {
5769 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005770 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005771 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005772
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005773 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5774 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5775 thermal_read_mode);
5776
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005777 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005778 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005779 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005780 &thermal_temp_input16_group);
5781 if (res)
5782 return res;
5783 break;
5784 case TPACPI_THERMAL_TPEC_8:
5785 case TPACPI_THERMAL_ACPI_TMP07:
5786 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005787 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005788 &thermal_temp_input8_group);
5789 if (res)
5790 return res;
5791 break;
5792 case TPACPI_THERMAL_NONE:
5793 default:
5794 return 1;
5795 }
5796
5797 return 0;
5798}
5799
5800static void thermal_exit(void)
5801{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005802 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005803 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005804 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005805 &thermal_temp_input16_group);
5806 break;
5807 case TPACPI_THERMAL_TPEC_8:
5808 case TPACPI_THERMAL_ACPI_TMP07:
5809 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005810 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08005811 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005812 break;
5813 case TPACPI_THERMAL_NONE:
5814 default:
5815 break;
5816 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005817}
5818
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005819static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005820{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005821 int n, i;
5822 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005823
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005824 n = thermal_get_sensors(&t);
5825 if (unlikely(n < 0))
5826 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005827
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005828 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005829
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005830 if (n > 0) {
5831 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005832 seq_printf(m, "%d ", t.temp[i] / 1000);
5833 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005834 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005835 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005836
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005837 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005838}
5839
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005840static struct ibm_struct thermal_driver_data = {
5841 .name = "thermal",
5842 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005843 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005844};
5845
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005846/*************************************************************************
5847 * EC Dump subdriver
5848 */
5849
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005850static u8 ecdump_regs[256];
5851
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005852static int ecdump_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005853{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005854 int i, j;
5855 u8 v;
5856
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005857 seq_printf(m, "EC "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005858 " +00 +01 +02 +03 +04 +05 +06 +07"
5859 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5860 for (i = 0; i < 256; i += 16) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005861 seq_printf(m, "EC 0x%02x:", i);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005862 for (j = 0; j < 16; j++) {
5863 if (!acpi_ec_read(i + j, &v))
5864 break;
5865 if (v != ecdump_regs[i + j])
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005866 seq_printf(m, " *%02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005867 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005868 seq_printf(m, " %02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005869 ecdump_regs[i + j] = v;
5870 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005871 seq_putc(m, '\n');
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005872 if (j != 16)
5873 break;
5874 }
5875
5876 /* These are way too dangerous to advertise openly... */
5877#if 0
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005878 seq_printf(m, "commands:\t0x<offset> 0x<value>"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005879 " (<offset> is 00-ff, <value> is 00-ff)\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005880 seq_printf(m, "commands:\t0x<offset> <value> "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005881 " (<offset> is 00-ff, <value> is 0-255)\n");
5882#endif
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005883 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005884}
5885
5886static int ecdump_write(char *buf)
5887{
5888 char *cmd;
5889 int i, v;
5890
5891 while ((cmd = next_cmd(&buf))) {
5892 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5893 /* i and v set */
5894 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5895 /* i and v set */
5896 } else
5897 return -EINVAL;
5898 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5899 if (!acpi_ec_write(i, v))
5900 return -EIO;
5901 } else
5902 return -EINVAL;
5903 }
5904
5905 return 0;
5906}
5907
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005908static struct ibm_struct ecdump_driver_data = {
5909 .name = "ecdump",
5910 .read = ecdump_read,
5911 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005912 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005913};
5914
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005915/*************************************************************************
5916 * Backlight/brightness subdriver
5917 */
Holger Macht8acb0252006-10-20 14:30:28 -07005918
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005919#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5920
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005921/*
5922 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5923 * CMOS NVRAM byte 0x5E, bits 0-3.
5924 *
5925 * EC HBRV (0x31) has the following layout
5926 * Bit 7: unknown function
5927 * Bit 6: unknown function
5928 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5929 * Bit 4: must be set to zero to avoid problems
5930 * Bit 3-0: backlight brightness level
5931 *
5932 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005933 *
5934 * WARNING: The X61 has been verified to use HBRV for something else, so
5935 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5936 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005937 */
5938
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005939enum {
5940 TP_EC_BACKLIGHT = 0x31,
5941
5942 /* TP_EC_BACKLIGHT bitmasks */
5943 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5944 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5945 TP_EC_BACKLIGHT_MAPSW = 0x20,
5946};
5947
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005948enum tpacpi_brightness_access_mode {
5949 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5950 TPACPI_BRGHT_MODE_EC, /* EC control */
5951 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5952 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5953 TPACPI_BRGHT_MODE_MAX
5954};
5955
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03005956static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005957
5958static enum tpacpi_brightness_access_mode brightness_mode =
5959 TPACPI_BRGHT_MODE_MAX;
5960
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005961static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5962
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005963static struct mutex brightness_mutex;
5964
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005965/* NVRAM brightness access,
5966 * call with brightness_mutex held! */
5967static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005968{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005969 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005970
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005971 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5972 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5973 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5974 lnvram &= (tp_features.bright_16levels) ? 0x0f : 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005975
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005976 return lnvram;
5977}
5978
5979static void tpacpi_brightness_checkpoint_nvram(void)
5980{
5981 u8 lec = 0;
5982 u8 b_nvram;
5983
5984 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5985 return;
5986
5987 vdbg_printk(TPACPI_DBG_BRGHT,
5988 "trying to checkpoint backlight level to NVRAM...\n");
5989
5990 if (mutex_lock_killable(&brightness_mutex) < 0)
5991 return;
5992
5993 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5994 goto unlock;
5995 lec &= TP_EC_BACKLIGHT_LVLMSK;
5996 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5997
5998 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5999 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6000 /* NVRAM needs update */
6001 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6002 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6003 b_nvram |= lec;
6004 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6005 dbg_printk(TPACPI_DBG_BRGHT,
6006 "updated NVRAM backlight level to %u (0x%02x)\n",
6007 (unsigned int) lec, (unsigned int) b_nvram);
6008 } else
6009 vdbg_printk(TPACPI_DBG_BRGHT,
6010 "NVRAM backlight level already is %u (0x%02x)\n",
6011 (unsigned int) lec, (unsigned int) b_nvram);
6012
6013unlock:
6014 mutex_unlock(&brightness_mutex);
6015}
6016
6017
6018/* call with brightness_mutex held! */
6019static int tpacpi_brightness_get_raw(int *status)
6020{
6021 u8 lec = 0;
6022
6023 switch (brightness_mode) {
6024 case TPACPI_BRGHT_MODE_UCMS_STEP:
6025 *status = tpacpi_brightness_nvram_get();
6026 return 0;
6027 case TPACPI_BRGHT_MODE_EC:
6028 case TPACPI_BRGHT_MODE_ECNVRAM:
6029 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03006030 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006031 *status = lec;
6032 return 0;
6033 default:
6034 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006035 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006036}
6037
6038/* call with brightness_mutex held! */
6039/* do NOT call with illegal backlight level value */
6040static int tpacpi_brightness_set_ec(unsigned int value)
6041{
6042 u8 lec = 0;
6043
6044 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6045 return -EIO;
6046
6047 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6048 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6049 (value & TP_EC_BACKLIGHT_LVLMSK))))
6050 return -EIO;
6051
6052 return 0;
6053}
6054
6055/* call with brightness_mutex held! */
6056static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6057{
6058 int cmos_cmd, inc;
6059 unsigned int current_value, i;
6060
6061 current_value = tpacpi_brightness_nvram_get();
6062
6063 if (value == current_value)
6064 return 0;
6065
6066 cmos_cmd = (value > current_value) ?
6067 TP_CMOS_BRIGHTNESS_UP :
6068 TP_CMOS_BRIGHTNESS_DOWN;
6069 inc = (value > current_value) ? 1 : -1;
6070
6071 for (i = current_value; i != value; i += inc)
6072 if (issue_thinkpad_cmos_command(cmos_cmd))
6073 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006074
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006075 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006076}
6077
6078/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006079static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006080{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006081 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006082
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006083 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
6084 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006085 return -EINVAL;
6086
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006087 vdbg_printk(TPACPI_DBG_BRGHT,
6088 "set backlight level to %d\n", value);
6089
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006090 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006091 if (res < 0)
6092 return res;
6093
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006094 switch (brightness_mode) {
6095 case TPACPI_BRGHT_MODE_EC:
6096 case TPACPI_BRGHT_MODE_ECNVRAM:
6097 res = tpacpi_brightness_set_ec(value);
6098 break;
6099 case TPACPI_BRGHT_MODE_UCMS_STEP:
6100 res = tpacpi_brightness_set_ucmsstep(value);
6101 break;
6102 default:
6103 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006104 }
6105
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006106 mutex_unlock(&brightness_mutex);
6107 return res;
6108}
6109
6110/* sysfs backlight class ----------------------------------------------- */
6111
6112static int brightness_update_status(struct backlight_device *bd)
6113{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006114 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006115 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6116 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006117 bd->props.brightness : 0;
6118
6119 dbg_printk(TPACPI_DBG_BRGHT,
6120 "backlight: attempt to set level to %d\n",
6121 level);
6122
6123 /* it is the backlight class's job (caller) to handle
6124 * EINTR and other errors properly */
6125 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006126}
Holger Macht8acb0252006-10-20 14:30:28 -07006127
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006128static int brightness_get(struct backlight_device *bd)
6129{
6130 int status, res;
6131
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006132 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006133 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006134 return 0;
6135
6136 res = tpacpi_brightness_get_raw(&status);
6137
6138 mutex_unlock(&brightness_mutex);
6139
6140 if (res < 0)
6141 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006142
6143 return status & TP_EC_BACKLIGHT_LVLMSK;
6144}
6145
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006146static void tpacpi_brightness_notify_change(void)
6147{
6148 backlight_force_update(ibm_backlight_device,
6149 BACKLIGHT_UPDATE_HOTKEY);
6150}
6151
Richard Purdie599a52d2007-02-10 23:07:48 +00006152static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006153 .get_brightness = brightness_get,
6154 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006155};
6156
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006157/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006158
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006159/*
6160 * These are only useful for models that have only one possibility
6161 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6162 * these quirks.
6163 */
6164#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6165#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6166#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6167
6168static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6169 /* Models with ATI GPUs known to require ECNVRAM mode */
6170 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6171
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006172 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006173 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006174 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006175 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006176 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6177
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006178 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006179 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006180 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6181 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006182
6183 /* Models with Intel GMA900 */
6184 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6185 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6186 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6187};
6188
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006189static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006190{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006191 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006192 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006193 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006194
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006195 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6196
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006197 mutex_init(&brightness_mutex);
6198
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006199 quirks = tpacpi_check_quirks(brightness_quirk_table,
6200 ARRAY_SIZE(brightness_quirk_table));
6201
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006202 /*
6203 * We always attempt to detect acpi support, so as to switch
6204 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6205 * going to publish a backlight interface
6206 */
6207 b = tpacpi_check_std_acpi_brightness_support();
6208 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006209
6210 if (acpi_video_backlight_support()) {
6211 if (brightness_enable > 1) {
6212 printk(TPACPI_NOTICE
6213 "Standard ACPI backlight interface "
6214 "available, not loading native one.\n");
6215 return 1;
6216 } else if (brightness_enable == 1) {
6217 printk(TPACPI_NOTICE
6218 "Backlight control force enabled, even if standard "
6219 "ACPI backlight interface is available\n");
6220 }
6221 } else {
6222 if (brightness_enable > 1) {
6223 printk(TPACPI_NOTICE
6224 "Standard ACPI backlight interface not "
6225 "available, thinkpad_acpi native "
6226 "brightness control enabled\n");
6227 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02006228 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006229 }
6230
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006231 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006232 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006233 "brightness support disabled by "
6234 "module parameter\n");
6235 return 1;
6236 }
6237
6238 if (b > 16) {
6239 printk(TPACPI_ERR
6240 "Unsupported brightness interface, "
6241 "please contact %s\n", TPACPI_MAIL);
6242 return 1;
6243 }
6244 if (b == 16)
6245 tp_features.bright_16levels = 1;
6246
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006247 /*
6248 * Check for module parameter bogosity, note that we
6249 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6250 * able to detect "unspecified"
6251 */
6252 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006253 return -EINVAL;
6254
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006255 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6256 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6257 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006258 if (quirks & TPACPI_BRGHT_Q_EC)
6259 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6260 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006261 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6262
6263 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006264 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006265 brightness_mode);
6266 }
6267
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006268 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006269 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006270 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6271 brightness_mode == TPACPI_BRGHT_MODE_EC))
6272 return -EINVAL;
6273
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006274 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006275 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006276
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006277 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006278 printk(TPACPI_INFO
6279 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006280
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006281 memset(&props, 0, sizeof(struct backlight_properties));
6282 props.max_brightness = (tp_features.bright_16levels) ? 15 : 7;
6283 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6284 NULL, NULL,
6285 &ibm_backlight_data,
6286 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006287 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006288 int rc = PTR_ERR(ibm_backlight_device);
6289 ibm_backlight_device = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006290 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006291 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006292 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006293 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6294 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006295
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006296 if (quirks & TPACPI_BRGHT_Q_ASK) {
6297 printk(TPACPI_NOTICE
6298 "brightness: will use unverified default: "
6299 "brightness_mode=%d\n", brightness_mode);
6300 printk(TPACPI_NOTICE
6301 "brightness: please report to %s whether it works well "
6302 "or not on your ThinkPad\n", TPACPI_MAIL);
6303 }
6304
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006305 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006306 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006307
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006308 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6309 "brightness: registering brightness hotkeys "
6310 "as change notification\n");
6311 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6312 | TP_ACPI_HKEY_BRGHTUP_MASK
6313 | TP_ACPI_HKEY_BRGHTDWN_MASK);;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006314 return 0;
6315}
6316
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006317static void brightness_suspend(pm_message_t state)
6318{
6319 tpacpi_brightness_checkpoint_nvram();
6320}
6321
6322static void brightness_shutdown(void)
6323{
6324 tpacpi_brightness_checkpoint_nvram();
6325}
6326
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006327static void brightness_exit(void)
6328{
6329 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006330 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006331 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006332 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006333 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006334
6335 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006336}
6337
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006338static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006339{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006340 int level;
6341
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006342 level = brightness_get(NULL);
6343 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006344 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006345 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006346 seq_printf(m, "level:\t\t%d\n", level);
6347 seq_printf(m, "commands:\tup, down\n");
6348 seq_printf(m, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006349 " (<level> is 0-%d)\n",
6350 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006351 }
6352
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006353 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006354}
6355
6356static int brightness_write(char *buf)
6357{
6358 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006359 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006360 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006361 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006362
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006363 level = brightness_get(NULL);
6364 if (level < 0)
6365 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006366
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006367 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006368 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006369 if (level < max_level)
6370 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006371 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006372 if (level > 0)
6373 level--;
6374 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6375 level >= 0 && level <= max_level) {
6376 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006377 } else
6378 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006379 }
6380
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006381 tpacpi_disclose_usertask("procfs brightness",
6382 "set level to %d\n", level);
6383
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006384 /*
6385 * Now we know what the final level should be, so we try to set it.
6386 * Doing it this way makes the syscall restartable in case of EINTR
6387 */
6388 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006389 if (!rc && ibm_backlight_device)
6390 backlight_force_update(ibm_backlight_device,
6391 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006392 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006393}
6394
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006395static struct ibm_struct brightness_driver_data = {
6396 .name = "brightness",
6397 .read = brightness_read,
6398 .write = brightness_write,
6399 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006400 .suspend = brightness_suspend,
6401 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006402};
6403
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006404/*************************************************************************
6405 * Volume subdriver
6406 */
6407
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006408/*
6409 * IBM ThinkPads have a simple volume controller with MUTE gating.
6410 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6411 *
6412 * Since the *61 series (and probably also the later *60 series), Lenovo
6413 * ThinkPads only implement the MUTE gate.
6414 *
6415 * EC register 0x30
6416 * Bit 6: MUTE (1 mutes sound)
6417 * Bit 3-0: Volume
6418 * Other bits should be zero as far as we know.
6419 *
6420 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6421 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6422 * such as bit 7 which is used to detect repeated presses of MUTE,
6423 * and we leave them unchanged.
6424 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006425
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006426#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6427
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006428#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6429#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6430#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6431
Henrique de Moraes Holschuhead510c2009-12-26 22:52:13 -02006432static int alsa_index = ~((1 << (SNDRV_CARDS - 3)) - 1); /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006433static char *alsa_id = "ThinkPadEC";
6434static int alsa_enable = SNDRV_DEFAULT_ENABLE1;
6435
6436struct tpacpi_alsa_data {
6437 struct snd_card *card;
6438 struct snd_ctl_elem_id *ctl_mute_id;
6439 struct snd_ctl_elem_id *ctl_vol_id;
6440};
6441
6442static struct snd_card *alsa_card;
6443
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006444enum {
6445 TP_EC_AUDIO = 0x30,
6446
6447 /* TP_EC_AUDIO bits */
6448 TP_EC_AUDIO_MUTESW = 6,
6449
6450 /* TP_EC_AUDIO bitmasks */
6451 TP_EC_AUDIO_LVL_MSK = 0x0F,
6452 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6453
6454 /* Maximum volume */
6455 TP_EC_VOLUME_MAX = 14,
6456};
6457
6458enum tpacpi_volume_access_mode {
6459 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6460 TPACPI_VOL_MODE_EC, /* Pure EC control */
6461 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6462 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6463 TPACPI_VOL_MODE_MAX
6464};
6465
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006466enum tpacpi_volume_capabilities {
6467 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6468 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6469 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6470 TPACPI_VOL_CAP_MAX
6471};
6472
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006473static enum tpacpi_volume_access_mode volume_mode =
6474 TPACPI_VOL_MODE_MAX;
6475
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006476static enum tpacpi_volume_capabilities volume_capabilities;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006477static int volume_control_allowed;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006478
6479/*
6480 * Used to syncronize writers to TP_EC_AUDIO and
6481 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6482 */
6483static struct mutex volume_mutex;
6484
6485static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006486{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006487 u8 lec = 0;
6488 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006489 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006490
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006491 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6492 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006493 if (!volume_control_allowed)
6494 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006495
6496 vdbg_printk(TPACPI_DBG_MIXER,
6497 "trying to checkpoint mixer state to NVRAM...\n");
6498
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006499 if (tp_features.mixer_no_level_control)
6500 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6501 else
6502 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6503
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006504 if (mutex_lock_killable(&volume_mutex) < 0)
6505 return;
6506
6507 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6508 goto unlock;
6509 lec &= ec_mask;
6510 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
6511
6512 if (lec != (b_nvram & ec_mask)) {
6513 /* NVRAM needs update */
6514 b_nvram &= ~ec_mask;
6515 b_nvram |= lec;
6516 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
6517 dbg_printk(TPACPI_DBG_MIXER,
6518 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6519 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006520 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006521 vdbg_printk(TPACPI_DBG_MIXER,
6522 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6523 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006524 }
6525
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006526unlock:
6527 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006528}
6529
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006530static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006531{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006532 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006533
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006534 if (!acpi_ec_read(TP_EC_AUDIO, &s))
6535 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006536
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006537 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006538
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006539 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006540
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006541 return 0;
6542}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006543
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006544static int volume_get_status(u8 *status)
6545{
6546 return volume_get_status_ec(status);
6547}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006548
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006549static int volume_set_status_ec(const u8 status)
6550{
6551 if (!acpi_ec_write(TP_EC_AUDIO, status))
6552 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006553
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006554 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
6555
6556 return 0;
6557}
6558
6559static int volume_set_status(const u8 status)
6560{
6561 return volume_set_status_ec(status);
6562}
6563
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006564/* returns < 0 on error, 0 on no change, 1 on change */
6565static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006566{
6567 int rc;
6568 u8 s, n;
6569
6570 if (mutex_lock_killable(&volume_mutex) < 0)
6571 return -EINTR;
6572
6573 rc = volume_get_status_ec(&s);
6574 if (rc)
6575 goto unlock;
6576
6577 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
6578 s & ~TP_EC_AUDIO_MUTESW_MSK;
6579
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006580 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006581 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006582 if (!rc)
6583 rc = 1;
6584 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006585
6586unlock:
6587 mutex_unlock(&volume_mutex);
6588 return rc;
6589}
6590
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006591static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006592{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006593 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006594 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006595 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006596}
6597
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006598static int volume_set_mute(const bool mute)
6599{
6600 int rc;
6601
6602 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
6603 (mute) ? "" : "un");
6604
6605 rc = __volume_set_mute_ec(mute);
6606 return (rc < 0) ? rc : 0;
6607}
6608
6609/* returns < 0 on error, 0 on no change, 1 on change */
6610static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006611{
6612 int rc;
6613 u8 s, n;
6614
6615 if (vol > TP_EC_VOLUME_MAX)
6616 return -EINVAL;
6617
6618 if (mutex_lock_killable(&volume_mutex) < 0)
6619 return -EINTR;
6620
6621 rc = volume_get_status_ec(&s);
6622 if (rc)
6623 goto unlock;
6624
6625 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
6626
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006627 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006628 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006629 if (!rc)
6630 rc = 1;
6631 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006632
6633unlock:
6634 mutex_unlock(&volume_mutex);
6635 return rc;
6636}
6637
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006638static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006639{
6640 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006641 "ALSA: trying to set volume level to %hu\n", vol);
6642 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006643}
6644
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006645static void volume_alsa_notify_change(void)
6646{
6647 struct tpacpi_alsa_data *d;
6648
6649 if (alsa_card && alsa_card->private_data) {
6650 d = alsa_card->private_data;
6651 if (d->ctl_mute_id)
6652 snd_ctl_notify(alsa_card,
6653 SNDRV_CTL_EVENT_MASK_VALUE,
6654 d->ctl_mute_id);
6655 if (d->ctl_vol_id)
6656 snd_ctl_notify(alsa_card,
6657 SNDRV_CTL_EVENT_MASK_VALUE,
6658 d->ctl_vol_id);
6659 }
6660}
6661
6662static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
6663 struct snd_ctl_elem_info *uinfo)
6664{
6665 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
6666 uinfo->count = 1;
6667 uinfo->value.integer.min = 0;
6668 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
6669 return 0;
6670}
6671
6672static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
6673 struct snd_ctl_elem_value *ucontrol)
6674{
6675 u8 s;
6676 int rc;
6677
6678 rc = volume_get_status(&s);
6679 if (rc < 0)
6680 return rc;
6681
6682 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
6683 return 0;
6684}
6685
6686static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
6687 struct snd_ctl_elem_value *ucontrol)
6688{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006689 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006690}
6691
6692#define volume_alsa_mute_info snd_ctl_boolean_mono_info
6693
6694static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
6695 struct snd_ctl_elem_value *ucontrol)
6696{
6697 u8 s;
6698 int rc;
6699
6700 rc = volume_get_status(&s);
6701 if (rc < 0)
6702 return rc;
6703
6704 ucontrol->value.integer.value[0] =
6705 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
6706 return 0;
6707}
6708
6709static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
6710 struct snd_ctl_elem_value *ucontrol)
6711{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006712 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006713}
6714
6715static struct snd_kcontrol_new volume_alsa_control_vol __devinitdata = {
6716 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6717 .name = "Console Playback Volume",
6718 .index = 0,
6719 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6720 .info = volume_alsa_vol_info,
6721 .get = volume_alsa_vol_get,
6722};
6723
6724static struct snd_kcontrol_new volume_alsa_control_mute __devinitdata = {
6725 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6726 .name = "Console Playback Switch",
6727 .index = 0,
6728 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6729 .info = volume_alsa_mute_info,
6730 .get = volume_alsa_mute_get,
6731};
6732
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006733static void volume_suspend(pm_message_t state)
6734{
6735 tpacpi_volume_checkpoint_nvram();
6736}
6737
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006738static void volume_resume(void)
6739{
6740 volume_alsa_notify_change();
6741}
6742
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006743static void volume_shutdown(void)
6744{
6745 tpacpi_volume_checkpoint_nvram();
6746}
6747
6748static void volume_exit(void)
6749{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006750 if (alsa_card) {
6751 snd_card_free(alsa_card);
6752 alsa_card = NULL;
6753 }
6754
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006755 tpacpi_volume_checkpoint_nvram();
6756}
6757
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006758static int __init volume_create_alsa_mixer(void)
6759{
6760 struct snd_card *card;
6761 struct tpacpi_alsa_data *data;
6762 struct snd_kcontrol *ctl_vol;
6763 struct snd_kcontrol *ctl_mute;
6764 int rc;
6765
6766 rc = snd_card_create(alsa_index, alsa_id, THIS_MODULE,
6767 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006768 if (rc < 0 || !card) {
6769 printk(TPACPI_ERR
6770 "Failed to create ALSA card structures: %d\n", rc);
6771 return 1;
6772 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006773
6774 BUG_ON(!card->private_data);
6775 data = card->private_data;
6776 data->card = card;
6777
6778 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
6779 sizeof(card->driver));
6780 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
6781 sizeof(card->shortname));
6782 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
6783 (thinkpad_id.ec_version_str) ?
6784 thinkpad_id.ec_version_str : "(unknown)");
6785 snprintf(card->longname, sizeof(card->longname),
6786 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
6787 (thinkpad_id.ec_version_str) ?
6788 thinkpad_id.ec_version_str : "unknown");
6789
6790 if (volume_control_allowed) {
6791 volume_alsa_control_vol.put = volume_alsa_vol_put;
6792 volume_alsa_control_vol.access =
6793 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6794
6795 volume_alsa_control_mute.put = volume_alsa_mute_put;
6796 volume_alsa_control_mute.access =
6797 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6798 }
6799
6800 if (!tp_features.mixer_no_level_control) {
6801 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
6802 rc = snd_ctl_add(card, ctl_vol);
6803 if (rc < 0) {
6804 printk(TPACPI_ERR
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006805 "Failed to create ALSA volume control: %d\n",
6806 rc);
6807 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006808 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006809 data->ctl_vol_id = &ctl_vol->id;
6810 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006811
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006812 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
6813 rc = snd_ctl_add(card, ctl_mute);
6814 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006815 printk(TPACPI_ERR "Failed to create ALSA mute control: %d\n",
6816 rc);
6817 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006818 }
6819 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006820
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006821 snd_card_set_dev(card, &tpacpi_pdev->dev);
6822 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006823 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006824 printk(TPACPI_ERR "Failed to register ALSA card: %d\n", rc);
6825 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006826 }
6827
6828 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006829 return 0;
6830
6831err_exit:
6832 snd_card_free(card);
6833 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006834}
6835
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006836#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6837#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6838
6839static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
6840 /* Whitelist volume level on all IBM by default */
6841 { .vendor = PCI_VENDOR_ID_IBM,
6842 .bios = TPACPI_MATCH_ANY,
6843 .ec = TPACPI_MATCH_ANY,
6844 .quirks = TPACPI_VOL_Q_LEVEL },
6845
6846 /* Lenovo models with volume control (needs confirmation) */
6847 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
6848 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
6849 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
6850 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
6851 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
6852 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
6853 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
6854
6855 /* Whitelist mute-only on all Lenovo by default */
6856 { .vendor = PCI_VENDOR_ID_LENOVO,
6857 .bios = TPACPI_MATCH_ANY,
6858 .ec = TPACPI_MATCH_ANY,
6859 .quirks = TPACPI_VOL_Q_MUTEONLY }
6860};
6861
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006862static int __init volume_init(struct ibm_init_struct *iibm)
6863{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006864 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006865 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006866
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006867 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
6868
6869 mutex_init(&volume_mutex);
6870
6871 /*
6872 * Check for module parameter bogosity, note that we
6873 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6874 * able to detect "unspecified"
6875 */
6876 if (volume_mode > TPACPI_VOL_MODE_MAX)
6877 return -EINVAL;
6878
6879 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
6880 printk(TPACPI_ERR
6881 "UCMS step volume mode not implemented, "
6882 "please contact %s\n", TPACPI_MAIL);
6883 return 1;
6884 }
6885
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006886 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
6887 return -EINVAL;
6888
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006889 /*
6890 * The ALSA mixer is our primary interface.
6891 * When disabled, don't install the subdriver at all
6892 */
6893 if (!alsa_enable) {
6894 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6895 "ALSA mixer disabled by parameter, "
6896 "not loading volume subdriver...\n");
6897 return 1;
6898 }
6899
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006900 quirks = tpacpi_check_quirks(volume_quirk_table,
6901 ARRAY_SIZE(volume_quirk_table));
6902
6903 switch (volume_capabilities) {
6904 case TPACPI_VOL_CAP_AUTO:
6905 if (quirks & TPACPI_VOL_Q_MUTEONLY)
6906 tp_features.mixer_no_level_control = 1;
6907 else if (quirks & TPACPI_VOL_Q_LEVEL)
6908 tp_features.mixer_no_level_control = 0;
6909 else
6910 return 1; /* no mixer */
6911 break;
6912 case TPACPI_VOL_CAP_VOLMUTE:
6913 tp_features.mixer_no_level_control = 0;
6914 break;
6915 case TPACPI_VOL_CAP_MUTEONLY:
6916 tp_features.mixer_no_level_control = 1;
6917 break;
6918 default:
6919 return 1;
6920 }
6921
6922 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
6923 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6924 "using user-supplied volume_capabilities=%d\n",
6925 volume_capabilities);
6926
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006927 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
6928 volume_mode == TPACPI_VOL_MODE_MAX) {
6929 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
6930
6931 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6932 "driver auto-selected volume_mode=%d\n",
6933 volume_mode);
6934 } else {
6935 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6936 "using user-supplied volume_mode=%d\n",
6937 volume_mode);
6938 }
6939
6940 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006941 "mute is supported, volume control is %s\n",
6942 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006943
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006944 rc = volume_create_alsa_mixer();
6945 if (rc) {
6946 printk(TPACPI_ERR
6947 "Could not create the ALSA mixer interface\n");
6948 return rc;
6949 }
6950
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006951 printk(TPACPI_INFO
6952 "Console audio control enabled, mode: %s\n",
6953 (volume_control_allowed) ?
6954 "override (read/write)" :
6955 "monitor (read only)");
6956
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006957 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6958 "registering volume hotkeys as change notification\n");
6959 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6960 | TP_ACPI_HKEY_VOLUP_MASK
6961 | TP_ACPI_HKEY_VOLDWN_MASK
6962 | TP_ACPI_HKEY_MUTE_MASK);
6963
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006964 return 0;
6965}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006966
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006967static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006968{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006969 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006970
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006971 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006972 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006973 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006974 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006975 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006976 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006977 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006978 status & TP_EC_AUDIO_LVL_MSK);
6979
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006980 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006981 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006982
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006983 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006984 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006985 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006986 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006987 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006988 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006989 "commands:\tlevel <level>"
6990 " (<level> is 0-%d)\n",
6991 TP_EC_VOLUME_MAX);
6992 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006993 }
6994 }
6995
6996 return 0;
6997}
6998
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006999static int volume_write(char *buf)
7000{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007001 u8 s;
7002 u8 new_level, new_mute;
7003 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007004 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007005 int rc;
7006
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007007 /*
7008 * We do allow volume control at driver startup, so that the
7009 * user can set initial state through the volume=... parameter hack.
7010 */
7011 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7012 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7013 tp_warned.volume_ctrl_forbidden = 1;
7014 printk(TPACPI_NOTICE
7015 "Console audio control in monitor mode, "
7016 "changes are not allowed.\n");
7017 printk(TPACPI_NOTICE
7018 "Use the volume_control=1 module parameter "
7019 "to enable volume control\n");
7020 }
7021 return -EPERM;
7022 }
7023
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007024 rc = volume_get_status(&s);
7025 if (rc < 0)
7026 return rc;
7027
7028 new_level = s & TP_EC_AUDIO_LVL_MSK;
7029 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007030
7031 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007032 if (!tp_features.mixer_no_level_control) {
7033 if (strlencmp(cmd, "up") == 0) {
7034 if (new_mute)
7035 new_mute = 0;
7036 else if (new_level < TP_EC_VOLUME_MAX)
7037 new_level++;
7038 continue;
7039 } else if (strlencmp(cmd, "down") == 0) {
7040 if (new_mute)
7041 new_mute = 0;
7042 else if (new_level > 0)
7043 new_level--;
7044 continue;
7045 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7046 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7047 new_level = l;
7048 continue;
7049 }
7050 }
7051 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007052 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007053 else if (strlencmp(cmd, "unmute") == 0)
7054 new_mute = 0;
7055 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007056 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007057 }
7058
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007059 if (tp_features.mixer_no_level_control) {
7060 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7061 new_mute ? "" : "un");
7062 rc = volume_set_mute(!!new_mute);
7063 } else {
7064 tpacpi_disclose_usertask("procfs volume",
7065 "%smute and set level to %d\n",
7066 new_mute ? "" : "un", new_level);
7067 rc = volume_set_status(new_mute | new_level);
7068 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007069 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007070
7071 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007072}
7073
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007074static struct ibm_struct volume_driver_data = {
7075 .name = "volume",
7076 .read = volume_read,
7077 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007078 .exit = volume_exit,
7079 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007080 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007081 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007082};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007083
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007084#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7085
7086#define alsa_card NULL
7087
7088static void inline volume_alsa_notify_change(void)
7089{
7090}
7091
7092static int __init volume_init(struct ibm_init_struct *iibm)
7093{
7094 printk(TPACPI_INFO
7095 "volume: disabled as there is no ALSA support in this kernel\n");
7096
7097 return 1;
7098}
7099
7100static struct ibm_struct volume_driver_data = {
7101 .name = "volume",
7102};
7103
7104#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7105
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007106/*************************************************************************
7107 * Fan subdriver
7108 */
7109
7110/*
7111 * FAN ACCESS MODES
7112 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007113 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007114 * ACPI GFAN method: returns fan level
7115 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007116 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007117 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007118 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007119 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007120 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7121 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007122 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7123 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007124 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007125 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007126 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7127 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007128 *
7129 * Fan speed changes of any sort (including those caused by the
7130 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007131 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007132 * limited.
7133 *
7134 * Reading is not available if GFAN exists.
7135 * Writing is not available if SFAN exists.
7136 *
7137 * Bits
7138 * 7 automatic mode engaged;
7139 * (default operation mode of the ThinkPad)
7140 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007141 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007142 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007143 * the tachometer while the fan controller ramps up
7144 * the speed (which can take up to a few *minutes*).
7145 * Speeds up fan to 100% duty-cycle, which is far above
7146 * the standard RPM levels. It is not impossible that
7147 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007148 * 5-3 unused in some models. Extra bits for fan level
7149 * in others, but still useless as all values above
7150 * 7 map to the same speed as level 7 in these models.
7151 * 2-0 fan level (0..7 usually)
7152 * 0x00 = stop
7153 * 0x07 = max (set when temperatures critical)
7154 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007155 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007156 *
7157 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
7158 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
7159 * does so, its initial value is meaningless (0x07).
7160 *
7161 * For firmware bugs, refer to:
7162 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7163 *
7164 * ----
7165 *
7166 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7167 * Main fan tachometer reading (in RPM)
7168 *
7169 * This register is present on all ThinkPads with a new-style EC, and
7170 * it is known not to be present on the A21m/e, and T22, as there is
7171 * something else in offset 0x84 according to the ACPI DSDT. Other
7172 * ThinkPads from this same time period (and earlier) probably lack the
7173 * tachometer as well.
7174 *
Nick Andrew877d0312009-01-26 11:06:57 +01007175 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007176 * was never fixed by IBM to report the EC firmware version string
7177 * probably support the tachometer (like the early X models), so
7178 * detecting it is quite hard. We need more data to know for sure.
7179 *
7180 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7181 * might result.
7182 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007183 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7184 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007185 *
7186 * For firmware bugs, refer to:
7187 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7188 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007189 * ----
7190 *
7191 * ThinkPad EC register 0x31 bit 0 (only on select models)
7192 *
7193 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7194 * show the speed of the main fan. When bit 0 of EC register 0x31
7195 * is one, the tachometer registers show the speed of the auxiliary
7196 * fan.
7197 *
7198 * Fan control seems to affect both fans, regardless of the state
7199 * of this bit.
7200 *
7201 * So far, only the firmware for the X60/X61 non-tablet versions
7202 * seem to support this (firmware TP-7M).
7203 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007204 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007205 * ThinkPad X31, X40, X41. Not available in the X60.
7206 *
7207 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7208 * high speed. ACPI DSDT seems to map these three speeds to levels
7209 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7210 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7211 *
7212 * The speeds are stored on handles
7213 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7214 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007215 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007216 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7217 *
7218 * ACPI DSDT switches which set is in use depending on various
7219 * factors.
7220 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007221 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007222 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7223 * but the ACPI tables just mention level 7.
7224 */
7225
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007226enum { /* Fan control constants */
7227 fan_status_offset = 0x2f, /* EC register 0x2f */
7228 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7229 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007230 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7231 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007232
7233 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7234 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7235
7236 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7237};
7238
7239enum fan_status_access_mode {
7240 TPACPI_FAN_NONE = 0, /* No fan status or control */
7241 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7242 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7243};
7244
7245enum fan_control_access_mode {
7246 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7247 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7248 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7249 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7250};
7251
7252enum fan_control_commands {
7253 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7254 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7255 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7256 * and also watchdog cmd */
7257};
7258
7259static int fan_control_allowed;
7260
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007261static enum fan_status_access_mode fan_status_access_mode;
7262static enum fan_control_access_mode fan_control_access_mode;
7263static enum fan_control_commands fan_control_commands;
7264
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007265static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007266static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007267static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007268static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007269
7270static struct mutex fan_mutex;
7271
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007272static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007273static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007274
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007275TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7276TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007277 "\\FSPD", /* 600e/x, 770e, 770x */
7278 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007279TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007280 "JFNS", /* 770x-JL */
7281 ); /* all others */
7282
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007283/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007284 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7285 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7286 * be in auto mode (0x80).
7287 *
7288 * This is corrected by any write to HFSP either by the driver, or
7289 * by the firmware.
7290 *
7291 * We assume 0x07 really means auto mode while this quirk is active,
7292 * as this is far more likely than the ThinkPad being in level 7,
7293 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007294 *
7295 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7296 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007297 */
7298
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007299static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007300{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007301 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007302 printk(TPACPI_NOTICE
7303 "fan_init: initial fan status is unknown, "
7304 "assuming it is in auto mode\n");
7305 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007306 }
7307}
7308
7309static void fan_quirk1_handle(u8 *fan_status)
7310{
7311 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7312 if (*fan_status != fan_control_initial_status) {
7313 /* something changed the HFSP regisnter since
7314 * driver init time, so it is not undefined
7315 * anymore */
7316 tp_features.fan_ctrl_status_undef = 0;
7317 } else {
7318 /* Return most likely status. In fact, it
7319 * might be the only possible status */
7320 *fan_status = TP_EC_FAN_AUTO;
7321 }
7322 }
7323}
7324
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007325/* Select main fan on X60/X61, NOOP on others */
7326static bool fan_select_fan1(void)
7327{
7328 if (tp_features.second_fan) {
7329 u8 val;
7330
7331 if (ec_read(fan_select_offset, &val) < 0)
7332 return false;
7333 val &= 0xFEU;
7334 if (ec_write(fan_select_offset, val) < 0)
7335 return false;
7336 }
7337 return true;
7338}
7339
7340/* Select secondary fan on X60/X61 */
7341static bool fan_select_fan2(void)
7342{
7343 u8 val;
7344
7345 if (!tp_features.second_fan)
7346 return false;
7347
7348 if (ec_read(fan_select_offset, &val) < 0)
7349 return false;
7350 val |= 0x01U;
7351 if (ec_write(fan_select_offset, val) < 0)
7352 return false;
7353
7354 return true;
7355}
7356
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007357/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007358 * Call with fan_mutex held
7359 */
7360static void fan_update_desired_level(u8 status)
7361{
7362 if ((status &
7363 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7364 if (status > 7)
7365 fan_control_desired_level = 7;
7366 else
7367 fan_control_desired_level = status;
7368 }
7369}
7370
7371static int fan_get_status(u8 *status)
7372{
7373 u8 s;
7374
7375 /* TODO:
7376 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7377
7378 switch (fan_status_access_mode) {
7379 case TPACPI_FAN_RD_ACPI_GFAN:
7380 /* 570, 600e/x, 770e, 770x */
7381
7382 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
7383 return -EIO;
7384
7385 if (likely(status))
7386 *status = s & 0x07;
7387
7388 break;
7389
7390 case TPACPI_FAN_RD_TPEC:
7391 /* all except 570, 600e/x, 770e, 770x */
7392 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7393 return -EIO;
7394
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007395 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007396 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007397 fan_quirk1_handle(status);
7398 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007399
7400 break;
7401
7402 default:
7403 return -ENXIO;
7404 }
7405
7406 return 0;
7407}
7408
7409static int fan_get_status_safe(u8 *status)
7410{
7411 int rc;
7412 u8 s;
7413
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007414 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007415 return -ERESTARTSYS;
7416 rc = fan_get_status(&s);
7417 if (!rc)
7418 fan_update_desired_level(s);
7419 mutex_unlock(&fan_mutex);
7420
7421 if (status)
7422 *status = s;
7423
7424 return rc;
7425}
7426
7427static int fan_get_speed(unsigned int *speed)
7428{
7429 u8 hi, lo;
7430
7431 switch (fan_status_access_mode) {
7432 case TPACPI_FAN_RD_TPEC:
7433 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007434 if (unlikely(!fan_select_fan1()))
7435 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007436 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7437 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7438 return -EIO;
7439
7440 if (likely(speed))
7441 *speed = (hi << 8) | lo;
7442
7443 break;
7444
7445 default:
7446 return -ENXIO;
7447 }
7448
7449 return 0;
7450}
7451
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007452static int fan2_get_speed(unsigned int *speed)
7453{
7454 u8 hi, lo;
7455 bool rc;
7456
7457 switch (fan_status_access_mode) {
7458 case TPACPI_FAN_RD_TPEC:
7459 /* all except 570, 600e/x, 770e, 770x */
7460 if (unlikely(!fan_select_fan2()))
7461 return -EIO;
7462 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
7463 !acpi_ec_read(fan_rpm_offset + 1, &hi);
7464 fan_select_fan1(); /* play it safe */
7465 if (rc)
7466 return -EIO;
7467
7468 if (likely(speed))
7469 *speed = (hi << 8) | lo;
7470
7471 break;
7472
7473 default:
7474 return -ENXIO;
7475 }
7476
7477 return 0;
7478}
7479
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007480static int fan_set_level(int level)
7481{
7482 if (!fan_control_allowed)
7483 return -EPERM;
7484
7485 switch (fan_control_access_mode) {
7486 case TPACPI_FAN_WR_ACPI_SFAN:
7487 if (level >= 0 && level <= 7) {
7488 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
7489 return -EIO;
7490 } else
7491 return -EINVAL;
7492 break;
7493
7494 case TPACPI_FAN_WR_ACPI_FANS:
7495 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007496 if (!(level & TP_EC_FAN_AUTO) &&
7497 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007498 ((level < 0) || (level > 7)))
7499 return -EINVAL;
7500
7501 /* safety net should the EC not support AUTO
7502 * or FULLSPEED mode bits and just ignore them */
7503 if (level & TP_EC_FAN_FULLSPEED)
7504 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01007505 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007506 level |= 4; /* safety min speed 4 */
7507
7508 if (!acpi_ec_write(fan_status_offset, level))
7509 return -EIO;
7510 else
7511 tp_features.fan_ctrl_status_undef = 0;
7512 break;
7513
7514 default:
7515 return -ENXIO;
7516 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007517
7518 vdbg_printk(TPACPI_DBG_FAN,
7519 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007520 return 0;
7521}
7522
7523static int fan_set_level_safe(int level)
7524{
7525 int rc;
7526
7527 if (!fan_control_allowed)
7528 return -EPERM;
7529
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007530 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007531 return -ERESTARTSYS;
7532
7533 if (level == TPACPI_FAN_LAST_LEVEL)
7534 level = fan_control_desired_level;
7535
7536 rc = fan_set_level(level);
7537 if (!rc)
7538 fan_update_desired_level(level);
7539
7540 mutex_unlock(&fan_mutex);
7541 return rc;
7542}
7543
7544static int fan_set_enable(void)
7545{
7546 u8 s;
7547 int rc;
7548
7549 if (!fan_control_allowed)
7550 return -EPERM;
7551
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007552 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007553 return -ERESTARTSYS;
7554
7555 switch (fan_control_access_mode) {
7556 case TPACPI_FAN_WR_ACPI_FANS:
7557 case TPACPI_FAN_WR_TPEC:
7558 rc = fan_get_status(&s);
7559 if (rc < 0)
7560 break;
7561
7562 /* Don't go out of emergency fan mode */
7563 if (s != 7) {
7564 s &= 0x07;
7565 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
7566 }
7567
7568 if (!acpi_ec_write(fan_status_offset, s))
7569 rc = -EIO;
7570 else {
7571 tp_features.fan_ctrl_status_undef = 0;
7572 rc = 0;
7573 }
7574 break;
7575
7576 case TPACPI_FAN_WR_ACPI_SFAN:
7577 rc = fan_get_status(&s);
7578 if (rc < 0)
7579 break;
7580
7581 s &= 0x07;
7582
7583 /* Set fan to at least level 4 */
7584 s |= 4;
7585
7586 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007587 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007588 else
7589 rc = 0;
7590 break;
7591
7592 default:
7593 rc = -ENXIO;
7594 }
7595
7596 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007597
7598 if (!rc)
7599 vdbg_printk(TPACPI_DBG_FAN,
7600 "fan control: set fan control register to 0x%02x\n",
7601 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007602 return rc;
7603}
7604
7605static int fan_set_disable(void)
7606{
7607 int rc;
7608
7609 if (!fan_control_allowed)
7610 return -EPERM;
7611
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007612 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007613 return -ERESTARTSYS;
7614
7615 rc = 0;
7616 switch (fan_control_access_mode) {
7617 case TPACPI_FAN_WR_ACPI_FANS:
7618 case TPACPI_FAN_WR_TPEC:
7619 if (!acpi_ec_write(fan_status_offset, 0x00))
7620 rc = -EIO;
7621 else {
7622 fan_control_desired_level = 0;
7623 tp_features.fan_ctrl_status_undef = 0;
7624 }
7625 break;
7626
7627 case TPACPI_FAN_WR_ACPI_SFAN:
7628 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
7629 rc = -EIO;
7630 else
7631 fan_control_desired_level = 0;
7632 break;
7633
7634 default:
7635 rc = -ENXIO;
7636 }
7637
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007638 if (!rc)
7639 vdbg_printk(TPACPI_DBG_FAN,
7640 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007641
7642 mutex_unlock(&fan_mutex);
7643 return rc;
7644}
7645
7646static int fan_set_speed(int speed)
7647{
7648 int rc;
7649
7650 if (!fan_control_allowed)
7651 return -EPERM;
7652
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007653 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007654 return -ERESTARTSYS;
7655
7656 rc = 0;
7657 switch (fan_control_access_mode) {
7658 case TPACPI_FAN_WR_ACPI_FANS:
7659 if (speed >= 0 && speed <= 65535) {
7660 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7661 speed, speed, speed))
7662 rc = -EIO;
7663 } else
7664 rc = -EINVAL;
7665 break;
7666
7667 default:
7668 rc = -ENXIO;
7669 }
7670
7671 mutex_unlock(&fan_mutex);
7672 return rc;
7673}
7674
7675static void fan_watchdog_reset(void)
7676{
7677 static int fan_watchdog_active;
7678
7679 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7680 return;
7681
7682 if (fan_watchdog_active)
7683 cancel_delayed_work(&fan_watchdog_task);
7684
7685 if (fan_watchdog_maxinterval > 0 &&
7686 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
7687 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007688 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007689 msecs_to_jiffies(fan_watchdog_maxinterval
7690 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007691 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007692 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007693 "watchdog will not trigger\n");
7694 }
7695 } else
7696 fan_watchdog_active = 0;
7697}
7698
7699static void fan_watchdog_fire(struct work_struct *ignored)
7700{
7701 int rc;
7702
7703 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7704 return;
7705
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007706 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007707 rc = fan_set_enable();
7708 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007709 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007710 "will try again later...\n", -rc);
7711 /* reschedule for later */
7712 fan_watchdog_reset();
7713 }
7714}
7715
7716/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007717 * SYSFS fan layout: hwmon compatible (device)
7718 *
7719 * pwm*_enable:
7720 * 0: "disengaged" mode
7721 * 1: manual mode
7722 * 2: native EC "auto" mode (recommended, hardware default)
7723 *
7724 * pwm*: set speed in manual mode, ignored otherwise.
7725 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7726 * interpolation.
7727 *
7728 * fan*_input: tachometer reading, RPM
7729 *
7730 *
7731 * SYSFS fan layout: extensions
7732 *
7733 * fan_watchdog (driver):
7734 * fan watchdog interval in seconds, 0 disables (default), max 120
7735 */
7736
7737/* sysfs fan pwm1_enable ----------------------------------------------- */
7738static ssize_t fan_pwm1_enable_show(struct device *dev,
7739 struct device_attribute *attr,
7740 char *buf)
7741{
7742 int res, mode;
7743 u8 status;
7744
7745 res = fan_get_status_safe(&status);
7746 if (res)
7747 return res;
7748
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007749 if (status & TP_EC_FAN_FULLSPEED) {
7750 mode = 0;
7751 } else if (status & TP_EC_FAN_AUTO) {
7752 mode = 2;
7753 } else
7754 mode = 1;
7755
7756 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7757}
7758
7759static ssize_t fan_pwm1_enable_store(struct device *dev,
7760 struct device_attribute *attr,
7761 const char *buf, size_t count)
7762{
7763 unsigned long t;
7764 int res, level;
7765
7766 if (parse_strtoul(buf, 2, &t))
7767 return -EINVAL;
7768
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007769 tpacpi_disclose_usertask("hwmon pwm1_enable",
7770 "set fan mode to %lu\n", t);
7771
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007772 switch (t) {
7773 case 0:
7774 level = TP_EC_FAN_FULLSPEED;
7775 break;
7776 case 1:
7777 level = TPACPI_FAN_LAST_LEVEL;
7778 break;
7779 case 2:
7780 level = TP_EC_FAN_AUTO;
7781 break;
7782 case 3:
7783 /* reserved for software-controlled auto mode */
7784 return -ENOSYS;
7785 default:
7786 return -EINVAL;
7787 }
7788
7789 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007790 if (res == -ENXIO)
7791 return -EINVAL;
7792 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007793 return res;
7794
7795 fan_watchdog_reset();
7796
7797 return count;
7798}
7799
7800static struct device_attribute dev_attr_fan_pwm1_enable =
7801 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7802 fan_pwm1_enable_show, fan_pwm1_enable_store);
7803
7804/* sysfs fan pwm1 ------------------------------------------------------ */
7805static ssize_t fan_pwm1_show(struct device *dev,
7806 struct device_attribute *attr,
7807 char *buf)
7808{
7809 int res;
7810 u8 status;
7811
7812 res = fan_get_status_safe(&status);
7813 if (res)
7814 return res;
7815
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007816 if ((status &
7817 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7818 status = fan_control_desired_level;
7819
7820 if (status > 7)
7821 status = 7;
7822
7823 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7824}
7825
7826static ssize_t fan_pwm1_store(struct device *dev,
7827 struct device_attribute *attr,
7828 const char *buf, size_t count)
7829{
7830 unsigned long s;
7831 int rc;
7832 u8 status, newlevel;
7833
7834 if (parse_strtoul(buf, 255, &s))
7835 return -EINVAL;
7836
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007837 tpacpi_disclose_usertask("hwmon pwm1",
7838 "set fan speed to %lu\n", s);
7839
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007840 /* scale down from 0-255 to 0-7 */
7841 newlevel = (s >> 5) & 0x07;
7842
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007843 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007844 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007845
7846 rc = fan_get_status(&status);
7847 if (!rc && (status &
7848 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7849 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007850 if (rc == -ENXIO)
7851 rc = -EINVAL;
7852 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007853 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007854 fan_watchdog_reset();
7855 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007856 }
7857
7858 mutex_unlock(&fan_mutex);
7859 return (rc)? rc : count;
7860}
7861
7862static struct device_attribute dev_attr_fan_pwm1 =
7863 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7864 fan_pwm1_show, fan_pwm1_store);
7865
7866/* sysfs fan fan1_input ------------------------------------------------ */
7867static ssize_t fan_fan1_input_show(struct device *dev,
7868 struct device_attribute *attr,
7869 char *buf)
7870{
7871 int res;
7872 unsigned int speed;
7873
7874 res = fan_get_speed(&speed);
7875 if (res < 0)
7876 return res;
7877
7878 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7879}
7880
7881static struct device_attribute dev_attr_fan_fan1_input =
7882 __ATTR(fan1_input, S_IRUGO,
7883 fan_fan1_input_show, NULL);
7884
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007885/* sysfs fan fan2_input ------------------------------------------------ */
7886static ssize_t fan_fan2_input_show(struct device *dev,
7887 struct device_attribute *attr,
7888 char *buf)
7889{
7890 int res;
7891 unsigned int speed;
7892
7893 res = fan2_get_speed(&speed);
7894 if (res < 0)
7895 return res;
7896
7897 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7898}
7899
7900static struct device_attribute dev_attr_fan_fan2_input =
7901 __ATTR(fan2_input, S_IRUGO,
7902 fan_fan2_input_show, NULL);
7903
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007904/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007905static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7906 char *buf)
7907{
7908 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7909}
7910
7911static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7912 const char *buf, size_t count)
7913{
7914 unsigned long t;
7915
7916 if (parse_strtoul(buf, 120, &t))
7917 return -EINVAL;
7918
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007919 if (!fan_control_allowed)
7920 return -EPERM;
7921
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007922 fan_watchdog_maxinterval = t;
7923 fan_watchdog_reset();
7924
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007925 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7926
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007927 return count;
7928}
7929
7930static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7931 fan_fan_watchdog_show, fan_fan_watchdog_store);
7932
7933/* --------------------------------------------------------------------- */
7934static struct attribute *fan_attributes[] = {
7935 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7936 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007937 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007938 NULL
7939};
7940
7941static const struct attribute_group fan_attr_group = {
7942 .attrs = fan_attributes,
7943};
7944
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007945#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7946#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007947
7948#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7949 { .vendor = PCI_VENDOR_ID_IBM, \
7950 .bios = TPACPI_MATCH_ANY, \
7951 .ec = TPID(__id1, __id2), \
7952 .quirks = __quirks }
7953
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007954#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7955 { .vendor = PCI_VENDOR_ID_LENOVO, \
7956 .bios = TPACPI_MATCH_ANY, \
7957 .ec = TPID(__id1, __id2), \
7958 .quirks = __quirks }
7959
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007960static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7961 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7962 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7963 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7964 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007965 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007966};
7967
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007968#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007969#undef TPACPI_FAN_QI
7970
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007971static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007972{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007973 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007974 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007975
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007976 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7977 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007978
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007979 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007980 fan_status_access_mode = TPACPI_FAN_NONE;
7981 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007982 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007983 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007984 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007985 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007986 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007987
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03007988 if (tpacpi_is_ibm()) {
7989 TPACPI_ACPIHANDLE_INIT(fans);
7990 TPACPI_ACPIHANDLE_INIT(gfan);
7991 TPACPI_ACPIHANDLE_INIT(sfan);
7992 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007993
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007994 quirks = tpacpi_check_quirks(fan_quirk_table,
7995 ARRAY_SIZE(fan_quirk_table));
7996
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007997 if (gfan_handle) {
7998 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007999 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008000 } else {
8001 /* all other ThinkPads: note that even old-style
8002 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008003 if (likely(acpi_ec_read(fan_status_offset,
8004 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008005 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008006 if (quirks & TPACPI_FAN_Q1)
8007 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008008 if (quirks & TPACPI_FAN_2FAN) {
8009 tp_features.second_fan = 1;
8010 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8011 "secondary fan support enabled\n");
8012 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008013 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008014 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008015 "ThinkPad ACPI EC access misbehaving, "
8016 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008017 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008018 }
8019 }
8020
8021 if (sfan_handle) {
8022 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008023 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008024 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008025 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008026 } else {
8027 if (!gfan_handle) {
8028 /* gfan without sfan means no fan control */
8029 /* all other models implement TP EC 0x2f control */
8030
8031 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008032 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008033 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008034 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008035 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008036 TPACPI_FAN_CMD_SPEED |
8037 TPACPI_FAN_CMD_LEVEL |
8038 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008039 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008040 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008041 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008042 TPACPI_FAN_CMD_LEVEL |
8043 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008044 }
8045 }
8046 }
8047
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008048 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8049 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008050 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8051 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8052 fan_status_access_mode, fan_control_access_mode);
8053
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008054 /* fan control master switch */
8055 if (!fan_control_allowed) {
8056 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8057 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008058 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008059 "fan control features disabled by parameter\n");
8060 }
8061
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008062 /* update fan_control_desired_level */
8063 if (fan_status_access_mode != TPACPI_FAN_NONE)
8064 fan_get_status_safe(NULL);
8065
8066 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8067 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008068 if (tp_features.second_fan) {
8069 /* attach second fan tachometer */
8070 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
8071 &dev_attr_fan_fan2_input.attr;
8072 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008073 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008074 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008075 if (rc < 0)
8076 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008077
8078 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8079 &driver_attr_fan_watchdog);
8080 if (rc < 0) {
8081 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8082 &fan_attr_group);
8083 return rc;
8084 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008085 return 0;
8086 } else
8087 return 1;
8088}
8089
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008090static void fan_exit(void)
8091{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008092 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008093 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008094
8095 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008096 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008097 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8098 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008099
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008100 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008101 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008102}
8103
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008104static void fan_suspend(pm_message_t state)
8105{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008106 int rc;
8107
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008108 if (!fan_control_allowed)
8109 return;
8110
8111 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008112 fan_control_resume_level = 0;
8113 rc = fan_get_status_safe(&fan_control_resume_level);
8114 if (rc < 0)
8115 printk(TPACPI_NOTICE
8116 "failed to read fan level for later "
8117 "restore during resume: %d\n", rc);
8118
8119 /* if it is undefined, don't attempt to restore it.
8120 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008121 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008122 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008123}
8124
8125static void fan_resume(void)
8126{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008127 u8 current_level = 7;
8128 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008129 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008130
8131 /* DSDT *always* updates status on resume */
8132 tp_features.fan_ctrl_status_undef = 0;
8133
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008134 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008135 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008136 (fan_get_status_safe(&current_level) < 0))
8137 return;
8138
8139 switch (fan_control_access_mode) {
8140 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008141 /* never decrease fan level */
8142 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008143 break;
8144 case TPACPI_FAN_WR_ACPI_FANS:
8145 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008146 /* never decrease fan level, scale is:
8147 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8148 *
8149 * We expect the firmware to set either 7 or AUTO, but we
8150 * handle FULLSPEED out of paranoia.
8151 *
8152 * So, we can safely only restore FULLSPEED or 7, anything
8153 * else could slow the fan. Restoring AUTO is useless, at
8154 * best that's exactly what the DSDT already set (it is the
8155 * slower it uses).
8156 *
8157 * Always keep in mind that the DSDT *will* have set the
8158 * fans to what the vendor supposes is the best level. We
8159 * muck with it only to speed the fan up.
8160 */
8161 if (fan_control_resume_level != 7 &&
8162 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8163 return;
8164 else
8165 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8166 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008167 break;
8168 default:
8169 return;
8170 }
8171 if (do_set) {
8172 printk(TPACPI_NOTICE
8173 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008174 fan_control_resume_level);
8175 rc = fan_set_level_safe(fan_control_resume_level);
8176 if (rc < 0)
8177 printk(TPACPI_NOTICE
8178 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008179 }
8180}
8181
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008182static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008183{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008184 int rc;
8185 u8 status;
8186 unsigned int speed = 0;
8187
8188 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008189 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008190 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008191 rc = fan_get_status_safe(&status);
8192 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008193 return rc;
8194
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008195 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008196 "level:\t\t%d\n",
8197 (status != 0) ? "enabled" : "disabled", status);
8198 break;
8199
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008200 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008201 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008202 rc = fan_get_status_safe(&status);
8203 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008204 return rc;
8205
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008206 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008207 (status != 0) ? "enabled" : "disabled");
8208
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008209 rc = fan_get_speed(&speed);
8210 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008211 return rc;
8212
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008213 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008214
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008215 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008216 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008217 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008218 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008219 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008220 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008221 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008222 break;
8223
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008224 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008225 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008226 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008227 }
8228
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008229 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008230 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008231
8232 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008233 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008234 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008235 break;
8236
8237 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008238 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008239 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008240 break;
8241 }
8242 }
8243
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008244 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008245 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008246 "commands:\twatchdog <timeout> (<timeout> "
8247 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008248
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008249 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008250 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008251 " (<speed> is 0-65535)\n");
8252
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008253 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008254}
8255
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008256static int fan_write_cmd_level(const char *cmd, int *rc)
8257{
8258 int level;
8259
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008260 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008261 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008262 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008263 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008264 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008265 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008266 return 0;
8267
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008268 *rc = fan_set_level_safe(level);
8269 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008270 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008271 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008272 else if (!*rc)
8273 tpacpi_disclose_usertask("procfs fan",
8274 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008275
8276 return 1;
8277}
8278
8279static int fan_write_cmd_enable(const char *cmd, int *rc)
8280{
8281 if (strlencmp(cmd, "enable") != 0)
8282 return 0;
8283
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008284 *rc = fan_set_enable();
8285 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008286 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008287 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008288 else if (!*rc)
8289 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008290
8291 return 1;
8292}
8293
8294static int fan_write_cmd_disable(const char *cmd, int *rc)
8295{
8296 if (strlencmp(cmd, "disable") != 0)
8297 return 0;
8298
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008299 *rc = fan_set_disable();
8300 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008301 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008302 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008303 else if (!*rc)
8304 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008305
8306 return 1;
8307}
8308
8309static int fan_write_cmd_speed(const char *cmd, int *rc)
8310{
8311 int speed;
8312
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008313 /* TODO:
8314 * Support speed <low> <medium> <high> ? */
8315
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008316 if (sscanf(cmd, "speed %d", &speed) != 1)
8317 return 0;
8318
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008319 *rc = fan_set_speed(speed);
8320 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008321 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008322 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008323 else if (!*rc)
8324 tpacpi_disclose_usertask("procfs fan",
8325 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008326
8327 return 1;
8328}
8329
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008330static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8331{
8332 int interval;
8333
8334 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8335 return 0;
8336
8337 if (interval < 0 || interval > 120)
8338 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008339 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008340 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008341 tpacpi_disclose_usertask("procfs fan",
8342 "set watchdog timer to %d\n",
8343 interval);
8344 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008345
8346 return 1;
8347}
8348
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008349static int fan_write(char *buf)
8350{
8351 char *cmd;
8352 int rc = 0;
8353
8354 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008355 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008356 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008357 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008358 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008359 fan_write_cmd_disable(cmd, &rc) ||
8360 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008361 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008362 fan_write_cmd_speed(cmd, &rc))
8363 )
8364 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008365 else if (!rc)
8366 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008367 }
8368
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008369 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008370}
8371
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008372static struct ibm_struct fan_driver_data = {
8373 .name = "fan",
8374 .read = fan_read,
8375 .write = fan_write,
8376 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008377 .suspend = fan_suspend,
8378 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008379};
8380
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008381/****************************************************************************
8382 ****************************************************************************
8383 *
8384 * Infrastructure
8385 *
8386 ****************************************************************************
8387 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008388
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008389/*
8390 * HKEY event callout for other subdrivers go here
8391 * (yes, it is ugly, but it is quick, safe, and gets the job done
8392 */
8393static void tpacpi_driver_event(const unsigned int hkey_event)
8394{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00008395 if (ibm_backlight_device) {
8396 switch (hkey_event) {
8397 case TP_HKEY_EV_BRGHT_UP:
8398 case TP_HKEY_EV_BRGHT_DOWN:
8399 tpacpi_brightness_notify_change();
8400 }
8401 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008402 if (alsa_card) {
8403 switch (hkey_event) {
8404 case TP_HKEY_EV_VOL_UP:
8405 case TP_HKEY_EV_VOL_DOWN:
8406 case TP_HKEY_EV_VOL_MUTE:
8407 volume_alsa_notify_change();
8408 }
8409 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008410}
8411
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008412static void hotkey_driver_event(const unsigned int scancode)
8413{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03008414 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008415}
8416
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008417/* sysfs name ---------------------------------------------------------- */
8418static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
8419 struct device_attribute *attr,
8420 char *buf)
8421{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008422 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008423}
8424
8425static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
8426 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
8427
8428/* --------------------------------------------------------------------- */
8429
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008430/* /proc support */
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03008431static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008432
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008433/*
8434 * Module and infrastructure proble, init and exit handling
8435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008437static int force_load;
8438
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008439#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008440static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008441{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008442 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008443
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008444 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008445}
8446#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8447
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008448static void ibm_exit(struct ibm_struct *ibm)
8449{
8450 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
8451
8452 list_del_init(&ibm->all_drivers);
8453
8454 if (ibm->flags.acpi_notify_installed) {
8455 dbg_printk(TPACPI_DBG_EXIT,
8456 "%s: acpi_remove_notify_handler\n", ibm->name);
8457 BUG_ON(!ibm->acpi);
8458 acpi_remove_notify_handler(*ibm->acpi->handle,
8459 ibm->acpi->type,
8460 dispatch_acpi_notify);
8461 ibm->flags.acpi_notify_installed = 0;
8462 ibm->flags.acpi_notify_installed = 0;
8463 }
8464
8465 if (ibm->flags.proc_created) {
8466 dbg_printk(TPACPI_DBG_EXIT,
8467 "%s: remove_proc_entry\n", ibm->name);
8468 remove_proc_entry(ibm->name, proc_dir);
8469 ibm->flags.proc_created = 0;
8470 }
8471
8472 if (ibm->flags.acpi_driver_registered) {
8473 dbg_printk(TPACPI_DBG_EXIT,
8474 "%s: acpi_bus_unregister_driver\n", ibm->name);
8475 BUG_ON(!ibm->acpi);
8476 acpi_bus_unregister_driver(ibm->acpi->driver);
8477 kfree(ibm->acpi->driver);
8478 ibm->acpi->driver = NULL;
8479 ibm->flags.acpi_driver_registered = 0;
8480 }
8481
8482 if (ibm->flags.init_called && ibm->exit) {
8483 ibm->exit();
8484 ibm->flags.init_called = 0;
8485 }
8486
8487 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
8488}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008489
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008490static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008491{
8492 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008493 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494 struct proc_dir_entry *entry;
8495
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008496 BUG_ON(ibm == NULL);
8497
8498 INIT_LIST_HEAD(&ibm->all_drivers);
8499
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008500 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008501 return 0;
8502
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008503 dbg_printk(TPACPI_DBG_INIT,
8504 "probing for %s\n", ibm->name);
8505
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008506 if (iibm->init) {
8507 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008508 if (ret > 0)
8509 return 0; /* probe failed */
8510 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008511 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008512
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008513 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514 }
8515
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008516 if (ibm->acpi) {
8517 if (ibm->acpi->hid) {
8518 ret = register_tpacpi_subdriver(ibm);
8519 if (ret)
8520 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008521 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008522
8523 if (ibm->acpi->notify) {
8524 ret = setup_acpi_notify(ibm);
8525 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008526 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008527 ibm->name);
8528 ret = 0;
8529 goto err_out;
8530 }
8531 if (ret < 0)
8532 goto err_out;
8533 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008534 }
8535
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008536 dbg_printk(TPACPI_DBG_INIT,
8537 "%s installed\n", ibm->name);
8538
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008539 if (ibm->read) {
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008540 mode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008541
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008542 if (!mode)
8543 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008544 if (ibm->write)
8545 mode |= S_IWUSR;
8546 entry = proc_create_data(ibm->name, mode, proc_dir,
8547 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008548 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008549 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008550 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008551 ret = -ENODEV;
8552 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008553 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008554 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008556
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008557 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
8558
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008560
8561err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008562 dbg_printk(TPACPI_DBG_INIT,
8563 "%s: at error exit path with result %d\n",
8564 ibm->name, ret);
8565
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008566 ibm_exit(ibm);
8567 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568}
8569
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008570/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008571
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008572static bool __pure __init tpacpi_is_fw_digit(const char c)
8573{
8574 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
8575}
8576
8577/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8578static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
8579 const char t)
8580{
8581 return s && strlen(s) >= 8 &&
8582 tpacpi_is_fw_digit(s[0]) &&
8583 tpacpi_is_fw_digit(s[1]) &&
8584 s[2] == t && s[3] == 'T' &&
8585 tpacpi_is_fw_digit(s[4]) &&
8586 tpacpi_is_fw_digit(s[5]) &&
8587 s[6] == 'W' && s[7] == 'W';
8588}
8589
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008590/* returns 0 - probe ok, or < 0 - probe error.
8591 * Probe ok doesn't mean thinkpad found.
8592 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8593static int __must_check __init get_thinkpad_model_data(
8594 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008595{
Jeff Garzik18552562007-10-03 15:15:40 -04008596 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008597 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008598 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008599
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008600 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008601 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008602
8603 memset(tp, 0, sizeof(*tp));
8604
8605 if (dmi_name_in_vendors("IBM"))
8606 tp->vendor = PCI_VENDOR_ID_IBM;
8607 else if (dmi_name_in_vendors("LENOVO"))
8608 tp->vendor = PCI_VENDOR_ID_LENOVO;
8609 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008610 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008611
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008612 s = dmi_get_system_info(DMI_BIOS_VERSION);
8613 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
8614 if (s && !tp->bios_version_str)
8615 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008616
8617 /* Really ancient ThinkPad 240X will fail this, which is fine */
8618 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008619 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008620
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008621 tp->bios_model = tp->bios_version_str[0]
8622 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008623 tp->bios_release = (tp->bios_version_str[4] << 8)
8624 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008625
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008626 /*
8627 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8628 * X32 or newer, all Z series; Some models must have an
8629 * up-to-date BIOS or they will not be detected.
8630 *
8631 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8632 */
8633 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008634 if (sscanf(dev->name,
8635 "IBM ThinkPad Embedded Controller -[%17c",
8636 ec_fw_string) == 1) {
8637 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
8638 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008639
8640 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008641 if (!tp->ec_version_str)
8642 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008643
8644 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
8645 tp->ec_model = ec_fw_string[0]
8646 | (ec_fw_string[1] << 8);
8647 tp->ec_release = (ec_fw_string[4] << 8)
8648 | ec_fw_string[5];
8649 } else {
8650 printk(TPACPI_NOTICE
8651 "ThinkPad firmware release %s "
8652 "doesn't match the known patterns\n",
8653 ec_fw_string);
8654 printk(TPACPI_NOTICE
8655 "please report this to %s\n",
8656 TPACPI_MAIL);
8657 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008658 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008659 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008660 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008661
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008662 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
8663 if (s && !strnicmp(s, "ThinkPad", 8)) {
8664 tp->model_str = kstrdup(s, GFP_KERNEL);
8665 if (!tp->model_str)
8666 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008667 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008668
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008669 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8670 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8671 if (s && !tp->nummodel_str)
8672 return -ENOMEM;
8673
8674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675}
8676
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008677static int __init probe_for_thinkpad(void)
8678{
8679 int is_thinkpad;
8680
8681 if (acpi_disabled)
8682 return -ENODEV;
8683
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008684 /* It would be dangerous to run the driver in this case */
8685 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8686 return -ENODEV;
8687
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008688 /*
8689 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008690 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008691 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008692 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8693 (thinkpad_id.ec_model != 0) ||
8694 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008695
8696 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008697 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008698 if (!ec_handle) {
8699 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008700 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008701 "Not yet supported ThinkPad detected!\n");
8702 return -ENODEV;
8703 }
8704
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008705 if (!is_thinkpad && !force_load)
8706 return -ENODEV;
8707
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008708 return 0;
8709}
8710
8711
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008712/* Module init, exit, parameters */
8713
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008714static struct ibm_init_struct ibms_init[] __initdata = {
8715 {
8716 .init = thinkpad_acpi_driver_init,
8717 .data = &thinkpad_acpi_driver_data,
8718 },
8719 {
8720 .init = hotkey_init,
8721 .data = &hotkey_driver_data,
8722 },
8723 {
8724 .init = bluetooth_init,
8725 .data = &bluetooth_driver_data,
8726 },
8727 {
8728 .init = wan_init,
8729 .data = &wan_driver_data,
8730 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008731 {
8732 .init = uwb_init,
8733 .data = &uwb_driver_data,
8734 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008735#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008736 {
8737 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008738 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008739 .data = &video_driver_data,
8740 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008741#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008742 {
8743 .init = light_init,
8744 .data = &light_driver_data,
8745 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008746 {
8747 .init = cmos_init,
8748 .data = &cmos_driver_data,
8749 },
8750 {
8751 .init = led_init,
8752 .data = &led_driver_data,
8753 },
8754 {
8755 .init = beep_init,
8756 .data = &beep_driver_data,
8757 },
8758 {
8759 .init = thermal_init,
8760 .data = &thermal_driver_data,
8761 },
8762 {
8763 .data = &ecdump_driver_data,
8764 },
8765 {
8766 .init = brightness_init,
8767 .data = &brightness_driver_data,
8768 },
8769 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008770 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008771 .data = &volume_driver_data,
8772 },
8773 {
8774 .init = fan_init,
8775 .data = &fan_driver_data,
8776 },
8777};
8778
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008779static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8780{
8781 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008782 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008783
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008784 if (!kp || !kp->name || !val)
8785 return -EINVAL;
8786
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008787 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8788 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008789 WARN_ON(ibm == NULL);
8790
8791 if (!ibm || !ibm->name)
8792 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008793
8794 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8795 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008796 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008797 strcpy(ibms_init[i].param, val);
8798 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008799 return 0;
8800 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008801 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008802
8803 return -EINVAL;
8804}
8805
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008806module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008807MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008808 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008809
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008810module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008811MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008812
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008813module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008814MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008815 "Attempts to load the driver even on a "
8816 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008817
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008818module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008819MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008820 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008821
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008822module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008823MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008824 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008825 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008826
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008827module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008828MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008829 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008830
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008831module_param(hotkey_report_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008832MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008833 "used for backwards compatibility with userspace, "
8834 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008835
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008836#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008837module_param_named(volume_mode, volume_mode, uint, 0444);
8838MODULE_PARM_DESC(volume_mode,
8839 "Selects volume control strategy: "
8840 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
8841
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02008842module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
8843MODULE_PARM_DESC(volume_capabilities,
8844 "Selects the mixer capabilites: "
8845 "0=auto, 1=volume and mute, 2=mute only");
8846
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02008847module_param_named(volume_control, volume_control_allowed, bool, 0444);
8848MODULE_PARM_DESC(volume_control,
8849 "Enables software override for the console audio "
8850 "control when true");
8851
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008852/* ALSA module API parameters */
8853module_param_named(index, alsa_index, int, 0444);
8854MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
8855module_param_named(id, alsa_id, charp, 0444);
8856MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
8857module_param_named(enable, alsa_enable, bool, 0444);
8858MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008859#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008860
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008861#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008862 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008863 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008864 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008865
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008866TPACPI_PARAM(hotkey);
8867TPACPI_PARAM(bluetooth);
8868TPACPI_PARAM(video);
8869TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008870TPACPI_PARAM(cmos);
8871TPACPI_PARAM(led);
8872TPACPI_PARAM(beep);
8873TPACPI_PARAM(ecdump);
8874TPACPI_PARAM(brightness);
8875TPACPI_PARAM(volume);
8876TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008877
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008878#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008879module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008880MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8881module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8882MODULE_PARM_DESC(wlsw_state,
8883 "Initial state of the emulated WLSW switch");
8884
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008885module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008886MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8887module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8888MODULE_PARM_DESC(bluetooth_state,
8889 "Initial state of the emulated bluetooth switch");
8890
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008891module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008892MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8893module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8894MODULE_PARM_DESC(wwan_state,
8895 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008896
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008897module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008898MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8899module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8900MODULE_PARM_DESC(uwb_state,
8901 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008902#endif
8903
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008904static void thinkpad_acpi_module_exit(void)
8905{
8906 struct ibm_struct *ibm, *itmp;
8907
8908 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8909
8910 list_for_each_entry_safe_reverse(ibm, itmp,
8911 &tpacpi_all_drivers,
8912 all_drivers) {
8913 ibm_exit(ibm);
8914 }
8915
8916 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
8917
8918 if (tpacpi_inputdev) {
8919 if (tp_features.input_device_registered)
8920 input_unregister_device(tpacpi_inputdev);
8921 else
8922 input_free_device(tpacpi_inputdev);
8923 }
8924
8925 if (tpacpi_hwmon)
8926 hwmon_device_unregister(tpacpi_hwmon);
8927
8928 if (tp_features.sensors_pdev_attrs_registered)
8929 device_remove_file(&tpacpi_sensors_pdev->dev,
8930 &dev_attr_thinkpad_acpi_pdev_name);
8931 if (tpacpi_sensors_pdev)
8932 platform_device_unregister(tpacpi_sensors_pdev);
8933 if (tpacpi_pdev)
8934 platform_device_unregister(tpacpi_pdev);
8935
8936 if (tp_features.sensors_pdrv_attrs_registered)
8937 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
8938 if (tp_features.platform_drv_attrs_registered)
8939 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
8940
8941 if (tp_features.sensors_pdrv_registered)
8942 platform_driver_unregister(&tpacpi_hwmon_pdriver);
8943
8944 if (tp_features.platform_drv_registered)
8945 platform_driver_unregister(&tpacpi_pdriver);
8946
8947 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008948 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008949
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008950 if (tpacpi_wq)
8951 destroy_workqueue(tpacpi_wq);
8952
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008953 kfree(thinkpad_id.bios_version_str);
8954 kfree(thinkpad_id.ec_version_str);
8955 kfree(thinkpad_id.model_str);
8956}
8957
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008958
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008959static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960{
8961 int ret, i;
8962
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008963 tpacpi_lifecycle = TPACPI_LIFE_INIT;
8964
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008965 /* Parameter checking */
8966 if (hotkey_report_mode > 2)
8967 return -EINVAL;
8968
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008969 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008970
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008971 ret = get_thinkpad_model_data(&thinkpad_id);
8972 if (ret) {
8973 printk(TPACPI_ERR
8974 "unable to get DMI data: %d\n", ret);
8975 thinkpad_acpi_module_exit();
8976 return ret;
8977 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008978 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008979 if (ret) {
8980 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008981 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008984 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008985
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008986 TPACPI_ACPIHANDLE_INIT(ecrd);
8987 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008988
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008989 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
8990 if (!tpacpi_wq) {
8991 thinkpad_acpi_module_exit();
8992 return -ENOMEM;
8993 }
8994
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008995 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008997 printk(TPACPI_ERR
8998 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008999 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 return -ENODEV;
9001 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009002
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009003 ret = platform_driver_register(&tpacpi_pdriver);
9004 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009005 printk(TPACPI_ERR
9006 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009007 thinkpad_acpi_module_exit();
9008 return ret;
9009 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009010 tp_features.platform_drv_registered = 1;
9011
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009012 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9013 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009014 printk(TPACPI_ERR
9015 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009016 thinkpad_acpi_module_exit();
9017 return ret;
9018 }
9019 tp_features.sensors_pdrv_registered = 1;
9020
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009021 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009022 if (!ret) {
9023 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009024 ret = tpacpi_create_driver_attributes(
9025 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009026 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009027 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009028 printk(TPACPI_ERR
9029 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009030 thinkpad_acpi_module_exit();
9031 return ret;
9032 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009033 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009034
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009035
9036 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009037 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009038 NULL, 0);
9039 if (IS_ERR(tpacpi_pdev)) {
9040 ret = PTR_ERR(tpacpi_pdev);
9041 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009042 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009043 thinkpad_acpi_module_exit();
9044 return ret;
9045 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009046 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009047 TPACPI_HWMON_DRVR_NAME,
9048 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009049 if (IS_ERR(tpacpi_sensors_pdev)) {
9050 ret = PTR_ERR(tpacpi_sensors_pdev);
9051 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009052 printk(TPACPI_ERR
9053 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009054 thinkpad_acpi_module_exit();
9055 return ret;
9056 }
9057 ret = device_create_file(&tpacpi_sensors_pdev->dev,
9058 &dev_attr_thinkpad_acpi_pdev_name);
9059 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009060 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009061 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009062 thinkpad_acpi_module_exit();
9063 return ret;
9064 }
9065 tp_features.sensors_pdev_attrs_registered = 1;
9066 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009067 if (IS_ERR(tpacpi_hwmon)) {
9068 ret = PTR_ERR(tpacpi_hwmon);
9069 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009070 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009071 thinkpad_acpi_module_exit();
9072 return ret;
9073 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009074 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009075 tpacpi_inputdev = input_allocate_device();
9076 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009077 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009078 thinkpad_acpi_module_exit();
9079 return -ENOMEM;
9080 } else {
9081 /* Prepare input device, but don't register */
9082 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009083 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009084 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009085 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009086 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9087 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009088 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009089 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009090 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9091 ret = ibm_init(&ibms_init[i]);
9092 if (ret >= 0 && *ibms_init[i].param)
9093 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009094 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009095 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009096 return ret;
9097 }
9098 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009099
9100 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9101
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009102 ret = input_register_device(tpacpi_inputdev);
9103 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009104 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009105 thinkpad_acpi_module_exit();
9106 return ret;
9107 } else {
9108 tp_features.input_device_registered = 1;
9109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009110
9111 return 0;
9112}
9113
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009114MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9115
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009116/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009117 * This will autoload the driver in almost every ThinkPad
9118 * in widespread use.
9119 *
9120 * Only _VERY_ old models, like the 240, 240x and 570 lack
9121 * the HKEY event interface.
9122 */
9123MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9124
9125/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009126 * DMI matching for module autoloading
9127 *
9128 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9129 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9130 *
9131 * Only models listed in thinkwiki will be supported, so add yours
9132 * if it is not there yet.
9133 */
9134#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009135 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009136
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009137/* Ancient thinkpad BIOSes have to be identified by
9138 * BIOS type or model number, and there are far less
9139 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009140IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009141
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009142MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9143MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009144MODULE_DESCRIPTION(TPACPI_DESC);
9145MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009146MODULE_LICENSE("GPL");
9147
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009148module_init(thinkpad_acpi_module_init);
9149module_exit(thinkpad_acpi_module_exit);