blob: fa412a43f5e04f41d9234ef4b9e3f21102220882 [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 Holschuh5d756db2010-05-16 19:45:28 -0300125/* Misc NVRAM-related */
126enum {
127 TP_NVRAM_LEVEL_VOLUME_MAX = 14,
128};
129
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200130/* ACPI HIDs */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200131#define TPACPI_ACPI_HKEY_HID "IBM0068"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200132
133/* Input IDs */
134#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
135#define TPACPI_HKEY_INPUT_VERSION 0x4101
136
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200137/* ACPI \WGSV commands */
138enum {
139 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
140 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
141 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
142 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
143};
144
145/* TP_ACPI_WGSV_GET_STATE bits */
146enum {
147 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
148 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
149 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
150 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
151 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
152 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
153 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
154 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
155 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
156 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
157};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200158
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300159/* HKEY events */
160enum tpacpi_hkey_event_t {
161 /* Hotkey-related */
162 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
163 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
164 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
165 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
166 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
167 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
168
169 /* Reasons for waking up from S3/S4 */
170 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
171 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
172 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
173 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
174 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
175 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
176
177 /* Auto-sleep after eject request */
178 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
179 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
180
181 /* Misc bay events */
182 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
183
184 /* User-interface events */
185 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
186 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
187 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
188 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
189 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
190 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
191 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
192
193 /* Thermal events */
194 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
195 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
196 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
197 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
198 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
199
200 /* Misc */
201 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
202};
203
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200204/****************************************************************************
205 * Main driver
206 */
207
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200208#define TPACPI_NAME "thinkpad"
209#define TPACPI_DESC "ThinkPad ACPI Extras"
210#define TPACPI_FILE TPACPI_NAME "_acpi"
211#define TPACPI_URL "http://ibm-acpi.sf.net/"
212#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200213
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200214#define TPACPI_PROC_DIR "ibm"
215#define TPACPI_ACPI_EVENT_PREFIX "ibm"
216#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300217#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200218#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200219
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300220#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300221#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300222
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200223#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200224
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000225/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200226#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000227#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
228#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
229#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
230#define TPACPI_ERR KERN_ERR TPACPI_LOG
231#define TPACPI_WARN KERN_WARNING TPACPI_LOG
232#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
233#define TPACPI_INFO KERN_INFO TPACPI_LOG
234#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200235
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000236/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200237#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000238#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200239#define TPACPI_DBG_INIT 0x0001
240#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +0000241#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000242#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000243#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000244#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200245#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200246
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200247#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
248#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
249#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200250
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200251
252/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200253 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200254 */
255
256struct ibm_struct;
257
258struct tp_acpi_drv_struct {
259 const struct acpi_device_id *hid;
260 struct acpi_driver *driver;
261
262 void (*notify) (struct ibm_struct *, u32);
263 acpi_handle *handle;
264 u32 type;
265 struct acpi_device *device;
266};
267
268struct ibm_struct {
269 char *name;
270
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200271 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200272 int (*write) (char *);
273 void (*exit) (void);
274 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200275 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200276 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200277
278 struct list_head all_drivers;
279
280 struct tp_acpi_drv_struct *acpi;
281
282 struct {
283 u8 acpi_driver_registered:1;
284 u8 acpi_notify_installed:1;
285 u8 proc_created:1;
286 u8 init_called:1;
287 u8 experimental:1;
288 } flags;
289};
290
291struct ibm_init_struct {
292 char param[32];
293
294 int (*init) (struct ibm_init_struct *);
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -0300295 mode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200296 struct ibm_struct *data;
297};
298
299static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200300 u32 bluetooth:1;
301 u32 hotkey:1;
302 u32 hotkey_mask:1;
303 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200304 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200305 u32 light:1;
306 u32 light_status:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300307 u32 bright_acpimode:1;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300308 u32 bright_unkfw:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200309 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200310 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200311 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300312 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300313 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200314 u32 mixer_no_level_control:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200315 u32 input_device_registered:1;
316 u32 platform_drv_registered:1;
317 u32 platform_drv_attrs_registered:1;
318 u32 sensors_pdrv_registered:1;
319 u32 sensors_pdrv_attrs_registered:1;
320 u32 sensors_pdev_attrs_registered:1;
321 u32 hotkey_poll_active:1;
322} tp_features;
323
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300324static struct {
325 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200326 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300327} tp_warned;
328
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200329struct thinkpad_id_data {
330 unsigned int vendor; /* ThinkPad vendor:
331 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
332
333 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
334 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
335
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300336 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200337 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300338 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
339 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200340
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300341 char *model_str; /* ThinkPad T43 */
342 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200343};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200344static struct thinkpad_id_data thinkpad_id;
345
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300346static enum {
347 TPACPI_LIFE_INIT = 0,
348 TPACPI_LIFE_RUNNING,
349 TPACPI_LIFE_EXITING,
350} tpacpi_lifecycle;
351
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200352static int experimental;
353static u32 dbg_level;
354
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300355static struct workqueue_struct *tpacpi_wq;
356
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000357enum led_status_t {
358 TPACPI_LED_OFF = 0,
359 TPACPI_LED_ON,
360 TPACPI_LED_BLINK,
361};
362
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300363/* Special LED class that can defer work */
364struct tpacpi_led_classdev {
365 struct led_classdev led_classdev;
366 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000367 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300368 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300369};
370
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300371/* brightness level capabilities */
372static unsigned int bright_maxlvl; /* 0 = unknown */
373
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200374#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
375static int dbg_wlswemul;
376static int tpacpi_wlsw_emulstate;
377static int dbg_bluetoothemul;
378static int tpacpi_bluetooth_emulstate;
379static int dbg_wwanemul;
380static int tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200381static int dbg_uwbemul;
382static int tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200383#endif
384
385
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000386/*************************************************************************
387 * Debugging helpers
388 */
389
390#define dbg_printk(a_dbg_level, format, arg...) \
391 do { if (dbg_level & (a_dbg_level)) \
392 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
393 } while (0)
394
395#ifdef CONFIG_THINKPAD_ACPI_DEBUG
396#define vdbg_printk dbg_printk
397static const char *str_supported(int is_supported);
398#else
399#define vdbg_printk(a_dbg_level, format, arg...) \
400 do { } while (0)
401#endif
402
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000403static void tpacpi_log_usertask(const char * const what)
404{
405 printk(TPACPI_DEBUG "%s: access by process with PID %d\n",
406 what, task_tgid_vnr(current));
407}
408
409#define tpacpi_disclose_usertask(what, format, arg...) \
410 do { \
411 if (unlikely( \
412 (dbg_level & TPACPI_DBG_DISCLOSETASK) && \
413 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
414 printk(TPACPI_DEBUG "%s: PID %d: " format, \
415 what, task_tgid_vnr(current), ## arg); \
416 } \
417 } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000418
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300419/*
420 * Quirk handling helpers
421 *
422 * ThinkPad IDs and versions seen in the field so far
423 * are two-characters from the set [0-9A-Z], i.e. base 36.
424 *
425 * We use values well outside that range as specials.
426 */
427
428#define TPACPI_MATCH_ANY 0xffffU
429#define TPACPI_MATCH_UNKNOWN 0U
430
431/* TPID('1', 'Y') == 0x5931 */
432#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
433
434#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
435 { .vendor = PCI_VENDOR_ID_IBM, \
436 .bios = TPID(__id1, __id2), \
437 .ec = TPACPI_MATCH_ANY, \
438 .quirks = (__quirk) }
439
440#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
441 { .vendor = PCI_VENDOR_ID_LENOVO, \
442 .bios = TPID(__id1, __id2), \
443 .ec = TPACPI_MATCH_ANY, \
444 .quirks = (__quirk) }
445
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200446#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
447 { .vendor = PCI_VENDOR_ID_LENOVO, \
448 .bios = TPACPI_MATCH_ANY, \
449 .ec = TPID(__id1, __id2), \
450 .quirks = (__quirk) }
451
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300452struct tpacpi_quirk {
453 unsigned int vendor;
454 u16 bios;
455 u16 ec;
456 unsigned long quirks;
457};
458
459/**
460 * tpacpi_check_quirks() - search BIOS/EC version on a list
461 * @qlist: array of &struct tpacpi_quirk
462 * @qlist_size: number of elements in @qlist
463 *
464 * Iterates over a quirks list until one is found that matches the
465 * ThinkPad's vendor, BIOS and EC model.
466 *
467 * Returns 0 if nothing matches, otherwise returns the quirks field of
468 * the matching &struct tpacpi_quirk entry.
469 *
470 * The match criteria is: vendor, ec and bios much match.
471 */
472static unsigned long __init tpacpi_check_quirks(
473 const struct tpacpi_quirk *qlist,
474 unsigned int qlist_size)
475{
476 while (qlist_size) {
477 if ((qlist->vendor == thinkpad_id.vendor ||
478 qlist->vendor == TPACPI_MATCH_ANY) &&
479 (qlist->bios == thinkpad_id.bios_model ||
480 qlist->bios == TPACPI_MATCH_ANY) &&
481 (qlist->ec == thinkpad_id.ec_model ||
482 qlist->ec == TPACPI_MATCH_ANY))
483 return qlist->quirks;
484
485 qlist_size--;
486 qlist++;
487 }
488 return 0;
489}
490
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300491static inline bool __pure __init tpacpi_is_lenovo(void)
492{
493 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
494}
495
496static inline bool __pure __init tpacpi_is_ibm(void)
497{
498 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
499}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300500
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300501/****************************************************************************
502 ****************************************************************************
503 *
504 * ACPI Helpers and device model
505 *
506 ****************************************************************************
507 ****************************************************************************/
508
509/*************************************************************************
510 * ACPI basic handles
511 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300513static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200515#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 static acpi_handle object##_handle; \
517 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400518 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 static char *object##_paths[] = { paths }
520
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200521TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400522 "\\_SB.PCI.ISA.EC", /* 570 */
523 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
524 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
525 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
526 "\\_SB.PCI0.ICH3.EC0", /* R31 */
Henrique de Moraes Holschuha3189302010-05-16 19:45:26 -0300527 "\\_SB.PCI0.LPC0.EC", /* X100e and a few others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400528 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300529 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200531TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
532TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200534TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
535 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400536 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
537 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300538 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400539
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200540TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400541 "^HKEY", /* R30, R31 */
542 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300543 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400544
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200545TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
546 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
547 "\\_SB.PCI0.VID0", /* 770e */
548 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
Henrique de Moraes Holschuha3189302010-05-16 19:45:26 -0300549 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200550 "\\_SB.PCI0.AGP.VID", /* all others */
551 ); /* R30, R31 */
552
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400553
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300554/*************************************************************************
555 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200556 */
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558static int acpi_evalf(acpi_handle handle,
559 void *res, char *method, char *fmt, ...)
560{
561 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400562 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200563 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400564 struct acpi_buffer result, *resultp;
565 union acpi_object out_obj;
566 acpi_status status;
567 va_list ap;
568 char res_type;
569 int success;
570 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200573 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return 0;
575 }
576
577 if (*fmt == 'q') {
578 quiet = 1;
579 fmt++;
580 } else
581 quiet = 0;
582
583 res_type = *(fmt++);
584
585 params.count = 0;
586 params.pointer = &in_objs[0];
587
588 va_start(ap, fmt);
589 while (*fmt) {
590 char c = *(fmt++);
591 switch (c) {
592 case 'd': /* int */
593 in_objs[params.count].integer.value = va_arg(ap, int);
594 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
595 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400596 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200598 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 "with invalid format character '%c'\n", c);
600 return 0;
601 }
602 }
603 va_end(ap);
604
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400605 if (res_type != 'v') {
606 result.length = sizeof(out_obj);
607 result.pointer = &out_obj;
608 resultp = &result;
609 } else
610 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400612 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400615 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (res)
617 *(int *)res = out_obj.integer.value;
618 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
619 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400620 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 success = status == AE_OK;
622 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400623 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200625 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 "with invalid format character '%c'\n", res_type);
627 return 0;
628 }
629
630 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200631 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 method, fmt0, status);
633
634 return success;
635}
636
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200637static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300638{
639 int v;
640
641 if (ecrd_handle) {
642 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
643 return 0;
644 *p = v;
645 } else {
646 if (ec_read(i, p) < 0)
647 return 0;
648 }
649
650 return 1;
651}
652
653static int acpi_ec_write(int i, u8 v)
654{
655 if (ecwr_handle) {
656 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
657 return 0;
658 } else {
659 if (ec_write(i, v) < 0)
660 return 0;
661 }
662
663 return 1;
664}
665
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300666static int issue_thinkpad_cmos_command(int cmos_cmd)
667{
668 if (!cmos_handle)
669 return -ENXIO;
670
671 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
672 return -EIO;
673
674 return 0;
675}
676
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300677/*************************************************************************
678 * ACPI device model
679 */
680
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200681#define TPACPI_ACPIHANDLE_INIT(object) \
682 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200683 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
684
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300685static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300686 acpi_handle *handle, acpi_handle parent,
687 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300688{
689 int i;
690 acpi_status status;
691
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300692 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
693 name);
694
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300695 for (i = 0; i < num_paths; i++) {
696 status = acpi_get_handle(parent, paths[i], handle);
697 if (ACPI_SUCCESS(status)) {
698 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300699 dbg_printk(TPACPI_DBG_INIT,
700 "Found ACPI handle %s for %s\n",
701 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300702 return;
703 }
704 }
705
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300706 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
707 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300708 *handle = NULL;
709}
710
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300711static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300712{
713 struct ibm_struct *ibm = data;
714
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300715 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
716 return;
717
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300718 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300719 return;
720
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300721 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300722}
723
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300724static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300725{
726 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300727 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300728
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300729 BUG_ON(!ibm->acpi);
730
731 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300732 return 0;
733
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300734 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300735 "setting up ACPI notify for %s\n", ibm->name);
736
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300737 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
738 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200739 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300740 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300741 return -ENODEV;
742 }
743
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700744 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300745 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200746 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300747 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300748
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300749 status = acpi_install_notify_handler(*ibm->acpi->handle,
750 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300751 if (ACPI_FAILURE(status)) {
752 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200753 printk(TPACPI_NOTICE
754 "another device driver is already "
755 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300756 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200757 printk(TPACPI_ERR
758 "acpi_install_notify_handler(%s) failed: %d\n",
759 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300760 }
761 return -ENODEV;
762 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300763 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300764 return 0;
765}
766
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300767static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300768{
769 return 0;
770}
771
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300772static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300773{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300774 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300775
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300776 dbg_printk(TPACPI_DBG_INIT,
777 "registering %s as an ACPI driver\n", ibm->name);
778
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300779 BUG_ON(!ibm->acpi);
780
781 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
782 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300783 printk(TPACPI_ERR
784 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300785 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300786 }
787
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200788 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300789 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200790
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300791 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300792
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300793 rc = acpi_bus_register_driver(ibm->acpi->driver);
794 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200795 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200796 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300797 kfree(ibm->acpi->driver);
798 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300799 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300800 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300801
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300802 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300803}
804
805
806/****************************************************************************
807 ****************************************************************************
808 *
809 * Procfs Helpers
810 *
811 ****************************************************************************
812 ****************************************************************************/
813
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200814static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300815{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200816 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300817
818 if (!ibm || !ibm->read)
819 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200820 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300821}
822
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200823static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300824{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200825 return single_open(file, dispatch_proc_show, PDE(inode)->data);
826}
827
828static ssize_t dispatch_proc_write(struct file *file,
829 const char __user *userbuf,
830 size_t count, loff_t *pos)
831{
832 struct ibm_struct *ibm = PDE(file->f_path.dentry->d_inode)->data;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300833 char *kernbuf;
834 int ret;
835
836 if (!ibm || !ibm->write)
837 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300838 if (count > PAGE_SIZE - 2)
839 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300840
841 kernbuf = kmalloc(count + 2, GFP_KERNEL);
842 if (!kernbuf)
843 return -ENOMEM;
844
845 if (copy_from_user(kernbuf, userbuf, count)) {
846 kfree(kernbuf);
847 return -EFAULT;
848 }
849
850 kernbuf[count] = 0;
851 strcat(kernbuf, ",");
852 ret = ibm->write(kernbuf);
853 if (ret == 0)
854 ret = count;
855
856 kfree(kernbuf);
857
858 return ret;
859}
860
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200861static const struct file_operations dispatch_proc_fops = {
862 .owner = THIS_MODULE,
863 .open = dispatch_proc_open,
864 .read = seq_read,
865 .llseek = seq_lseek,
866 .release = single_release,
867 .write = dispatch_proc_write,
868};
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static char *next_cmd(char **cmds)
871{
872 char *start = *cmds;
873 char *end;
874
875 while ((end = strchr(start, ',')) && end == start)
876 start = end + 1;
877
878 if (!end)
879 return NULL;
880
881 *end = 0;
882 *cmds = end + 1;
883 return start;
884}
885
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300886
887/****************************************************************************
888 ****************************************************************************
889 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300890 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300891 *
892 ****************************************************************************
893 ****************************************************************************/
894
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300895static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300896static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700897static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300898static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300899static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200900static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300901
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200902static int tpacpi_suspend_handler(struct platform_device *pdev,
903 pm_message_t state)
904{
905 struct ibm_struct *ibm, *itmp;
906
907 list_for_each_entry_safe(ibm, itmp,
908 &tpacpi_all_drivers,
909 all_drivers) {
910 if (ibm->suspend)
911 (ibm->suspend)(state);
912 }
913
914 return 0;
915}
916
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300917static int tpacpi_resume_handler(struct platform_device *pdev)
918{
919 struct ibm_struct *ibm, *itmp;
920
921 list_for_each_entry_safe(ibm, itmp,
922 &tpacpi_all_drivers,
923 all_drivers) {
924 if (ibm->resume)
925 (ibm->resume)();
926 }
927
928 return 0;
929}
930
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200931static void tpacpi_shutdown_handler(struct platform_device *pdev)
932{
933 struct ibm_struct *ibm, *itmp;
934
935 list_for_each_entry_safe(ibm, itmp,
936 &tpacpi_all_drivers,
937 all_drivers) {
938 if (ibm->shutdown)
939 (ibm->shutdown)();
940 }
941}
942
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300943static struct platform_driver tpacpi_pdriver = {
944 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200945 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300946 .owner = THIS_MODULE,
947 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200948 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300949 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200950 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300951};
952
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300953static struct platform_driver tpacpi_hwmon_pdriver = {
954 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200955 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300956 .owner = THIS_MODULE,
957 },
958};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300959
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300960/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300961 * sysfs support helpers
962 */
963
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200964struct attribute_set {
965 unsigned int members, max_members;
966 struct attribute_group group;
967};
968
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300969struct attribute_set_obj {
970 struct attribute_set s;
971 struct attribute *a;
972} __attribute__((packed));
973
974static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200975 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300976{
977 struct attribute_set_obj *sobj;
978
979 if (max_members == 0)
980 return NULL;
981
982 /* Allocates space for implicit NULL at the end too */
983 sobj = kzalloc(sizeof(struct attribute_set_obj) +
984 max_members * sizeof(struct attribute *),
985 GFP_KERNEL);
986 if (!sobj)
987 return NULL;
988 sobj->s.max_members = max_members;
989 sobj->s.group.attrs = &sobj->a;
990 sobj->s.group.name = name;
991
992 return &sobj->s;
993}
994
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200995#define destroy_attr_set(_set) \
996 kfree(_set);
997
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300998/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200999static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001000{
1001 if (!s || !attr)
1002 return -EINVAL;
1003
1004 if (s->members >= s->max_members)
1005 return -ENOMEM;
1006
1007 s->group.attrs[s->members] = attr;
1008 s->members++;
1009
1010 return 0;
1011}
1012
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001013static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001014 struct attribute **attr,
1015 unsigned int count)
1016{
1017 int i, res;
1018
1019 for (i = 0; i < count; i++) {
1020 res = add_to_attr_set(s, attr[i]);
1021 if (res)
1022 return res;
1023 }
1024
1025 return 0;
1026}
1027
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001028static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001029{
1030 sysfs_remove_group(kobj, &s->group);
1031 destroy_attr_set(s);
1032}
1033
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001034#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1035 sysfs_create_group(_kobj, &_attr_set->group)
1036
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001037static int parse_strtoul(const char *buf,
1038 unsigned long max, unsigned long *value)
1039{
1040 char *endp;
1041
André Goddard Rosae7d28602009-12-14 18:01:06 -08001042 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1043 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001044 if (*endp || *value > max)
1045 return -EINVAL;
1046
1047 return 0;
1048}
1049
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03001050static void tpacpi_disable_brightness_delay(void)
1051{
1052 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
1053 printk(TPACPI_NOTICE
1054 "ACPI backlight control delay disabled\n");
1055}
1056
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001057static void printk_deprecated_attribute(const char * const what,
1058 const char * const details)
1059{
1060 tpacpi_log_usertask("deprecated sysfs attribute");
1061 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1062 "will be removed. %s\n",
1063 what, details);
1064}
1065
Johannes Berg19d337d2009-06-02 13:01:37 +02001066/*************************************************************************
1067 * rfkill and radio control support helpers
1068 */
1069
1070/*
1071 * ThinkPad-ACPI firmware handling model:
1072 *
1073 * WLSW (master wireless switch) is event-driven, and is common to all
1074 * firmware-controlled radios. It cannot be controlled, just monitored,
1075 * as expected. It overrides all radio state in firmware
1076 *
1077 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1078 * (TODO: verify how WLSW interacts with the returned radio state).
1079 *
1080 * The only time there are shadow radio state changes, is when
1081 * masked-off hotkeys are used.
1082 */
1083
1084/*
1085 * Internal driver API for radio state:
1086 *
1087 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1088 * bool: true means radio blocked (off)
1089 */
1090enum tpacpi_rfkill_state {
1091 TPACPI_RFK_RADIO_OFF = 0,
1092 TPACPI_RFK_RADIO_ON
1093};
1094
1095/* rfkill switches */
1096enum tpacpi_rfk_id {
1097 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1098 TPACPI_RFK_WWAN_SW_ID,
1099 TPACPI_RFK_UWB_SW_ID,
1100 TPACPI_RFK_SW_MAX
1101};
1102
1103static const char *tpacpi_rfkill_names[] = {
1104 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1105 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1106 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1107 [TPACPI_RFK_SW_MAX] = NULL
1108};
1109
1110/* ThinkPad-ACPI rfkill subdriver */
1111struct tpacpi_rfk {
1112 struct rfkill *rfkill;
1113 enum tpacpi_rfk_id id;
1114 const struct tpacpi_rfk_ops *ops;
1115};
1116
1117struct tpacpi_rfk_ops {
1118 /* firmware interface */
1119 int (*get_status)(void);
1120 int (*set_status)(const enum tpacpi_rfkill_state);
1121};
1122
1123static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1124
1125/* Query FW and update rfkill sw state for a given rfkill switch */
1126static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1127{
1128 int status;
1129
1130 if (!tp_rfk)
1131 return -ENODEV;
1132
1133 status = (tp_rfk->ops->get_status)();
1134 if (status < 0)
1135 return status;
1136
1137 rfkill_set_sw_state(tp_rfk->rfkill,
1138 (status == TPACPI_RFK_RADIO_OFF));
1139
1140 return status;
1141}
1142
1143/* Query FW and update rfkill sw state for all rfkill switches */
1144static void tpacpi_rfk_update_swstate_all(void)
1145{
1146 unsigned int i;
1147
1148 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1149 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1150}
1151
1152/*
1153 * Sync the HW-blocking state of all rfkill switches,
1154 * do notice it causes the rfkill core to schedule uevents
1155 */
1156static void tpacpi_rfk_update_hwblock_state(bool blocked)
1157{
1158 unsigned int i;
1159 struct tpacpi_rfk *tp_rfk;
1160
1161 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1162 tp_rfk = tpacpi_rfkill_switches[i];
1163 if (tp_rfk) {
1164 if (rfkill_set_hw_state(tp_rfk->rfkill,
1165 blocked)) {
1166 /* ignore -- we track sw block */
1167 }
1168 }
1169 }
1170}
1171
1172/* Call to get the WLSW state from the firmware */
1173static int hotkey_get_wlsw(void);
1174
1175/* Call to query WLSW state and update all rfkill switches */
1176static bool tpacpi_rfk_check_hwblock_state(void)
1177{
1178 int res = hotkey_get_wlsw();
1179 int hw_blocked;
1180
1181 /* When unknown or unsupported, we have to assume it is unblocked */
1182 if (res < 0)
1183 return false;
1184
1185 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1186 tpacpi_rfk_update_hwblock_state(hw_blocked);
1187
1188 return hw_blocked;
1189}
1190
1191static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1192{
1193 struct tpacpi_rfk *tp_rfk = data;
1194 int res;
1195
1196 dbg_printk(TPACPI_DBG_RFKILL,
1197 "request to change radio state to %s\n",
1198 blocked ? "blocked" : "unblocked");
1199
1200 /* try to set radio state */
1201 res = (tp_rfk->ops->set_status)(blocked ?
1202 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1203
1204 /* and update the rfkill core with whatever the FW really did */
1205 tpacpi_rfk_update_swstate(tp_rfk);
1206
1207 return (res < 0) ? res : 0;
1208}
1209
1210static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1211 .set_block = tpacpi_rfk_hook_set_block,
1212};
1213
1214static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1215 const struct tpacpi_rfk_ops *tp_rfkops,
1216 const enum rfkill_type rfktype,
1217 const char *name,
1218 const bool set_default)
1219{
1220 struct tpacpi_rfk *atp_rfk;
1221 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001222 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001223 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001224 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001225
1226 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1227
Johannes Berg19d337d2009-06-02 13:01:37 +02001228 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1229 if (atp_rfk)
1230 atp_rfk->rfkill = rfkill_alloc(name,
1231 &tpacpi_pdev->dev,
1232 rfktype,
1233 &tpacpi_rfk_rfkill_ops,
1234 atp_rfk);
1235 if (!atp_rfk || !atp_rfk->rfkill) {
1236 printk(TPACPI_ERR
1237 "failed to allocate memory for rfkill class\n");
1238 kfree(atp_rfk);
1239 return -ENOMEM;
1240 }
1241
1242 atp_rfk->id = id;
1243 atp_rfk->ops = tp_rfkops;
1244
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001245 sw_status = (tp_rfkops->get_status)();
1246 if (sw_status < 0) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001247 printk(TPACPI_ERR
1248 "failed to read initial state for %s, error %d\n",
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001249 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001250 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001251 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001252 if (set_default) {
1253 /* try to keep the initial state, since we ask the
1254 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001255 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001256 }
1257 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001258 hw_state = tpacpi_rfk_check_hwblock_state();
1259 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001260
1261 res = rfkill_register(atp_rfk->rfkill);
1262 if (res < 0) {
1263 printk(TPACPI_ERR
1264 "failed to register %s rfkill switch: %d\n",
1265 name, res);
1266 rfkill_destroy(atp_rfk->rfkill);
1267 kfree(atp_rfk);
1268 return res;
1269 }
1270
1271 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001272
1273 printk(TPACPI_INFO "rfkill switch %s: radio is %sblocked\n",
1274 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001275 return 0;
1276}
1277
1278static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1279{
1280 struct tpacpi_rfk *tp_rfk;
1281
1282 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1283
1284 tp_rfk = tpacpi_rfkill_switches[id];
1285 if (tp_rfk) {
1286 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001287 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001288 tpacpi_rfkill_switches[id] = NULL;
1289 kfree(tp_rfk);
1290 }
1291}
1292
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001293static void printk_deprecated_rfkill_attribute(const char * const what)
1294{
1295 printk_deprecated_attribute(what,
1296 "Please switch to generic rfkill before year 2010");
1297}
1298
Johannes Berg19d337d2009-06-02 13:01:37 +02001299/* sysfs <radio> enable ------------------------------------------------ */
1300static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1301 struct device_attribute *attr,
1302 char *buf)
1303{
1304 int status;
1305
1306 printk_deprecated_rfkill_attribute(attr->attr.name);
1307
1308 /* This is in the ABI... */
1309 if (tpacpi_rfk_check_hwblock_state()) {
1310 status = TPACPI_RFK_RADIO_OFF;
1311 } else {
1312 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1313 if (status < 0)
1314 return status;
1315 }
1316
1317 return snprintf(buf, PAGE_SIZE, "%d\n",
1318 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1319}
1320
1321static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1322 struct device_attribute *attr,
1323 const char *buf, size_t count)
1324{
1325 unsigned long t;
1326 int res;
1327
1328 printk_deprecated_rfkill_attribute(attr->attr.name);
1329
1330 if (parse_strtoul(buf, 1, &t))
1331 return -EINVAL;
1332
1333 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1334
1335 /* This is in the ABI... */
1336 if (tpacpi_rfk_check_hwblock_state() && !!t)
1337 return -EPERM;
1338
1339 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1340 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1341 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1342
1343 return (res < 0) ? res : count;
1344}
1345
1346/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001347static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001348{
Johannes Berg19d337d2009-06-02 13:01:37 +02001349 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001350 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001351 else {
1352 int status;
1353
1354 /* This is in the ABI... */
1355 if (tpacpi_rfk_check_hwblock_state()) {
1356 status = TPACPI_RFK_RADIO_OFF;
1357 } else {
1358 status = tpacpi_rfk_update_swstate(
1359 tpacpi_rfkill_switches[id]);
1360 if (status < 0)
1361 return status;
1362 }
1363
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001364 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001365 (status == TPACPI_RFK_RADIO_ON) ?
1366 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001367 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001368 }
1369
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001370 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001371}
1372
1373static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1374{
1375 char *cmd;
1376 int status = -1;
1377 int res = 0;
1378
1379 if (id >= TPACPI_RFK_SW_MAX)
1380 return -ENODEV;
1381
1382 while ((cmd = next_cmd(&buf))) {
1383 if (strlencmp(cmd, "enable") == 0)
1384 status = TPACPI_RFK_RADIO_ON;
1385 else if (strlencmp(cmd, "disable") == 0)
1386 status = TPACPI_RFK_RADIO_OFF;
1387 else
1388 return -EINVAL;
1389 }
1390
1391 if (status != -1) {
1392 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1393 (status == TPACPI_RFK_RADIO_ON) ?
1394 "enable" : "disable",
1395 tpacpi_rfkill_names[id]);
1396 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1397 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1398 }
1399
1400 return res;
1401}
1402
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001403/*************************************************************************
1404 * thinkpad-acpi driver attributes
1405 */
1406
1407/* interface_version --------------------------------------------------- */
1408static ssize_t tpacpi_driver_interface_version_show(
1409 struct device_driver *drv,
1410 char *buf)
1411{
1412 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1413}
1414
1415static DRIVER_ATTR(interface_version, S_IRUGO,
1416 tpacpi_driver_interface_version_show, NULL);
1417
1418/* debug_level --------------------------------------------------------- */
1419static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1420 char *buf)
1421{
1422 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1423}
1424
1425static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1426 const char *buf, size_t count)
1427{
1428 unsigned long t;
1429
1430 if (parse_strtoul(buf, 0xffff, &t))
1431 return -EINVAL;
1432
1433 dbg_level = t;
1434
1435 return count;
1436}
1437
1438static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1439 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1440
1441/* version ------------------------------------------------------------- */
1442static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1443 char *buf)
1444{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001445 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1446 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001447}
1448
1449static DRIVER_ATTR(version, S_IRUGO,
1450 tpacpi_driver_version_show, NULL);
1451
1452/* --------------------------------------------------------------------- */
1453
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001454#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1455
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001456/* wlsw_emulstate ------------------------------------------------------ */
1457static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1458 char *buf)
1459{
1460 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1461}
1462
1463static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1464 const char *buf, size_t count)
1465{
1466 unsigned long t;
1467
1468 if (parse_strtoul(buf, 1, &t))
1469 return -EINVAL;
1470
Johannes Berg19d337d2009-06-02 13:01:37 +02001471 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001472 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001473 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1474 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001475
1476 return count;
1477}
1478
1479static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1480 tpacpi_driver_wlsw_emulstate_show,
1481 tpacpi_driver_wlsw_emulstate_store);
1482
1483/* bluetooth_emulstate ------------------------------------------------- */
1484static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1485 struct device_driver *drv,
1486 char *buf)
1487{
1488 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1489}
1490
1491static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1492 struct device_driver *drv,
1493 const char *buf, size_t count)
1494{
1495 unsigned long t;
1496
1497 if (parse_strtoul(buf, 1, &t))
1498 return -EINVAL;
1499
1500 tpacpi_bluetooth_emulstate = !!t;
1501
1502 return count;
1503}
1504
1505static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1506 tpacpi_driver_bluetooth_emulstate_show,
1507 tpacpi_driver_bluetooth_emulstate_store);
1508
1509/* wwan_emulstate ------------------------------------------------- */
1510static ssize_t tpacpi_driver_wwan_emulstate_show(
1511 struct device_driver *drv,
1512 char *buf)
1513{
1514 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1515}
1516
1517static ssize_t tpacpi_driver_wwan_emulstate_store(
1518 struct device_driver *drv,
1519 const char *buf, size_t count)
1520{
1521 unsigned long t;
1522
1523 if (parse_strtoul(buf, 1, &t))
1524 return -EINVAL;
1525
1526 tpacpi_wwan_emulstate = !!t;
1527
1528 return count;
1529}
1530
1531static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1532 tpacpi_driver_wwan_emulstate_show,
1533 tpacpi_driver_wwan_emulstate_store);
1534
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001535/* uwb_emulstate ------------------------------------------------- */
1536static ssize_t tpacpi_driver_uwb_emulstate_show(
1537 struct device_driver *drv,
1538 char *buf)
1539{
1540 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1541}
1542
1543static ssize_t tpacpi_driver_uwb_emulstate_store(
1544 struct device_driver *drv,
1545 const char *buf, size_t count)
1546{
1547 unsigned long t;
1548
1549 if (parse_strtoul(buf, 1, &t))
1550 return -EINVAL;
1551
1552 tpacpi_uwb_emulstate = !!t;
1553
1554 return count;
1555}
1556
1557static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1558 tpacpi_driver_uwb_emulstate_show,
1559 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001560#endif
1561
1562/* --------------------------------------------------------------------- */
1563
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001564static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001565 &driver_attr_debug_level, &driver_attr_version,
1566 &driver_attr_interface_version,
1567};
1568
1569static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1570{
1571 int i, res;
1572
1573 i = 0;
1574 res = 0;
1575 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1576 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1577 i++;
1578 }
1579
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001580#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1581 if (!res && dbg_wlswemul)
1582 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1583 if (!res && dbg_bluetoothemul)
1584 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1585 if (!res && dbg_wwanemul)
1586 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001587 if (!res && dbg_uwbemul)
1588 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001589#endif
1590
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001591 return res;
1592}
1593
1594static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1595{
1596 int i;
1597
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001598 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001599 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001600
1601#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1602 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1603 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1604 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001605 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001606#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001607}
1608
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001609/*************************************************************************
1610 * Firmware Data
1611 */
1612
1613/*
1614 * Table of recommended minimum BIOS versions
1615 *
1616 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001617 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001618 * bugs and bad ACPI behaviour on older versions
1619 *
1620 * 2. BIOS or EC fw with known bugs that trigger on Linux
1621 *
1622 * 3. BIOS with known reduced functionality in older versions
1623 *
1624 * We recommend the latest BIOS and EC version.
1625 * We only support the latest BIOS and EC fw version as a rule.
1626 *
1627 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1628 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001629 *
1630 * WARNING: we use this table also to detect that the machine is
1631 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001632 */
1633
1634#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1635 { .vendor = (__v), \
1636 .bios = TPID(__id1, __id2), \
1637 .ec = TPACPI_MATCH_ANY, \
1638 .quirks = TPACPI_MATCH_ANY << 16 \
1639 | (__bv1) << 8 | (__bv2) }
1640
1641#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001642 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001643 { .vendor = (__v), \
1644 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001645 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001646 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1647 | (__bv1) << 8 | (__bv2) }
1648
1649#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1650 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1651
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001652/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001653#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1654 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001655 __bv1, __bv2, TPID(__id1, __id2), \
1656 __ev1, __ev2), \
1657 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1658 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1659 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001660
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001661/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001662#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1663 __eid1, __eid2, __ev1, __ev2) \
1664 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001665 __bv1, __bv2, TPID(__eid1, __eid2), \
1666 __ev1, __ev2), \
1667 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1668 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1669 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001670
1671#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1672 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1673
1674#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1675 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001676 __bv1, __bv2, TPID(__id1, __id2), \
1677 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001678
1679#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1680 __eid1, __eid2, __ev1, __ev2) \
1681 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001682 __bv1, __bv2, TPID(__eid1, __eid2), \
1683 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001684
1685static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1686 /* Numeric models ------------------ */
1687 /* FW MODEL BIOS VERS */
1688 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1689 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1690 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1691 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1692 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1693 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1694 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1695 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1696 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1697
1698 /* A-series ------------------------- */
1699 /* FW MODEL BIOS VERS EC VERS */
1700 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1701 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1702 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1703 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1704 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1705 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1706 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1707 TPV_QI0('1', '3', '2', '0'), /* A22m */
1708 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1709 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1710 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1711
1712 /* G-series ------------------------- */
1713 /* FW MODEL BIOS VERS */
1714 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1715 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1716
1717 /* R-series, T-series --------------- */
1718 /* FW MODEL BIOS VERS EC VERS */
1719 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1720 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1721 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1722 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1723 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1724 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1725 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1726 T40/p, T41/p, T42/p (1) */
1727 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1728 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1729 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1730 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1731
1732 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1733 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1734 TPV_QI0('1', '6', '3', '2'), /* T22 */
1735 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1736 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1737 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1738
1739 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1740 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001741 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001742
1743 /* BIOS FW BIOS VERS EC FW EC VERS */
1744 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1745 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1746
1747 /* X-series ------------------------- */
1748 /* FW MODEL BIOS VERS EC VERS */
1749 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1750 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1751 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1752 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1753 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1754 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1755 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1756
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001757 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1758 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001759
1760 /* (0) - older versions lack DMI EC fw string and functionality */
1761 /* (1) - older versions known to lack functionality */
1762};
1763
1764#undef TPV_QL1
1765#undef TPV_QL0
1766#undef TPV_QI2
1767#undef TPV_QI1
1768#undef TPV_QI0
1769#undef TPV_Q_X
1770#undef TPV_Q
1771
1772static void __init tpacpi_check_outdated_fw(void)
1773{
1774 unsigned long fwvers;
1775 u16 ec_version, bios_version;
1776
1777 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1778 ARRAY_SIZE(tpacpi_bios_version_qtable));
1779
1780 if (!fwvers)
1781 return;
1782
1783 bios_version = fwvers & 0xffffU;
1784 ec_version = (fwvers >> 16) & 0xffffU;
1785
1786 /* note that unknown versions are set to 0x0000 and we use that */
1787 if ((bios_version > thinkpad_id.bios_release) ||
1788 (ec_version > thinkpad_id.ec_release &&
1789 ec_version != TPACPI_MATCH_ANY)) {
1790 /*
1791 * The changelogs would let us track down the exact
1792 * reason, but it is just too much of a pain to track
1793 * it. We only list BIOSes that are either really
1794 * broken, or really stable to begin with, so it is
1795 * best if the user upgrades the firmware anyway.
1796 */
1797 printk(TPACPI_WARN
1798 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1799 printk(TPACPI_WARN
1800 "WARNING: This firmware may be missing critical bug "
1801 "fixes and/or important features\n");
1802 }
1803}
1804
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001805static bool __init tpacpi_is_fw_known(void)
1806{
1807 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1808 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1809}
1810
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001811/****************************************************************************
1812 ****************************************************************************
1813 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001814 * Subdrivers
1815 *
1816 ****************************************************************************
1817 ****************************************************************************/
1818
1819/*************************************************************************
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03001820 * thinkpad-acpi metadata subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001821 */
1822
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001823static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001825 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1826 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001830static struct ibm_struct thinkpad_acpi_driver_data = {
1831 .name = "driver",
1832 .read = thinkpad_acpi_driver_read,
1833};
1834
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001835/*************************************************************************
1836 * Hotkey subdriver
1837 */
1838
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001839/*
1840 * ThinkPad firmware event model
1841 *
1842 * The ThinkPad firmware has two main event interfaces: normal ACPI
1843 * notifications (which follow the ACPI standard), and a private event
1844 * interface.
1845 *
1846 * The private event interface also issues events for the hotkeys. As
1847 * the driver gained features, the event handling code ended up being
1848 * built around the hotkey subdriver. This will need to be refactored
1849 * to a more formal event API eventually.
1850 *
1851 * Some "hotkeys" are actually supposed to be used as event reports,
1852 * such as "brightness has changed", "volume has changed", depending on
1853 * the ThinkPad model and how the firmware is operating.
1854 *
1855 * Unlike other classes, hotkey-class events have mask/unmask control on
1856 * non-ancient firmware. However, how it behaves changes a lot with the
1857 * firmware model and version.
1858 */
1859
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001860enum { /* hot key scan codes (derived from ACPI DSDT) */
1861 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1862 TP_ACPI_HOTKEYSCAN_FNF2,
1863 TP_ACPI_HOTKEYSCAN_FNF3,
1864 TP_ACPI_HOTKEYSCAN_FNF4,
1865 TP_ACPI_HOTKEYSCAN_FNF5,
1866 TP_ACPI_HOTKEYSCAN_FNF6,
1867 TP_ACPI_HOTKEYSCAN_FNF7,
1868 TP_ACPI_HOTKEYSCAN_FNF8,
1869 TP_ACPI_HOTKEYSCAN_FNF9,
1870 TP_ACPI_HOTKEYSCAN_FNF10,
1871 TP_ACPI_HOTKEYSCAN_FNF11,
1872 TP_ACPI_HOTKEYSCAN_FNF12,
1873 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1874 TP_ACPI_HOTKEYSCAN_FNINSERT,
1875 TP_ACPI_HOTKEYSCAN_FNDELETE,
1876 TP_ACPI_HOTKEYSCAN_FNHOME,
1877 TP_ACPI_HOTKEYSCAN_FNEND,
1878 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1879 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1880 TP_ACPI_HOTKEYSCAN_FNSPACE,
1881 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1882 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1883 TP_ACPI_HOTKEYSCAN_MUTE,
1884 TP_ACPI_HOTKEYSCAN_THINKPAD,
1885};
1886
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001887enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001888 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1889 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1890};
1891
1892enum { /* Positions of some of the keys in hotkey masks */
1893 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1894 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1895 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1896 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1897 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1898 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1899 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1900 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1901 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1902 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1903 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1904};
1905
1906enum { /* NVRAM to ACPI HKEY group map */
1907 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1908 TP_ACPI_HKEY_ZOOM_MASK |
1909 TP_ACPI_HKEY_DISPSWTCH_MASK |
1910 TP_ACPI_HKEY_HIBERNATE_MASK,
1911 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1912 TP_ACPI_HKEY_BRGHTDWN_MASK,
1913 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1914 TP_ACPI_HKEY_VOLDWN_MASK |
1915 TP_ACPI_HKEY_MUTE_MASK,
1916};
1917
1918#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1919struct tp_nvram_state {
1920 u16 thinkpad_toggle:1;
1921 u16 zoom_toggle:1;
1922 u16 display_toggle:1;
1923 u16 thinklight_toggle:1;
1924 u16 hibernate_toggle:1;
1925 u16 displayexp_toggle:1;
1926 u16 display_state:1;
1927 u16 brightness_toggle:1;
1928 u16 volume_toggle:1;
1929 u16 mute:1;
1930
1931 u8 brightness_level;
1932 u8 volume_level;
1933};
1934
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001935/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001936static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001937
1938/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001939static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001940
1941/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001942 * Acquire mutex to write poller control variables as an
1943 * atomic block.
1944 *
1945 * Increment hotkey_config_change when changing them if you
1946 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001947 *
1948 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1949 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001950static struct mutex hotkey_thread_data_mutex;
1951static unsigned int hotkey_config_change;
1952
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001953/*
1954 * hotkey poller control variables
1955 *
1956 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001957 *
1958 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1959 * should be used only when the changes need to be taken as
1960 * a block, OR when one needs to force the kthread to forget
1961 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001962 */
1963static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1964static unsigned int hotkey_poll_freq = 10; /* Hz */
1965
1966#define HOTKEY_CONFIG_CRITICAL_START \
1967 do { \
1968 mutex_lock(&hotkey_thread_data_mutex); \
1969 hotkey_config_change++; \
1970 } while (0);
1971#define HOTKEY_CONFIG_CRITICAL_END \
1972 mutex_unlock(&hotkey_thread_data_mutex);
1973
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001974#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1975
1976#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001977#define HOTKEY_CONFIG_CRITICAL_START
1978#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001979
1980#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
1981
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001982static struct mutex hotkey_mutex;
1983
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02001984static enum { /* Reasons for waking up */
1985 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
1986 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
1987 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
1988} hotkey_wakeup_reason;
1989
1990static int hotkey_autosleep_ack;
1991
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001992static u32 hotkey_orig_mask; /* events the BIOS had enabled */
1993static u32 hotkey_all_mask; /* all events supported in fw */
1994static u32 hotkey_reserved_mask; /* events better left disabled */
1995static u32 hotkey_driver_mask; /* events needed by the driver */
1996static u32 hotkey_user_mask; /* events visible to userspace */
1997static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03001998
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001999static unsigned int hotkey_report_mode;
2000
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002001static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002002
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002003static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002004
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002005static void tpacpi_driver_event(const unsigned int hkey_event);
2006static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002007static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002008
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002009/* HKEY.MHKG() return bits */
2010#define TP_HOTKEY_TABLET_MASK (1 << 3)
2011
Johannes Berg19d337d2009-06-02 13:01:37 +02002012static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002013{
Johannes Berg19d337d2009-06-02 13:01:37 +02002014 int status;
2015
2016 if (!tp_features.hotkey_wlsw)
2017 return -ENODEV;
2018
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002019#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002020 if (dbg_wlswemul)
2021 return (tpacpi_wlsw_emulstate) ?
2022 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002023#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002024
2025 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002026 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002027
2028 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002029}
2030
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002031static int hotkey_get_tablet_mode(int *status)
2032{
2033 int s;
2034
2035 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2036 return -EIO;
2037
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002038 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2039 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002040}
2041
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002042/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002043 * Reads current event mask from firmware, and updates
2044 * hotkey_acpi_mask accordingly. Also resets any bits
2045 * from hotkey_user_mask that are unavailable to be
2046 * delivered (shadow requirement of the userspace ABI).
2047 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002048 * Call with hotkey_mutex held
2049 */
2050static int hotkey_mask_get(void)
2051{
2052 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002053 u32 m = 0;
2054
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002055 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002056 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002057
2058 hotkey_acpi_mask = m;
2059 } else {
2060 /* no mask support doesn't mean no event support... */
2061 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002062 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002063
2064 /* sync userspace-visible mask */
2065 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002066
2067 return 0;
2068}
2069
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002070void static hotkey_mask_warn_incomplete_mask(void)
2071{
2072 /* log only what the user can fix... */
2073 const u32 wantedmask = hotkey_driver_mask &
2074 ~(hotkey_acpi_mask | hotkey_source_mask) &
2075 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2076
2077 if (wantedmask)
2078 printk(TPACPI_NOTICE
2079 "required events 0x%08x not enabled!\n",
2080 wantedmask);
2081}
2082
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002083/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002084 * Set the firmware mask when supported
2085 *
2086 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2087 *
2088 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2089 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002090 * Call with hotkey_mutex held
2091 */
2092static int hotkey_mask_set(u32 mask)
2093{
2094 int i;
2095 int rc = 0;
2096
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002097 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002098
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002099 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002100 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002101 if (!acpi_evalf(hkey_handle,
2102 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002103 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002104 rc = -EIO;
2105 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002106 }
2107 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002108 }
2109
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002110 /*
2111 * We *must* make an inconditional call to hotkey_mask_get to
2112 * refresh hotkey_acpi_mask and update hotkey_user_mask
2113 *
2114 * Take the opportunity to also log when we cannot _enable_
2115 * a given event.
2116 */
2117 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2118 printk(TPACPI_NOTICE
2119 "asked for hotkey mask 0x%08x, but "
2120 "firmware forced it to 0x%08x\n",
2121 fwmask, hotkey_acpi_mask);
2122 }
2123
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002124 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2125 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002126
2127 return rc;
2128}
2129
2130/*
2131 * Sets hotkey_user_mask and tries to set the firmware mask
2132 *
2133 * Call with hotkey_mutex held
2134 */
2135static int hotkey_user_mask_set(const u32 mask)
2136{
2137 int rc;
2138
2139 /* Give people a chance to notice they are doing something that
2140 * is bound to go boom on their users sooner or later */
2141 if (!tp_warned.hotkey_mask_ff &&
2142 (mask == 0xffff || mask == 0xffffff ||
2143 mask == 0xffffffff)) {
2144 tp_warned.hotkey_mask_ff = 1;
2145 printk(TPACPI_NOTICE
2146 "setting the hotkey mask to 0x%08x is likely "
2147 "not the best way to go about it\n", mask);
2148 printk(TPACPI_NOTICE
2149 "please consider using the driver defaults, "
2150 "and refer to up-to-date thinkpad-acpi "
2151 "documentation\n");
2152 }
2153
2154 /* Try to enable what the user asked for, plus whatever we need.
2155 * this syncs everything but won't enable bits in hotkey_user_mask */
2156 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2157
2158 /* Enable the available bits in hotkey_user_mask */
2159 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2160
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002161 return rc;
2162}
2163
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002164/*
2165 * Sets the driver hotkey mask.
2166 *
2167 * Can be called even if the hotkey subdriver is inactive
2168 */
2169static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2170{
2171 int rc;
2172
2173 /* Do the right thing if hotkey_init has not been called yet */
2174 if (!tp_features.hotkey) {
2175 hotkey_driver_mask = mask;
2176 return 0;
2177 }
2178
2179 mutex_lock(&hotkey_mutex);
2180
2181 HOTKEY_CONFIG_CRITICAL_START
2182 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002183#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002184 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002185#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002186 HOTKEY_CONFIG_CRITICAL_END
2187
2188 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2189 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002190 hotkey_poll_setup(true);
2191
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002192 mutex_unlock(&hotkey_mutex);
2193
2194 return rc;
2195}
2196
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002197static int hotkey_status_get(int *status)
2198{
2199 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2200 return -EIO;
2201
2202 return 0;
2203}
2204
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002205static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002206{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002207 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002208 return -EIO;
2209
2210 return 0;
2211}
2212
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002213static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002214{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002215 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002216
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002217 if (tp_features.hotkey_tablet &&
2218 !hotkey_get_tablet_mode(&state)) {
2219 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002220
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002221 input_report_switch(tpacpi_inputdev,
2222 SW_TABLET_MODE, !!state);
2223 input_sync(tpacpi_inputdev);
2224
2225 mutex_unlock(&tpacpi_inputdev_send_mutex);
2226 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002227}
2228
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002229/* Do NOT call without validating scancode first */
2230static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002231{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002232 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002233
2234 if (keycode != KEY_RESERVED) {
2235 mutex_lock(&tpacpi_inputdev_send_mutex);
2236
2237 input_report_key(tpacpi_inputdev, keycode, 1);
2238 if (keycode == KEY_UNKNOWN)
2239 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2240 scancode);
2241 input_sync(tpacpi_inputdev);
2242
2243 input_report_key(tpacpi_inputdev, keycode, 0);
2244 if (keycode == KEY_UNKNOWN)
2245 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2246 scancode);
2247 input_sync(tpacpi_inputdev);
2248
2249 mutex_unlock(&tpacpi_inputdev_send_mutex);
2250 }
2251}
2252
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002253/* Do NOT call without validating scancode first */
2254static void tpacpi_input_send_key_masked(const unsigned int scancode)
2255{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002256 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002257 if (hotkey_user_mask & (1 << scancode))
2258 tpacpi_input_send_key(scancode);
2259}
2260
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002261#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2262static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2263
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002264/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002265static void tpacpi_hotkey_send_key(unsigned int scancode)
2266{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002267 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002268 if (hotkey_report_mode < 2) {
2269 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03002270 0x80, TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002271 }
2272}
2273
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002274static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002275{
2276 u8 d;
2277
2278 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2279 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2280 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2281 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2282 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2283 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2284 }
2285 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2286 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2287 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2288 }
2289 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2290 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2291 n->displayexp_toggle =
2292 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2293 }
2294 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2295 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2296 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2297 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2298 n->brightness_toggle =
2299 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2300 }
2301 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2302 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2303 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2304 >> TP_NVRAM_POS_LEVEL_VOLUME;
2305 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2306 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2307 }
2308}
2309
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002310static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2311 struct tp_nvram_state *newn,
2312 const u32 event_mask)
2313{
2314
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002315#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002316 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002317 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002318 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002319 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002320 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002321
2322#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002323 do { \
2324 if (event_mask & (1 << __scancode)) \
2325 tpacpi_hotkey_send_key(__scancode); \
2326 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002327
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002328 void issue_volchange(const unsigned int oldvol,
2329 const unsigned int newvol)
2330 {
2331 unsigned int i = oldvol;
2332
2333 while (i > newvol) {
2334 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2335 i--;
2336 }
2337 while (i < newvol) {
2338 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2339 i++;
2340 }
2341 }
2342
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002343 void issue_brightnesschange(const unsigned int oldbrt,
2344 const unsigned int newbrt)
2345 {
2346 unsigned int i = oldbrt;
2347
2348 while (i > newbrt) {
2349 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2350 i--;
2351 }
2352 while (i < newbrt) {
2353 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2354 i++;
2355 }
2356 }
2357
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002358 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2359 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2360 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2361 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2362
2363 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2364
2365 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2366
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002367 /*
2368 * Handle volume
2369 *
2370 * This code is supposed to duplicate the IBM firmware behaviour:
2371 * - Pressing MUTE issues mute hotkey message, even when already mute
2372 * - Pressing Volume up/down issues volume up/down hotkey messages,
2373 * even when already at maximum or minumum volume
2374 * - The act of unmuting issues volume up/down notification,
2375 * depending which key was used to unmute
2376 *
2377 * We are constrained to what the NVRAM can tell us, which is not much
2378 * and certainly not enough if more than one volume hotkey was pressed
2379 * since the last poll cycle.
2380 *
2381 * Just to make our life interesting, some newer Lenovo ThinkPads have
2382 * bugs in the BIOS and may fail to update volume_toggle properly.
2383 */
2384 if (newn->mute) {
2385 /* muted */
2386 if (!oldn->mute ||
2387 oldn->volume_toggle != newn->volume_toggle ||
2388 oldn->volume_level != newn->volume_level) {
2389 /* recently muted, or repeated mute keypress, or
2390 * multiple presses ending in mute */
2391 issue_volchange(oldn->volume_level, newn->volume_level);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002392 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2393 }
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002394 } else {
2395 /* unmute */
2396 if (oldn->mute) {
2397 /* recently unmuted, issue 'unmute' keypress */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002398 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002399 }
2400 if (oldn->volume_level != newn->volume_level) {
2401 issue_volchange(oldn->volume_level, newn->volume_level);
2402 } else if (oldn->volume_toggle != newn->volume_toggle) {
2403 /* repeated vol up/down keypress at end of scale ? */
2404 if (newn->volume_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002405 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002406 else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
2407 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002408 }
2409 }
2410
2411 /* handle brightness */
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002412 if (oldn->brightness_level != newn->brightness_level) {
2413 issue_brightnesschange(oldn->brightness_level,
2414 newn->brightness_level);
2415 } else if (oldn->brightness_toggle != newn->brightness_toggle) {
2416 /* repeated key presses that didn't change state */
2417 if (newn->brightness_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002418 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002419 else if (newn->brightness_level >= bright_maxlvl
2420 && !tp_features.bright_unkfw)
2421 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002422 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002423
2424#undef TPACPI_COMPARE_KEY
2425#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002426}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002427
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002428/*
2429 * Polling driver
2430 *
2431 * We track all events in hotkey_source_mask all the time, since
2432 * most of them are edge-based. We only issue those requested by
2433 * hotkey_user_mask or hotkey_driver_mask, though.
2434 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002435static int hotkey_kthread(void *data)
2436{
2437 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002438 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002439 unsigned int si, so;
2440 unsigned long t;
2441 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002442 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002443
2444 mutex_lock(&hotkey_thread_mutex);
2445
2446 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2447 goto exit;
2448
2449 set_freezable();
2450
2451 so = 0;
2452 si = 1;
2453 t = 0;
2454
2455 /* Initial state for compares */
2456 mutex_lock(&hotkey_thread_data_mutex);
2457 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002458 poll_mask = hotkey_source_mask;
2459 event_mask = hotkey_source_mask &
2460 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002461 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002462 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002463 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002464
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002465 while (!kthread_should_stop()) {
2466 if (t == 0) {
2467 if (likely(poll_freq))
2468 t = 1000/poll_freq;
2469 else
2470 t = 100; /* should never happen... */
2471 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002472 t = msleep_interruptible(t);
2473 if (unlikely(kthread_should_stop()))
2474 break;
2475 must_reset = try_to_freeze();
2476 if (t > 0 && !must_reset)
2477 continue;
2478
2479 mutex_lock(&hotkey_thread_data_mutex);
2480 if (must_reset || hotkey_config_change != change_detector) {
2481 /* forget old state on thaw or config change */
2482 si = so;
2483 t = 0;
2484 change_detector = hotkey_config_change;
2485 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002486 poll_mask = hotkey_source_mask;
2487 event_mask = hotkey_source_mask &
2488 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002489 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002490 mutex_unlock(&hotkey_thread_data_mutex);
2491
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002492 if (likely(poll_mask)) {
2493 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002494 if (likely(si != so)) {
2495 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002496 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002497 }
2498 }
2499
2500 so = si;
2501 si ^= 1;
2502 }
2503
2504exit:
2505 mutex_unlock(&hotkey_thread_mutex);
2506 return 0;
2507}
2508
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002509/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002510static void hotkey_poll_stop_sync(void)
2511{
2512 if (tpacpi_hotkey_task) {
2513 if (frozen(tpacpi_hotkey_task) ||
2514 freezing(tpacpi_hotkey_task))
2515 thaw_process(tpacpi_hotkey_task);
2516
2517 kthread_stop(tpacpi_hotkey_task);
2518 tpacpi_hotkey_task = NULL;
2519 mutex_lock(&hotkey_thread_mutex);
2520 /* at this point, the thread did exit */
2521 mutex_unlock(&hotkey_thread_mutex);
2522 }
2523}
2524
2525/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002526static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002527{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002528 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2529 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002530
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002531 if (hotkey_poll_freq > 0 &&
2532 (poll_driver_mask ||
2533 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002534 if (!tpacpi_hotkey_task) {
2535 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002536 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002537 if (IS_ERR(tpacpi_hotkey_task)) {
2538 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002539 printk(TPACPI_ERR
2540 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002541 "for hotkey polling\n");
2542 }
2543 }
2544 } else {
2545 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002546 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002547 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002548 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002549 "hot keys 0x%08x and/or events 0x%08x "
2550 "require polling, which is currently "
2551 "disabled\n",
2552 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002553 }
2554 }
2555}
2556
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002557static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002558{
2559 mutex_lock(&hotkey_mutex);
2560 hotkey_poll_setup(may_warn);
2561 mutex_unlock(&hotkey_mutex);
2562}
2563
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002564/* call with hotkey_mutex held */
2565static void hotkey_poll_set_freq(unsigned int freq)
2566{
2567 if (!freq)
2568 hotkey_poll_stop_sync();
2569
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002570 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002571}
2572
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002573#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2574
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002575static void hotkey_poll_setup(const bool __unused)
2576{
2577}
2578
2579static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002580{
2581}
2582
2583#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2584
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002585static int hotkey_inputdev_open(struct input_dev *dev)
2586{
2587 switch (tpacpi_lifecycle) {
2588 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002589 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002590 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002591 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002592 case TPACPI_LIFE_EXITING:
2593 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002594 }
2595
2596 /* Should only happen if tpacpi_lifecycle is corrupt */
2597 BUG();
2598 return -EBUSY;
2599}
2600
2601static void hotkey_inputdev_close(struct input_dev *dev)
2602{
2603 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002604 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002605 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002606 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002607}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002608
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002609/* sysfs hotkey enable ------------------------------------------------- */
2610static ssize_t hotkey_enable_show(struct device *dev,
2611 struct device_attribute *attr,
2612 char *buf)
2613{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002614 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002615
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002616 printk_deprecated_attribute("hotkey_enable",
2617 "Hotkey reporting is always enabled");
2618
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002619 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002620 if (res)
2621 return res;
2622
2623 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2624}
2625
2626static ssize_t hotkey_enable_store(struct device *dev,
2627 struct device_attribute *attr,
2628 const char *buf, size_t count)
2629{
2630 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002631
2632 printk_deprecated_attribute("hotkey_enable",
2633 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002634
2635 if (parse_strtoul(buf, 1, &t))
2636 return -EINVAL;
2637
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002638 if (t == 0)
2639 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002640
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002641 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002642}
2643
2644static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002645 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002646 hotkey_enable_show, hotkey_enable_store);
2647
2648/* sysfs hotkey mask --------------------------------------------------- */
2649static ssize_t hotkey_mask_show(struct device *dev,
2650 struct device_attribute *attr,
2651 char *buf)
2652{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002653 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002654}
2655
2656static ssize_t hotkey_mask_store(struct device *dev,
2657 struct device_attribute *attr,
2658 const char *buf, size_t count)
2659{
2660 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002661 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002662
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002663 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002664 return -EINVAL;
2665
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002666 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002667 return -ERESTARTSYS;
2668
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002669 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002670
2671#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002672 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002673#endif
2674
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002675 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002676
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002677 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2678
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002679 return (res) ? res : count;
2680}
2681
2682static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002683 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002684 hotkey_mask_show, hotkey_mask_store);
2685
2686/* sysfs hotkey bios_enabled ------------------------------------------- */
2687static ssize_t hotkey_bios_enabled_show(struct device *dev,
2688 struct device_attribute *attr,
2689 char *buf)
2690{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002691 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002692}
2693
2694static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002695 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002696
2697/* sysfs hotkey bios_mask ---------------------------------------------- */
2698static ssize_t hotkey_bios_mask_show(struct device *dev,
2699 struct device_attribute *attr,
2700 char *buf)
2701{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002702 printk_deprecated_attribute("hotkey_bios_mask",
2703 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002704 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002705}
2706
2707static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002708 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002709
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002710/* sysfs hotkey all_mask ----------------------------------------------- */
2711static ssize_t hotkey_all_mask_show(struct device *dev,
2712 struct device_attribute *attr,
2713 char *buf)
2714{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002715 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2716 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002717}
2718
2719static struct device_attribute dev_attr_hotkey_all_mask =
2720 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2721
2722/* sysfs hotkey recommended_mask --------------------------------------- */
2723static ssize_t hotkey_recommended_mask_show(struct device *dev,
2724 struct device_attribute *attr,
2725 char *buf)
2726{
2727 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002728 (hotkey_all_mask | hotkey_source_mask)
2729 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002730}
2731
2732static struct device_attribute dev_attr_hotkey_recommended_mask =
2733 __ATTR(hotkey_recommended_mask, S_IRUGO,
2734 hotkey_recommended_mask_show, NULL);
2735
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002736#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2737
2738/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2739static ssize_t hotkey_source_mask_show(struct device *dev,
2740 struct device_attribute *attr,
2741 char *buf)
2742{
2743 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2744}
2745
2746static ssize_t hotkey_source_mask_store(struct device *dev,
2747 struct device_attribute *attr,
2748 const char *buf, size_t count)
2749{
2750 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002751 u32 r_ev;
2752 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002753
2754 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2755 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2756 return -EINVAL;
2757
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002758 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002759 return -ERESTARTSYS;
2760
2761 HOTKEY_CONFIG_CRITICAL_START
2762 hotkey_source_mask = t;
2763 HOTKEY_CONFIG_CRITICAL_END
2764
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002765 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2766 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002767 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002768
2769 /* check if events needed by the driver got disabled */
2770 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2771 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002772
2773 mutex_unlock(&hotkey_mutex);
2774
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002775 if (rc < 0)
2776 printk(TPACPI_ERR "hotkey_source_mask: failed to update the"
2777 "firmware event mask!\n");
2778
2779 if (r_ev)
2780 printk(TPACPI_NOTICE "hotkey_source_mask: "
2781 "some important events were disabled: "
2782 "0x%04x\n", r_ev);
2783
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002784 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2785
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002786 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002787}
2788
2789static struct device_attribute dev_attr_hotkey_source_mask =
2790 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2791 hotkey_source_mask_show, hotkey_source_mask_store);
2792
2793/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2794static ssize_t hotkey_poll_freq_show(struct device *dev,
2795 struct device_attribute *attr,
2796 char *buf)
2797{
2798 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2799}
2800
2801static ssize_t hotkey_poll_freq_store(struct device *dev,
2802 struct device_attribute *attr,
2803 const char *buf, size_t count)
2804{
2805 unsigned long t;
2806
2807 if (parse_strtoul(buf, 25, &t))
2808 return -EINVAL;
2809
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002810 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002811 return -ERESTARTSYS;
2812
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002813 hotkey_poll_set_freq(t);
2814 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002815
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002816 mutex_unlock(&hotkey_mutex);
2817
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002818 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2819
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002820 return count;
2821}
2822
2823static struct device_attribute dev_attr_hotkey_poll_freq =
2824 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2825 hotkey_poll_freq_show, hotkey_poll_freq_store);
2826
2827#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2828
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002829/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002830static ssize_t hotkey_radio_sw_show(struct device *dev,
2831 struct device_attribute *attr,
2832 char *buf)
2833{
Johannes Berg19d337d2009-06-02 13:01:37 +02002834 int res;
2835 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002836 if (res < 0)
2837 return res;
2838
Johannes Berg19d337d2009-06-02 13:01:37 +02002839 /* Opportunistic update */
2840 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2841
2842 return snprintf(buf, PAGE_SIZE, "%d\n",
2843 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002844}
2845
2846static struct device_attribute dev_attr_hotkey_radio_sw =
2847 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2848
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002849static void hotkey_radio_sw_notify_change(void)
2850{
2851 if (tp_features.hotkey_wlsw)
2852 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2853 "hotkey_radio_sw");
2854}
2855
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002856/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2857static ssize_t hotkey_tablet_mode_show(struct device *dev,
2858 struct device_attribute *attr,
2859 char *buf)
2860{
2861 int res, s;
2862 res = hotkey_get_tablet_mode(&s);
2863 if (res < 0)
2864 return res;
2865
2866 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2867}
2868
2869static struct device_attribute dev_attr_hotkey_tablet_mode =
2870 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2871
2872static void hotkey_tablet_mode_notify_change(void)
2873{
2874 if (tp_features.hotkey_tablet)
2875 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2876 "hotkey_tablet_mode");
2877}
2878
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002879/* sysfs hotkey report_mode -------------------------------------------- */
2880static ssize_t hotkey_report_mode_show(struct device *dev,
2881 struct device_attribute *attr,
2882 char *buf)
2883{
2884 return snprintf(buf, PAGE_SIZE, "%d\n",
2885 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2886}
2887
2888static struct device_attribute dev_attr_hotkey_report_mode =
2889 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2890
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002891/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002892static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2893 struct device_attribute *attr,
2894 char *buf)
2895{
2896 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2897}
2898
2899static struct device_attribute dev_attr_hotkey_wakeup_reason =
2900 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2901
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002902static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002903{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002904 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2905 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002906}
2907
2908/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002909static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2910 struct device_attribute *attr,
2911 char *buf)
2912{
2913 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2914}
2915
2916static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2917 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2918 hotkey_wakeup_hotunplug_complete_show, NULL);
2919
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002920static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002921{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002922 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2923 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002924}
2925
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002926/* --------------------------------------------------------------------- */
2927
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002928static struct attribute *hotkey_attributes[] __initdata = {
2929 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002930 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002931 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002932 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002933 &dev_attr_hotkey_wakeup_reason.attr,
2934 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002935 &dev_attr_hotkey_mask.attr,
2936 &dev_attr_hotkey_all_mask.attr,
2937 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002938#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002939 &dev_attr_hotkey_source_mask.attr,
2940 &dev_attr_hotkey_poll_freq.attr,
2941#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002942};
2943
Johannes Berg19d337d2009-06-02 13:01:37 +02002944/*
2945 * Sync both the hw and sw blocking state of all switches
2946 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002947static void tpacpi_send_radiosw_update(void)
2948{
2949 int wlsw;
2950
Johannes Berg19d337d2009-06-02 13:01:37 +02002951 /*
2952 * We must sync all rfkill controllers *before* issuing any
2953 * rfkill input events, or we will race the rfkill core input
2954 * handler.
2955 *
2956 * tpacpi_inputdev_send_mutex works as a syncronization point
2957 * for the above.
2958 *
2959 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2960 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002961
Johannes Berg19d337d2009-06-02 13:01:37 +02002962 wlsw = hotkey_get_wlsw();
2963
2964 /* Sync hw blocking state first if it is hw-blocked */
2965 if (wlsw == TPACPI_RFK_RADIO_OFF)
2966 tpacpi_rfk_update_hwblock_state(true);
2967
2968 /* Sync sw blocking state */
2969 tpacpi_rfk_update_swstate_all();
2970
2971 /* Sync hw blocking state last if it is hw-unblocked */
2972 if (wlsw == TPACPI_RFK_RADIO_ON)
2973 tpacpi_rfk_update_hwblock_state(false);
2974
2975 /* Issue rfkill input event for WLSW switch */
2976 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002977 mutex_lock(&tpacpi_inputdev_send_mutex);
2978
2979 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02002980 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002981 input_sync(tpacpi_inputdev);
2982
2983 mutex_unlock(&tpacpi_inputdev_send_mutex);
2984 }
Johannes Berg19d337d2009-06-02 13:01:37 +02002985
2986 /*
2987 * this can be unconditional, as we will poll state again
2988 * if userspace uses the notify to read data
2989 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002990 hotkey_radio_sw_notify_change();
2991}
2992
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002993static void hotkey_exit(void)
2994{
2995#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002996 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002997 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002998 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002999#endif
3000
3001 if (hotkey_dev_attributes)
3002 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3003
3004 kfree(hotkey_keycode_map);
3005
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003006 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003007 "restoring original HKEY status and mask\n");
3008 /* yes, there is a bitwise or below, we want the
3009 * functions to be called even if one of them fail */
3010 if (((tp_features.hotkey_mask &&
3011 hotkey_mask_set(hotkey_orig_mask)) |
3012 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003013 printk(TPACPI_ERR
3014 "failed to restore hot key mask "
3015 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003016}
3017
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003018static void __init hotkey_unmap(const unsigned int scancode)
3019{
3020 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3021 clear_bit(hotkey_keycode_map[scancode],
3022 tpacpi_inputdev->keybit);
3023 hotkey_keycode_map[scancode] = KEY_RESERVED;
3024 }
3025}
3026
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003027/*
3028 * HKEY quirks:
3029 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3030 */
3031
3032#define TPACPI_HK_Q_INIMASK 0x0001
3033
3034static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3035 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3036 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3037 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3038 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3039 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3040 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3041 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3042 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3043 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3044 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3045 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3046 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3047 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3048 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3049 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3050 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3051 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3052 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3053 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3054};
3055
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003056static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003057{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003058 /* Requirements for changing the default keymaps:
3059 *
3060 * 1. Many of the keys are mapped to KEY_RESERVED for very
3061 * good reasons. Do not change them unless you have deep
3062 * knowledge on the IBM and Lenovo ThinkPad firmware for
3063 * the various ThinkPad models. The driver behaves
3064 * differently for KEY_RESERVED: such keys have their
3065 * hot key mask *unset* in mask_recommended, and also
3066 * in the initial hot key mask programmed into the
3067 * firmware at driver load time, which means the firm-
3068 * ware may react very differently if you change them to
3069 * something else;
3070 *
3071 * 2. You must be subscribed to the linux-thinkpad and
3072 * ibm-acpi-devel mailing lists, and you should read the
3073 * list archives since 2007 if you want to change the
3074 * keymaps. This requirement exists so that you will
3075 * know the past history of problems with the thinkpad-
3076 * acpi driver keymaps, and also that you will be
3077 * listening to any bug reports;
3078 *
3079 * 3. Do not send thinkpad-acpi specific patches directly to
3080 * for merging, *ever*. Send them to the linux-acpi
3081 * mailinglist for comments. Merging is to be done only
3082 * through acpi-test and the ACPI maintainer.
3083 *
3084 * If the above is too much to ask, don't change the keymap.
3085 * Ask the thinkpad-acpi maintainer to do it, instead.
3086 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003087 static u16 ibm_keycode_map[] __initdata = {
3088 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3089 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
3090 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3091 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003092
3093 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003094 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3095 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3096 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003097
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003098 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003099 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003100 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003101
3102 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003103 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003104
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003105 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3106 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003107
3108 /* Volume: firmware always react to it and reprograms
3109 * the built-in *extra* mixer. Never map it to control
3110 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003111 KEY_RESERVED, /* 0x14: VOLUME UP */
3112 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3113 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003114
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003115 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003116
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003117 /* (assignments unknown, please report if found) */
3118 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3119 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3120 };
3121 static u16 lenovo_keycode_map[] __initdata = {
3122 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3123 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
3124 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3125 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003126
3127 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003128 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3129 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3130 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003131
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003132 /* These should be enabled --only-- when ACPI video
3133 * is disabled (i.e. in "vendor" mode), and are handled
3134 * in a special way by the init code */
3135 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3136 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003137
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003138 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003139
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003140 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3141 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003142
3143 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3144 * react to it and reprograms the built-in *extra* mixer.
3145 * Never map it to control another mixer by default.
3146 *
3147 * T60?, T61, R60?, R61: firmware and EC tries to send
3148 * these over the regular keyboard, so these are no-ops,
3149 * but there are still weird bugs re. MUTE, so do not
3150 * change unless you get test reports from all Lenovo
3151 * models. May cause the BIOS to interfere with the
3152 * HDA mixer.
3153 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003154 KEY_RESERVED, /* 0x14: VOLUME UP */
3155 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3156 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003157
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003158 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003159
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003160 /* (assignments unknown, please report if found) */
3161 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3162 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3163 };
3164
3165#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
3166#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
3167#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
3168
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003169 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003170 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003171 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003172 bool radiosw_state = false;
3173 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003174
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003175 unsigned long quirks;
3176
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003177 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3178 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003179
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003180 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003181 BUG_ON(tpacpi_inputdev->open != NULL ||
3182 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003183
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003184 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003185 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003186
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003187#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3188 mutex_init(&hotkey_thread_mutex);
3189 mutex_init(&hotkey_thread_data_mutex);
3190#endif
3191
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003192 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003193 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003194
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003195 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3196 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003197 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003198
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003199 if (!tp_features.hotkey)
3200 return 1;
3201
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003202 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3203 ARRAY_SIZE(tpacpi_hotkey_qtable));
3204
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003205 tpacpi_disable_brightness_delay();
3206
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003207 /* MUST have enough space for all attributes to be added to
3208 * hotkey_dev_attributes */
3209 hotkey_dev_attributes = create_attr_set(
3210 ARRAY_SIZE(hotkey_attributes) + 2,
3211 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003212 if (!hotkey_dev_attributes)
3213 return -ENOMEM;
3214 res = add_many_to_attr_set(hotkey_dev_attributes,
3215 hotkey_attributes,
3216 ARRAY_SIZE(hotkey_attributes));
3217 if (res)
3218 goto err_exit;
3219
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003220 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003221 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3222 for HKEY interface version 0x100 */
3223 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3224 if ((hkeyv >> 8) != 1) {
3225 printk(TPACPI_ERR "unknown version of the "
3226 "HKEY interface: 0x%x\n", hkeyv);
3227 printk(TPACPI_ERR "please report this to %s\n",
3228 TPACPI_MAIL);
3229 } else {
3230 /*
3231 * MHKV 0x100 in A31, R40, R40e,
3232 * T4x, X31, and later
3233 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003234 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3235 "firmware HKEY interface version: 0x%x\n",
3236 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003237
3238 /* Paranoia check AND init hotkey_all_mask */
3239 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3240 "MHKA", "qd")) {
3241 printk(TPACPI_ERR
3242 "missing MHKA handler, "
3243 "please report this to %s\n",
3244 TPACPI_MAIL);
3245 /* Fallback: pre-init for FN+F3,F4,F12 */
3246 hotkey_all_mask = 0x080cU;
3247 } else {
3248 tp_features.hotkey_mask = 1;
3249 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003250 }
3251 }
3252
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003253 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3254 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003255 str_supported(tp_features.hotkey_mask));
3256
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003257 /* Init hotkey_all_mask if not initialized yet */
3258 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3259 (quirks & TPACPI_HK_Q_INIMASK))
3260 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003261
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003262 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003263 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003264 /* hotkey_source_mask *must* be zero for
3265 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003266 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003267 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003268 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003269
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003270 hotkey_orig_mask = hotkey_acpi_mask;
3271 } else {
3272 hotkey_orig_mask = hotkey_all_mask;
3273 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003274 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003275
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003276#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3277 if (dbg_wlswemul) {
3278 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003279 radiosw_state = !!tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003280 printk(TPACPI_INFO
3281 "radio switch emulation enabled\n");
3282 } else
3283#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003284 /* Not all thinkpads have a hardware radio switch */
3285 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3286 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003287 radiosw_state = !!status;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003288 printk(TPACPI_INFO
3289 "radio switch found; radios are %s\n",
3290 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003291 }
3292 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003293 res = add_to_attr_set(hotkey_dev_attributes,
3294 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003295
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003296 /* For X41t, X60t, X61t Tablets... */
3297 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3298 tp_features.hotkey_tablet = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003299 tabletsw_state = !!(status & TP_HOTKEY_TABLET_MASK);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003300 printk(TPACPI_INFO
3301 "possible tablet mode switch found; "
3302 "ThinkPad in %s mode\n",
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003303 (tabletsw_state) ? "tablet" : "laptop");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003304 res = add_to_attr_set(hotkey_dev_attributes,
3305 &dev_attr_hotkey_tablet_mode.attr);
3306 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003307
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003308 if (!res)
3309 res = register_attr_set_with_sysfs(
3310 hotkey_dev_attributes,
3311 &tpacpi_pdev->dev.kobj);
3312 if (res)
3313 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003314
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003315 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003316
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003317 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3318 GFP_KERNEL);
3319 if (!hotkey_keycode_map) {
3320 printk(TPACPI_ERR
3321 "failed to allocate memory for key map\n");
3322 res = -ENOMEM;
3323 goto err_exit;
3324 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003325
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03003326 if (tpacpi_is_lenovo()) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003327 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003328 "using Lenovo default hot key map\n");
3329 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3330 TPACPI_HOTKEY_MAP_SIZE);
3331 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003332 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003333 "using IBM default hot key map\n");
3334 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3335 TPACPI_HOTKEY_MAP_SIZE);
3336 }
3337
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003338 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003339 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3340 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3341 tpacpi_inputdev->keycode = hotkey_keycode_map;
3342 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3343 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003344 input_set_capability(tpacpi_inputdev, EV_KEY,
3345 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003346 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003347 if (i < sizeof(hotkey_reserved_mask)*8)
3348 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003349 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003350 }
3351
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003352 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003353 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003354 input_report_switch(tpacpi_inputdev,
3355 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003356 }
3357 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003358 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003359 input_report_switch(tpacpi_inputdev,
3360 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003361 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003362
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003363 /* Do not issue duplicate brightness change events to
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03003364 * userspace. tpacpi_detect_brightness_capabilities() must have
3365 * been called before this point */
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003366 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003367 printk(TPACPI_INFO
3368 "This ThinkPad has standard ACPI backlight "
3369 "brightness control, supported by the ACPI "
3370 "video driver\n");
3371 printk(TPACPI_NOTICE
3372 "Disabling thinkpad-acpi brightness events "
3373 "by default...\n");
3374
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003375 /* Disable brightness up/down on Lenovo thinkpads when
3376 * ACPI is handling them, otherwise it is plain impossible
3377 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003378 hotkey_reserved_mask |=
3379 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3380 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003381 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3382 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003383 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003384
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003385#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003386 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3387 & ~hotkey_all_mask
3388 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003389
3390 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3391 "hotkey source mask 0x%08x, polling freq %u\n",
3392 hotkey_source_mask, hotkey_poll_freq);
3393#endif
3394
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003395 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3396 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003397 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003398 if (res) {
3399 hotkey_exit();
3400 return res;
3401 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003402 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3403 | hotkey_driver_mask)
3404 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003405 if (res < 0 && res != -ENXIO) {
3406 hotkey_exit();
3407 return res;
3408 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003409 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3410 & ~hotkey_reserved_mask;
3411 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3412 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3413 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003414
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003415 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3416 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003417 (hotkey_report_mode < 2) ?
3418 "enabled" : "disabled");
3419
3420 tpacpi_inputdev->open = &hotkey_inputdev_open;
3421 tpacpi_inputdev->close = &hotkey_inputdev_close;
3422
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003423 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003424
3425 return 0;
3426
3427err_exit:
3428 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3429 hotkey_dev_attributes = NULL;
3430
3431 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003432}
3433
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003434static bool hotkey_notify_hotkey(const u32 hkey,
3435 bool *send_acpi_ev,
3436 bool *ignore_acpi_ev)
3437{
3438 /* 0x1000-0x1FFF: key presses */
3439 unsigned int scancode = hkey & 0xfff;
3440 *send_acpi_ev = true;
3441 *ignore_acpi_ev = false;
3442
3443 if (scancode > 0 && scancode < 0x21) {
3444 scancode--;
3445 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003446 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003447 *send_acpi_ev = false;
3448 } else {
3449 *ignore_acpi_ev = true;
3450 }
3451 return true;
3452 }
3453 return false;
3454}
3455
3456static bool hotkey_notify_wakeup(const u32 hkey,
3457 bool *send_acpi_ev,
3458 bool *ignore_acpi_ev)
3459{
3460 /* 0x2000-0x2FFF: Wakeup reason */
3461 *send_acpi_ev = true;
3462 *ignore_acpi_ev = false;
3463
3464 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003465 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3466 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003467 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3468 *ignore_acpi_ev = true;
3469 break;
3470
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003471 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3472 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003473 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3474 *ignore_acpi_ev = true;
3475 break;
3476
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003477 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3478 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003479 printk(TPACPI_ALERT
3480 "EMERGENCY WAKEUP: battery almost empty\n");
3481 /* how to auto-heal: */
3482 /* 2313: woke up from S3, go to S4/S5 */
3483 /* 2413: woke up from S4, go to S5 */
3484 break;
3485
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003486 default:
3487 return false;
3488 }
3489
3490 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3491 printk(TPACPI_INFO
3492 "woke up due to a hot-unplug "
3493 "request...\n");
3494 hotkey_wakeup_reason_notify_change();
3495 }
3496 return true;
3497}
3498
3499static bool hotkey_notify_usrevent(const u32 hkey,
3500 bool *send_acpi_ev,
3501 bool *ignore_acpi_ev)
3502{
3503 /* 0x5000-0x5FFF: human interface helpers */
3504 *send_acpi_ev = true;
3505 *ignore_acpi_ev = false;
3506
3507 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003508 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3509 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003510 return true;
3511
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003512 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3513 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003514 tpacpi_input_send_tabletsw();
3515 hotkey_tablet_mode_notify_change();
3516 *send_acpi_ev = false;
3517 return true;
3518
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003519 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3520 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3521 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003522 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003523 *ignore_acpi_ev = true;
3524 return true;
3525
3526 default:
3527 return false;
3528 }
3529}
3530
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003531static void thermal_dump_all_sensors(void);
3532
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003533static bool hotkey_notify_thermal(const u32 hkey,
3534 bool *send_acpi_ev,
3535 bool *ignore_acpi_ev)
3536{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003537 bool known = true;
3538
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003539 /* 0x6000-0x6FFF: thermal alarms */
3540 *send_acpi_ev = true;
3541 *ignore_acpi_ev = false;
3542
3543 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003544 case TP_HKEY_EV_THM_TABLE_CHANGED:
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003545 printk(TPACPI_INFO
3546 "EC reports that Thermal Table has changed\n");
3547 /* recommended action: do nothing, we don't have
3548 * Lenovo ATM information */
3549 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003550 case TP_HKEY_EV_ALARM_BAT_HOT:
3551 printk(TPACPI_CRIT
3552 "THERMAL ALARM: battery is too hot!\n");
3553 /* recommended action: warn user through gui */
3554 break;
3555 case TP_HKEY_EV_ALARM_BAT_XHOT:
3556 printk(TPACPI_ALERT
3557 "THERMAL EMERGENCY: battery is extremely hot!\n");
3558 /* recommended action: immediate sleep/hibernate */
3559 break;
3560 case TP_HKEY_EV_ALARM_SENSOR_HOT:
3561 printk(TPACPI_CRIT
3562 "THERMAL ALARM: "
3563 "a sensor reports something is too hot!\n");
3564 /* recommended action: warn user through gui, that */
3565 /* some internal component is too hot */
3566 break;
3567 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
3568 printk(TPACPI_ALERT
3569 "THERMAL EMERGENCY: "
3570 "a sensor reports something is extremely hot!\n");
3571 /* recommended action: immediate sleep/hibernate */
3572 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003573 default:
3574 printk(TPACPI_ALERT
3575 "THERMAL ALERT: unknown thermal alarm received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003576 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003577 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003578
3579 thermal_dump_all_sensors();
3580
3581 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003582}
3583
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003584static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3585{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003586 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003587 bool send_acpi_ev;
3588 bool ignore_acpi_ev;
3589 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003590
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003591 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003592 printk(TPACPI_ERR
3593 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003594 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003595 acpi_bus_generate_netlink_event(
3596 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003597 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003598 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003599 return;
3600 }
3601
3602 while (1) {
3603 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003604 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003605 return;
3606 }
3607
3608 if (hkey == 0) {
3609 /* queue empty */
3610 return;
3611 }
3612
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003613 send_acpi_ev = true;
3614 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003615
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003616 switch (hkey >> 12) {
3617 case 1:
3618 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003619 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3620 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003621 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003622 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003623 /* 0x2000-0x2FFF: Wakeup reason */
3624 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3625 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003626 break;
3627 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003628 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003629 switch (hkey) {
3630 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003631 hotkey_autosleep_ack = 1;
3632 printk(TPACPI_INFO
3633 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003634 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003635 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003636 break;
3637 case TP_HKEY_EV_OPTDRV_EJ:
3638 /* FIXME: kick libata if SATA link offline */
3639 known_ev = true;
3640 break;
3641 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003642 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003643 }
3644 break;
3645 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003646 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003647 if (hkey == TP_HKEY_EV_UNDOCK_ACK) {
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003648 hotkey_autosleep_ack = 1;
3649 printk(TPACPI_INFO
3650 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003651 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003652 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003653 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003654 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003655 }
3656 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003657 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003658 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003659 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3660 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003661 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003662 case 6:
3663 /* 0x6000-0x6FFF: thermal alarms */
3664 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3665 &ignore_acpi_ev);
3666 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003667 case 7:
3668 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003669 if (tp_features.hotkey_wlsw &&
3670 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003671 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003672 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003673 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003674 break;
3675 }
3676 /* fallthrough to default */
3677 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003678 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003679 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003680 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003681 printk(TPACPI_NOTICE
3682 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003683 printk(TPACPI_NOTICE
3684 "please report the conditions when this "
3685 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003686 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003687
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003688 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003689 if (!ignore_acpi_ev &&
3690 (send_acpi_ev || hotkey_report_mode < 2)) {
3691 acpi_bus_generate_proc_event(ibm->acpi->device,
3692 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003693 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003694
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003695 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003696 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003697 acpi_bus_generate_netlink_event(
3698 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003699 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003700 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003701 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003702 }
3703}
3704
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003705static void hotkey_suspend(pm_message_t state)
3706{
3707 /* Do these on suspend, we get the events on early resume! */
3708 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3709 hotkey_autosleep_ack = 0;
3710}
3711
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003712static void hotkey_resume(void)
3713{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003714 tpacpi_disable_brightness_delay();
3715
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003716 if (hotkey_status_set(true) < 0 ||
3717 hotkey_mask_set(hotkey_acpi_mask) < 0)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003718 printk(TPACPI_ERR
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003719 "error while attempting to reset the event "
3720 "firmware interface\n");
3721
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003722 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003723 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003724 hotkey_wakeup_reason_notify_change();
3725 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003726 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003727}
3728
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003729/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003730static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003732 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003734 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003735 seq_printf(m, "status:\t\tnot supported\n");
3736 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003737 }
3738
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003739 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003740 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003741 res = hotkey_status_get(&status);
3742 if (!res)
3743 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003744 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003745 if (res)
3746 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003748 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003749 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003750 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
3751 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003753 seq_printf(m, "mask:\t\tnot supported\n");
3754 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 }
3756
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758}
3759
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003760static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003761{
3762 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003763 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3764 TPACPI_WARN
3765 "hotkey enable/disable functionality has been "
3766 "removed from the driver. Hotkeys are always "
3767 "enabled\n"))
3768 printk(TPACPI_ERR
3769 "Please remove the hotkey=enable module "
3770 "parameter, it is deprecated. Hotkeys are always "
3771 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003772}
3773
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003774static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003776 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003777 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003780 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 return -ENODEV;
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;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003785
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003786 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003787
3788 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 while ((cmd = next_cmd(&buf))) {
3790 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003791 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003793 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003794 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003796 mask = (hotkey_all_mask | hotkey_source_mask)
3797 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3799 /* mask set */
3800 } else if (sscanf(cmd, "%x", &mask) == 1) {
3801 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003802 } else {
3803 res = -EINVAL;
3804 goto errexit;
3805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003807
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003808 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003809 tpacpi_disclose_usertask("procfs hotkey",
3810 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003811 res = hotkey_user_mask_set(mask);
3812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003814errexit:
3815 mutex_unlock(&hotkey_mutex);
3816 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003817}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003819static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003820 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003821 {"", 0},
3822};
3823
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003824static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003825 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003826 .notify = hotkey_notify,
3827 .handle = &hkey_handle,
3828 .type = ACPI_DEVICE_NOTIFY,
3829};
3830
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003831static struct ibm_struct hotkey_driver_data = {
3832 .name = "hotkey",
3833 .read = hotkey_read,
3834 .write = hotkey_write,
3835 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003836 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003837 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003838 .acpi = &ibm_hotkey_acpidriver,
3839};
3840
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003841/*************************************************************************
3842 * Bluetooth subdriver
3843 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003845enum {
3846 /* ACPI GBDC/SBDC bits */
3847 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3848 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003849 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003850 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003851};
3852
3853enum {
3854 /* ACPI \BLTH commands */
3855 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3856 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3857 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3858 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3859 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003860};
3861
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003862#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3863
Johannes Berg19d337d2009-06-02 13:01:37 +02003864static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003865{
3866 int status;
3867
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003868#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3869 if (dbg_bluetoothemul)
3870 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003871 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003872#endif
3873
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003874 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3875 return -EIO;
3876
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003877 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003878 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003879}
3880
Johannes Berg19d337d2009-06-02 13:01:37 +02003881static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003882{
3883 int status;
3884
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003885 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003886 "will attempt to %s bluetooth\n",
3887 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003888
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003889#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3890 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003891 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003892 return 0;
3893 }
3894#endif
3895
Johannes Berg19d337d2009-06-02 13:01:37 +02003896 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003897 status = TP_ACPI_BLUETOOTH_RADIOSSW
3898 | TP_ACPI_BLUETOOTH_RESUMECTRL;
3899 else
3900 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003901
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003902 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3903 return -EIO;
3904
3905 return 0;
3906}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003907
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003908/* sysfs bluetooth enable ---------------------------------------------- */
3909static ssize_t bluetooth_enable_show(struct device *dev,
3910 struct device_attribute *attr,
3911 char *buf)
3912{
Johannes Berg19d337d2009-06-02 13:01:37 +02003913 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3914 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003915}
3916
3917static ssize_t bluetooth_enable_store(struct device *dev,
3918 struct device_attribute *attr,
3919 const char *buf, size_t count)
3920{
Johannes Berg19d337d2009-06-02 13:01:37 +02003921 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3922 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003923}
3924
3925static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003926 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003927 bluetooth_enable_show, bluetooth_enable_store);
3928
3929/* --------------------------------------------------------------------- */
3930
3931static struct attribute *bluetooth_attributes[] = {
3932 &dev_attr_bluetooth_enable.attr,
3933 NULL
3934};
3935
3936static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003937 .attrs = bluetooth_attributes,
3938};
3939
Johannes Berg19d337d2009-06-02 13:01:37 +02003940static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3941 .get_status = bluetooth_get_status,
3942 .set_status = bluetooth_set_status,
3943};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003944
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003945static void bluetooth_shutdown(void)
3946{
3947 /* Order firmware to save current state to NVRAM */
3948 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3949 TP_ACPI_BLTH_SAVE_STATE))
3950 printk(TPACPI_NOTICE
3951 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003952 else
3953 vdbg_printk(TPACPI_DBG_RFKILL,
3954 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003955}
3956
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003957static void bluetooth_exit(void)
3958{
3959 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3960 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003961
3962 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
3963
3964 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003965}
3966
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003967static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003969 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003970 int status = 0;
3971
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003972 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3973 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003974
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003975 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003976
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003977 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3978 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003979 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003980 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003982 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3983 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003984 str_supported(tp_features.bluetooth),
3985 status);
3986
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003987#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3988 if (dbg_bluetoothemul) {
3989 tp_features.bluetooth = 1;
3990 printk(TPACPI_INFO
3991 "bluetooth switch emulation enabled\n");
3992 } else
3993#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003994 if (tp_features.bluetooth &&
3995 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
3996 /* no bluetooth hardware present in system */
3997 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003998 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003999 "bluetooth hardware not installed\n");
4000 }
4001
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004002 if (!tp_features.bluetooth)
4003 return 1;
4004
Johannes Berg19d337d2009-06-02 13:01:37 +02004005 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4006 &bluetooth_tprfk_ops,
4007 RFKILL_TYPE_BLUETOOTH,
4008 TPACPI_RFK_BLUETOOTH_SW_NAME,
4009 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004010 if (res)
4011 return res;
4012
Johannes Berg19d337d2009-06-02 13:01:37 +02004013 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4014 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004015 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004016 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004017 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004018 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004019
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021}
4022
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004023/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004024static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004026 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027}
4028
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004029static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030{
Johannes Berg19d337d2009-06-02 13:01:37 +02004031 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032}
4033
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004034static struct ibm_struct bluetooth_driver_data = {
4035 .name = "bluetooth",
4036 .read = bluetooth_read,
4037 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004038 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004039 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004040};
4041
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004042/*************************************************************************
4043 * Wan subdriver
4044 */
4045
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004046enum {
4047 /* ACPI GWAN/SWAN bits */
4048 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4049 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004050 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004051 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004052};
4053
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004054#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4055
Johannes Berg19d337d2009-06-02 13:01:37 +02004056static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004057{
4058 int status;
4059
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004060#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4061 if (dbg_wwanemul)
4062 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004063 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004064#endif
4065
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004066 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4067 return -EIO;
4068
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004069 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004070 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004071}
4072
Johannes Berg19d337d2009-06-02 13:01:37 +02004073static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004074{
4075 int status;
4076
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004077 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004078 "will attempt to %s wwan\n",
4079 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004080
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004081#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4082 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004083 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004084 return 0;
4085 }
4086#endif
4087
Johannes Berg19d337d2009-06-02 13:01:37 +02004088 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004089 status = TP_ACPI_WANCARD_RADIOSSW
4090 | TP_ACPI_WANCARD_RESUMECTRL;
4091 else
4092 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004093
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004094 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4095 return -EIO;
4096
4097 return 0;
4098}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004099
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004100/* sysfs wan enable ---------------------------------------------------- */
4101static ssize_t wan_enable_show(struct device *dev,
4102 struct device_attribute *attr,
4103 char *buf)
4104{
Johannes Berg19d337d2009-06-02 13:01:37 +02004105 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4106 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004107}
4108
4109static ssize_t wan_enable_store(struct device *dev,
4110 struct device_attribute *attr,
4111 const char *buf, size_t count)
4112{
Johannes Berg19d337d2009-06-02 13:01:37 +02004113 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4114 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004115}
4116
4117static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004118 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004119 wan_enable_show, wan_enable_store);
4120
4121/* --------------------------------------------------------------------- */
4122
4123static struct attribute *wan_attributes[] = {
4124 &dev_attr_wan_enable.attr,
4125 NULL
4126};
4127
4128static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004129 .attrs = wan_attributes,
4130};
4131
Johannes Berg19d337d2009-06-02 13:01:37 +02004132static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4133 .get_status = wan_get_status,
4134 .set_status = wan_set_status,
4135};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004136
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004137static void wan_shutdown(void)
4138{
4139 /* Order firmware to save current state to NVRAM */
4140 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4141 TP_ACPI_WGSV_SAVE_STATE))
4142 printk(TPACPI_NOTICE
4143 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004144 else
4145 vdbg_printk(TPACPI_DBG_RFKILL,
4146 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004147}
4148
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004149static void wan_exit(void)
4150{
4151 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4152 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004153
4154 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4155
4156 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004157}
4158
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004159static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004160{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004161 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004162 int status = 0;
4163
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004164 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4165 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004166
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004167 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004168
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004169 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004170 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004171
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004172 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4173 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004174 str_supported(tp_features.wan),
4175 status);
4176
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004177#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4178 if (dbg_wwanemul) {
4179 tp_features.wan = 1;
4180 printk(TPACPI_INFO
4181 "wwan switch emulation enabled\n");
4182 } else
4183#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004184 if (tp_features.wan &&
4185 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4186 /* no wan hardware present in system */
4187 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004188 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004189 "wan hardware not installed\n");
4190 }
4191
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004192 if (!tp_features.wan)
4193 return 1;
4194
Johannes Berg19d337d2009-06-02 13:01:37 +02004195 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4196 &wan_tprfk_ops,
4197 RFKILL_TYPE_WWAN,
4198 TPACPI_RFK_WWAN_SW_NAME,
4199 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004200 if (res)
4201 return res;
4202
Johannes Berg19d337d2009-06-02 13:01:37 +02004203 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4204 &wan_attr_group);
4205
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004206 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004207 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004208 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004209 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004210
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004211 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004212}
4213
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004214/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004215static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004216{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004217 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004218}
4219
4220static int wan_write(char *buf)
4221{
Johannes Berg19d337d2009-06-02 13:01:37 +02004222 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004223}
4224
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004225static struct ibm_struct wan_driver_data = {
4226 .name = "wan",
4227 .read = wan_read,
4228 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004229 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004230 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004231};
4232
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004233/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004234 * UWB subdriver
4235 */
4236
4237enum {
4238 /* ACPI GUWB/SUWB bits */
4239 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4240 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4241};
4242
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004243#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4244
Johannes Berg19d337d2009-06-02 13:01:37 +02004245static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004246{
4247 int status;
4248
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004249#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4250 if (dbg_uwbemul)
4251 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004252 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004253#endif
4254
4255 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4256 return -EIO;
4257
4258 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004259 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004260}
4261
Johannes Berg19d337d2009-06-02 13:01:37 +02004262static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004263{
4264 int status;
4265
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004266 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004267 "will attempt to %s UWB\n",
4268 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004269
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004270#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4271 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004272 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004273 return 0;
4274 }
4275#endif
4276
Johannes Berg19d337d2009-06-02 13:01:37 +02004277 if (state == TPACPI_RFK_RADIO_ON)
4278 status = TP_ACPI_UWB_RADIOSSW;
4279 else
4280 status = 0;
4281
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004282 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4283 return -EIO;
4284
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004285 return 0;
4286}
4287
4288/* --------------------------------------------------------------------- */
4289
Johannes Berg19d337d2009-06-02 13:01:37 +02004290static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4291 .get_status = uwb_get_status,
4292 .set_status = uwb_set_status,
4293};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004294
4295static void uwb_exit(void)
4296{
Johannes Berg19d337d2009-06-02 13:01:37 +02004297 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004298}
4299
4300static int __init uwb_init(struct ibm_init_struct *iibm)
4301{
4302 int res;
4303 int status = 0;
4304
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004305 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4306 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004307
4308 TPACPI_ACPIHANDLE_INIT(hkey);
4309
4310 tp_features.uwb = hkey_handle &&
4311 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4312
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004313 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4314 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004315 str_supported(tp_features.uwb),
4316 status);
4317
4318#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4319 if (dbg_uwbemul) {
4320 tp_features.uwb = 1;
4321 printk(TPACPI_INFO
4322 "uwb switch emulation enabled\n");
4323 } else
4324#endif
4325 if (tp_features.uwb &&
4326 !(status & TP_ACPI_UWB_HWPRESENT)) {
4327 /* no uwb hardware present in system */
4328 tp_features.uwb = 0;
4329 dbg_printk(TPACPI_DBG_INIT,
4330 "uwb hardware not installed\n");
4331 }
4332
4333 if (!tp_features.uwb)
4334 return 1;
4335
4336 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004337 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004338 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004339 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004340 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004341 return res;
4342}
4343
4344static struct ibm_struct uwb_driver_data = {
4345 .name = "uwb",
4346 .exit = uwb_exit,
4347 .flags.experimental = 1,
4348};
4349
4350/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004351 * Video subdriver
4352 */
4353
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004354#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4355
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004356enum video_access_mode {
4357 TPACPI_VIDEO_NONE = 0,
4358 TPACPI_VIDEO_570, /* 570 */
4359 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4360 TPACPI_VIDEO_NEW, /* all others */
4361};
4362
4363enum { /* video status flags, based on VIDEO_570 */
4364 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4365 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4366 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4367};
4368
4369enum { /* TPACPI_VIDEO_570 constants */
4370 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4371 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4372 * video_status_flags */
4373 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4374 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4375};
4376
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004377static enum video_access_mode video_supported;
4378static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004379
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004380static int video_autosw_get(void);
4381static int video_autosw_set(int enable);
4382
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004383TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004384
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004385static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004387 int ivga;
4388
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004389 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4390
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004391 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004392 if (tpacpi_is_ibm())
4393 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004394
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004395 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4396 /* G41, assume IVGA doesn't change */
4397 vid_handle = vid2_handle;
4398
4399 if (!vid_handle)
4400 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004401 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004402 else if (tpacpi_is_ibm() &&
4403 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004404 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004405 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004406 else if (tpacpi_is_ibm() &&
4407 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004408 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004409 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004410 else
4411 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004412 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004414 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4415 str_supported(video_supported != TPACPI_VIDEO_NONE),
4416 video_supported);
4417
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004418 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419}
4420
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004421static void video_exit(void)
4422{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004423 dbg_printk(TPACPI_DBG_EXIT,
4424 "restoring original video autoswitch mode\n");
4425 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004426 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004427 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004428}
4429
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004430static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431{
4432 int status = 0;
4433 int i;
4434
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004435 switch (video_supported) {
4436 case TPACPI_VIDEO_570:
4437 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4438 TP_ACPI_VIDEO_570_PHSCMD))
4439 return -EIO;
4440 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4441 break;
4442 case TPACPI_VIDEO_770:
4443 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4444 return -EIO;
4445 if (i)
4446 status |= TP_ACPI_VIDEO_S_LCD;
4447 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4448 return -EIO;
4449 if (i)
4450 status |= TP_ACPI_VIDEO_S_CRT;
4451 break;
4452 case TPACPI_VIDEO_NEW:
4453 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4454 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4455 return -EIO;
4456 if (i)
4457 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004459 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4460 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4461 return -EIO;
4462 if (i)
4463 status |= TP_ACPI_VIDEO_S_LCD;
4464 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4465 return -EIO;
4466 if (i)
4467 status |= TP_ACPI_VIDEO_S_DVI;
4468 break;
4469 default:
4470 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
4473 return status;
4474}
4475
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004476static int video_outputsw_set(int status)
4477{
4478 int autosw;
4479 int res = 0;
4480
4481 switch (video_supported) {
4482 case TPACPI_VIDEO_570:
4483 res = acpi_evalf(NULL, NULL,
4484 "\\_SB.PHS2", "vdd",
4485 TP_ACPI_VIDEO_570_PHS2CMD,
4486 status | TP_ACPI_VIDEO_570_PHS2SET);
4487 break;
4488 case TPACPI_VIDEO_770:
4489 autosw = video_autosw_get();
4490 if (autosw < 0)
4491 return autosw;
4492
4493 res = video_autosw_set(1);
4494 if (res)
4495 return res;
4496 res = acpi_evalf(vid_handle, NULL,
4497 "ASWT", "vdd", status * 0x100, 0);
4498 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004499 printk(TPACPI_ERR
4500 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004501 return -EIO;
4502 }
4503 break;
4504 case TPACPI_VIDEO_NEW:
4505 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004506 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004507 break;
4508 default:
4509 return -ENOSYS;
4510 }
4511
4512 return (res)? 0 : -EIO;
4513}
4514
4515static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004517 int autosw = 0;
4518
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004519 switch (video_supported) {
4520 case TPACPI_VIDEO_570:
4521 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4522 return -EIO;
4523 break;
4524 case TPACPI_VIDEO_770:
4525 case TPACPI_VIDEO_NEW:
4526 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4527 return -EIO;
4528 break;
4529 default:
4530 return -ENOSYS;
4531 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004532
4533 return autosw & 1;
4534}
4535
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004536static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004537{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004538 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004539 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004540 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004541}
4542
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004543static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004544{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004545 int autosw = video_autosw_get();
4546 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004547
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004548 if (autosw < 0)
4549 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004550
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004551 switch (video_supported) {
4552 case TPACPI_VIDEO_570:
4553 res = video_autosw_set(1);
4554 if (res)
4555 return res;
4556 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4557 break;
4558 case TPACPI_VIDEO_770:
4559 case TPACPI_VIDEO_NEW:
4560 res = video_autosw_set(1);
4561 if (res)
4562 return res;
4563 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4564 break;
4565 default:
4566 return -ENOSYS;
4567 }
4568 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004569 printk(TPACPI_ERR
4570 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004571 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004572 }
4573
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004574 return (res)? 0 : -EIO;
4575}
4576
4577static int video_expand_toggle(void)
4578{
4579 switch (video_supported) {
4580 case TPACPI_VIDEO_570:
4581 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4582 0 : -EIO;
4583 case TPACPI_VIDEO_770:
4584 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4585 0 : -EIO;
4586 case TPACPI_VIDEO_NEW:
4587 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4588 0 : -EIO;
4589 default:
4590 return -ENOSYS;
4591 }
4592 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004593}
4594
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004595static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004596{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004597 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004598
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004599 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004600 seq_printf(m, "status:\t\tnot supported\n");
4601 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004602 }
4603
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004604 /* Even reads can crash X.org, so... */
4605 if (!capable(CAP_SYS_ADMIN))
4606 return -EPERM;
4607
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004608 status = video_outputsw_get();
4609 if (status < 0)
4610 return status;
4611
4612 autosw = video_autosw_get();
4613 if (autosw < 0)
4614 return autosw;
4615
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004616 seq_printf(m, "status:\t\tsupported\n");
4617 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4618 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004619 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004620 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4621 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4622 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4623 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004624 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004625 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4626 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4627 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004628
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004629 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004630}
4631
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004632static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633{
4634 char *cmd;
4635 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004636 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004638 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004639 return -ENODEV;
4640
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004641 /* Even reads can crash X.org, let alone writes... */
4642 if (!capable(CAP_SYS_ADMIN))
4643 return -EPERM;
4644
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004645 enable = 0;
4646 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
4648 while ((cmd = next_cmd(&buf))) {
4649 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004650 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004652 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004654 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004656 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004657 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004658 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004659 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004660 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004661 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004662 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004664 res = video_autosw_set(1);
4665 if (res)
4666 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004668 res = video_autosw_set(0);
4669 if (res)
4670 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004672 res = video_outputsw_cycle();
4673 if (res)
4674 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004676 res = video_expand_toggle();
4677 if (res)
4678 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 } else
4680 return -EINVAL;
4681 }
4682
4683 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004684 status = video_outputsw_get();
4685 if (status < 0)
4686 return status;
4687 res = video_outputsw_set((status & ~disable) | enable);
4688 if (res)
4689 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 }
4691
4692 return 0;
4693}
4694
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004695static struct ibm_struct video_driver_data = {
4696 .name = "video",
4697 .read = video_read,
4698 .write = video_write,
4699 .exit = video_exit,
4700};
4701
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004702#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4703
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004704/*************************************************************************
4705 * Light (thinklight) subdriver
4706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004708TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4709TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004710
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004711static int light_get_status(void)
4712{
4713 int status = 0;
4714
4715 if (tp_features.light_status) {
4716 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4717 return -EIO;
4718 return (!!status);
4719 }
4720
4721 return -ENXIO;
4722}
4723
4724static int light_set_status(int status)
4725{
4726 int rc;
4727
4728 if (tp_features.light) {
4729 if (cmos_handle) {
4730 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4731 (status)?
4732 TP_CMOS_THINKLIGHT_ON :
4733 TP_CMOS_THINKLIGHT_OFF);
4734 } else {
4735 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4736 (status)? 1 : 0);
4737 }
4738 return (rc)? 0 : -EIO;
4739 }
4740
4741 return -ENXIO;
4742}
4743
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004744static void light_set_status_worker(struct work_struct *work)
4745{
4746 struct tpacpi_led_classdev *data =
4747 container_of(work, struct tpacpi_led_classdev, work);
4748
4749 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004750 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004751}
4752
4753static void light_sysfs_set(struct led_classdev *led_cdev,
4754 enum led_brightness brightness)
4755{
4756 struct tpacpi_led_classdev *data =
4757 container_of(led_cdev,
4758 struct tpacpi_led_classdev,
4759 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004760 data->new_state = (brightness != LED_OFF) ?
4761 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004762 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004763}
4764
4765static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4766{
4767 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4768}
4769
4770static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4771 .led_classdev = {
4772 .name = "tpacpi::thinklight",
4773 .brightness_set = &light_sysfs_set,
4774 .brightness_get = &light_sysfs_get,
4775 }
4776};
4777
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004778static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004780 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004781
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004782 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4783
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004784 if (tpacpi_is_ibm()) {
4785 TPACPI_ACPIHANDLE_INIT(ledb);
4786 TPACPI_ACPIHANDLE_INIT(lght);
4787 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004788 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004789 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004790
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004791 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004792 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004793
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004794 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004795 /* light status not supported on
4796 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004797 tp_features.light_status =
4798 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004800 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4801 str_supported(tp_features.light),
4802 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004803
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004804 if (!tp_features.light)
4805 return 1;
4806
4807 rc = led_classdev_register(&tpacpi_pdev->dev,
4808 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004809
4810 if (rc < 0) {
4811 tp_features.light = 0;
4812 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004813 } else {
4814 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004815 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004816
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004817 return rc;
4818}
4819
4820static void light_exit(void)
4821{
4822 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4823 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004824 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825}
4826
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004827static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004829 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004831 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004832 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004833 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004834 seq_printf(m, "status:\t\tunknown\n");
4835 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004836 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004837 status = light_get_status();
4838 if (status < 0)
4839 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004840 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
4841 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845}
4846
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004847static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004850 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004851
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004852 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004853 return -ENODEV;
4854
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 while ((cmd = next_cmd(&buf))) {
4856 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004857 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004859 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 } else
4861 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 }
4863
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004864 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865}
4866
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004867static struct ibm_struct light_driver_data = {
4868 .name = "light",
4869 .read = light_read,
4870 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004871 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004872};
4873
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004874/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004875 * CMOS subdriver
4876 */
4877
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004878/* sysfs cmos_command -------------------------------------------------- */
4879static ssize_t cmos_command_store(struct device *dev,
4880 struct device_attribute *attr,
4881 const char *buf, size_t count)
4882{
4883 unsigned long cmos_cmd;
4884 int res;
4885
4886 if (parse_strtoul(buf, 21, &cmos_cmd))
4887 return -EINVAL;
4888
4889 res = issue_thinkpad_cmos_command(cmos_cmd);
4890 return (res)? res : count;
4891}
4892
4893static struct device_attribute dev_attr_cmos_command =
4894 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4895
4896/* --------------------------------------------------------------------- */
4897
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004898static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004899{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004900 int res;
4901
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004902 vdbg_printk(TPACPI_DBG_INIT,
4903 "initializing cmos commands subdriver\n");
4904
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004905 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004906
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004907 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4908 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004909
4910 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4911 if (res)
4912 return res;
4913
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004914 return (cmos_handle)? 0 : 1;
4915}
4916
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004917static void cmos_exit(void)
4918{
4919 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4920}
4921
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004922static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004924 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4925 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004927 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004929 seq_printf(m, "status:\t\tsupported\n");
4930 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 }
4932
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934}
4935
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004936static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937{
4938 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004939 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940
4941 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004942 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4943 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 /* cmos_cmd set */
4945 } else
4946 return -EINVAL;
4947
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004948 res = issue_thinkpad_cmos_command(cmos_cmd);
4949 if (res)
4950 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 }
4952
4953 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004954}
4955
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004956static struct ibm_struct cmos_driver_data = {
4957 .name = "cmos",
4958 .read = cmos_read,
4959 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004960 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004961};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004962
4963/*************************************************************************
4964 * LED subdriver
4965 */
4966
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004967enum led_access_mode {
4968 TPACPI_LED_NONE = 0,
4969 TPACPI_LED_570, /* 570 */
4970 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4971 TPACPI_LED_NEW, /* all others */
4972};
4973
4974enum { /* For TPACPI_LED_OLD */
4975 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4976 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
4977 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
4978};
4979
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004980static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004981
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004982TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004983 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
4984 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004985 "LED", /* all others */
4986 ); /* R30, R31 */
4987
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03004988#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004989static struct tpacpi_led_classdev *tpacpi_leds;
4990static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07004991static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03004992 /* there's a limit of 19 chars + NULL before 2.6.26 */
4993 "tpacpi::power",
4994 "tpacpi:orange:batt",
4995 "tpacpi:green:batt",
4996 "tpacpi::dock_active",
4997 "tpacpi::bay_active",
4998 "tpacpi::dock_batt",
4999 "tpacpi::unknown_led",
5000 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005001 "tpacpi::dock_status1",
5002 "tpacpi::dock_status2",
5003 "tpacpi::unknown_led2",
5004 "tpacpi::unknown_led3",
5005 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005006};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005007#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005008
5009static inline bool tpacpi_is_led_restricted(const unsigned int led)
5010{
5011#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5012 return false;
5013#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005014 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005015#endif
5016}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005017
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005018static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005019{
5020 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005021 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005022
5023 switch (led_supported) {
5024 case TPACPI_LED_570:
5025 if (!acpi_evalf(ec_handle,
5026 &status, "GLED", "dd", 1 << led))
5027 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005028 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005029 TPACPI_LED_OFF :
5030 ((status == 1)?
5031 TPACPI_LED_ON :
5032 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005033 tpacpi_led_state_cache[led] = led_s;
5034 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005035 default:
5036 return -ENXIO;
5037 }
5038
5039 /* not reached */
5040}
5041
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005042static int led_set_status(const unsigned int led,
5043 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005044{
5045 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005046 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5047 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005048
5049 int rc = 0;
5050
5051 switch (led_supported) {
5052 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005053 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005054 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005055 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005056 if (unlikely(tpacpi_is_led_restricted(led)))
5057 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005058 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5059 (1 << led), led_sled_arg1[ledstatus]))
5060 rc = -EIO;
5061 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005062 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005063 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005064 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005065 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005066 if (unlikely(tpacpi_is_led_restricted(led)))
5067 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005068 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5069 if (rc >= 0)
5070 rc = ec_write(TPACPI_LED_EC_HLBL,
5071 (ledstatus == TPACPI_LED_BLINK) << led);
5072 if (rc >= 0)
5073 rc = ec_write(TPACPI_LED_EC_HLCL,
5074 (ledstatus != TPACPI_LED_OFF) << led);
5075 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005076 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005077 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005078 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5079 return -EINVAL;
5080 if (unlikely(tpacpi_is_led_restricted(led)))
5081 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005082 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5083 led, led_led_arg1[ledstatus]))
5084 rc = -EIO;
5085 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005086 default:
5087 rc = -ENXIO;
5088 }
5089
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005090 if (!rc)
5091 tpacpi_led_state_cache[led] = ledstatus;
5092
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005093 return rc;
5094}
5095
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005096static void led_set_status_worker(struct work_struct *work)
5097{
5098 struct tpacpi_led_classdev *data =
5099 container_of(work, struct tpacpi_led_classdev, work);
5100
5101 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005102 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005103}
5104
5105static void led_sysfs_set(struct led_classdev *led_cdev,
5106 enum led_brightness brightness)
5107{
5108 struct tpacpi_led_classdev *data = container_of(led_cdev,
5109 struct tpacpi_led_classdev, led_classdev);
5110
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005111 if (brightness == LED_OFF)
5112 data->new_state = TPACPI_LED_OFF;
5113 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5114 data->new_state = TPACPI_LED_ON;
5115 else
5116 data->new_state = TPACPI_LED_BLINK;
5117
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005118 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005119}
5120
5121static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5122 unsigned long *delay_on, unsigned long *delay_off)
5123{
5124 struct tpacpi_led_classdev *data = container_of(led_cdev,
5125 struct tpacpi_led_classdev, led_classdev);
5126
5127 /* Can we choose the flash rate? */
5128 if (*delay_on == 0 && *delay_off == 0) {
5129 /* yes. set them to the hardware blink rate (1 Hz) */
5130 *delay_on = 500; /* ms */
5131 *delay_off = 500; /* ms */
5132 } else if ((*delay_on != 500) || (*delay_off != 500))
5133 return -EINVAL;
5134
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005135 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005136 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005137
5138 return 0;
5139}
5140
5141static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5142{
5143 int rc;
5144
5145 struct tpacpi_led_classdev *data = container_of(led_cdev,
5146 struct tpacpi_led_classdev, led_classdev);
5147
5148 rc = led_get_status(data->led);
5149
5150 if (rc == TPACPI_LED_OFF || rc < 0)
5151 rc = LED_OFF; /* no error handling in led class :( */
5152 else
5153 rc = LED_FULL;
5154
5155 return rc;
5156}
5157
5158static void led_exit(void)
5159{
5160 unsigned int i;
5161
5162 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5163 if (tpacpi_leds[i].led_classdev.name)
5164 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5165 }
5166
5167 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005168}
5169
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005170static int __init tpacpi_init_led(unsigned int led)
5171{
5172 int rc;
5173
5174 tpacpi_leds[led].led = led;
5175
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005176 /* LEDs with no name don't get registered */
5177 if (!tpacpi_led_names[led])
5178 return 0;
5179
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005180 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5181 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5182 if (led_supported == TPACPI_LED_570)
5183 tpacpi_leds[led].led_classdev.brightness_get =
5184 &led_sysfs_get;
5185
5186 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5187
5188 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5189
5190 rc = led_classdev_register(&tpacpi_pdev->dev,
5191 &tpacpi_leds[led].led_classdev);
5192 if (rc < 0)
5193 tpacpi_leds[led].led_classdev.name = NULL;
5194
5195 return rc;
5196}
5197
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005198static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5199 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5200 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5201 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5202
5203 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5204 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5205 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5206 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5207 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5208 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5209 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5210 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5211
5212 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5213 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5214 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5215 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5216 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5217
5218 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5219 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5220 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5221 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5222
5223 /* (1) - may have excess leds enabled on MSB */
5224
5225 /* Defaults (order matters, keep last, don't reorder!) */
5226 { /* Lenovo */
5227 .vendor = PCI_VENDOR_ID_LENOVO,
5228 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5229 .quirks = 0x1fffU,
5230 },
5231 { /* IBM ThinkPads with no EC version string */
5232 .vendor = PCI_VENDOR_ID_IBM,
5233 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5234 .quirks = 0x00ffU,
5235 },
5236 { /* IBM ThinkPads with EC version string */
5237 .vendor = PCI_VENDOR_ID_IBM,
5238 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5239 .quirks = 0x00bfU,
5240 },
5241};
5242
5243#undef TPACPI_LEDQ_IBM
5244#undef TPACPI_LEDQ_LNV
5245
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005246static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005247{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005248 unsigned int i;
5249 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005250 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005251
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005252 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5253
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005254 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005255
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005256 if (!led_handle)
5257 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005258 led_supported = TPACPI_LED_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005259 else if (tpacpi_is_ibm() && strlencmp(led_path, "SLED") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005260 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005261 led_supported = TPACPI_LED_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005262 else if (tpacpi_is_ibm() && strlencmp(led_path, "SYSL") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005263 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005264 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005265 else
5266 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005267 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005268
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005269 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5270 str_supported(led_supported), led_supported);
5271
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005272 if (led_supported == TPACPI_LED_NONE)
5273 return 1;
5274
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005275 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5276 GFP_KERNEL);
5277 if (!tpacpi_leds) {
5278 printk(TPACPI_ERR "Out of memory for LED data\n");
5279 return -ENOMEM;
5280 }
5281
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005282 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5283 ARRAY_SIZE(led_useful_qtable));
5284
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005285 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005286 if (!tpacpi_is_led_restricted(i) &&
5287 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005288 rc = tpacpi_init_led(i);
5289 if (rc < 0) {
5290 led_exit();
5291 return rc;
5292 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005293 }
5294 }
5295
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005296#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005297 printk(TPACPI_NOTICE
5298 "warning: userspace override of important "
5299 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005300#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005301 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005302}
5303
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005304#define str_led_status(s) \
5305 ((s) == TPACPI_LED_OFF ? "off" : \
5306 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005307
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005308static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005310 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005311 seq_printf(m, "status:\t\tnot supported\n");
5312 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005313 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005314 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005315
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005316 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005317 /* 570 */
5318 int i, status;
5319 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005320 status = led_get_status(i);
5321 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005322 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005323 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005324 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005325 }
5326 }
5327
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005328 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005329 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332}
5333
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005334static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335{
5336 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005337 int led, rc;
5338 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005339
5340 if (!led_supported)
5341 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
5343 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005344 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 return -EINVAL;
5346
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005347 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005348 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005350 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005351 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005352 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005353 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005354 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005355 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005356
5357 rc = led_set_status(led, s);
5358 if (rc < 0)
5359 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 }
5361
5362 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005363}
5364
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005365static struct ibm_struct led_driver_data = {
5366 .name = "led",
5367 .read = led_read,
5368 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005369 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005370};
5371
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005372/*************************************************************************
5373 * Beep subdriver
5374 */
5375
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005376TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005377
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005378#define TPACPI_BEEP_Q1 0x0001
5379
5380static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5381 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5382 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5383};
5384
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005385static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005386{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005387 unsigned long quirks;
5388
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005389 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5390
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005391 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005392
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005393 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5394 str_supported(beep_handle != NULL));
5395
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005396 quirks = tpacpi_check_quirks(beep_quirk_table,
5397 ARRAY_SIZE(beep_quirk_table));
5398
5399 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5400
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005401 return (beep_handle)? 0 : 1;
5402}
5403
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005404static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005406 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005407 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005408 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005409 seq_printf(m, "status:\t\tsupported\n");
5410 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414}
5415
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005416static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417{
5418 char *cmd;
5419 int beep_cmd;
5420
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005421 if (!beep_handle)
5422 return -ENODEV;
5423
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005425 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5426 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 /* beep_cmd set */
5428 } else
5429 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005430 if (tp_features.beep_needs_two_args) {
5431 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5432 beep_cmd, 0))
5433 return -EIO;
5434 } else {
5435 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5436 beep_cmd))
5437 return -EIO;
5438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 }
5440
5441 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005442}
5443
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005444static struct ibm_struct beep_driver_data = {
5445 .name = "beep",
5446 .read = beep_read,
5447 .write = beep_write,
5448};
5449
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005450/*************************************************************************
5451 * Thermal subdriver
5452 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005453
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005454enum thermal_access_mode {
5455 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5456 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5457 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5458 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5459 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5460};
5461
5462enum { /* TPACPI_THERMAL_TPEC_* */
5463 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5464 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5465 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005466
5467 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005468};
5469
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005470
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005471#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5472struct ibm_thermal_sensors_struct {
5473 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5474};
5475
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005476static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005477
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005478/* idx is zero-based */
5479static int thermal_get_sensor(int idx, s32 *value)
5480{
5481 int t;
5482 s8 tmp;
5483 char tmpi[5];
5484
5485 t = TP_EC_THERMAL_TMP0;
5486
5487 switch (thermal_read_mode) {
5488#if TPACPI_MAX_THERMAL_SENSORS >= 16
5489 case TPACPI_THERMAL_TPEC_16:
5490 if (idx >= 8 && idx <= 15) {
5491 t = TP_EC_THERMAL_TMP8;
5492 idx -= 8;
5493 }
5494 /* fallthrough */
5495#endif
5496 case TPACPI_THERMAL_TPEC_8:
5497 if (idx <= 7) {
5498 if (!acpi_ec_read(t + idx, &tmp))
5499 return -EIO;
5500 *value = tmp * 1000;
5501 return 0;
5502 }
5503 break;
5504
5505 case TPACPI_THERMAL_ACPI_UPDT:
5506 if (idx <= 7) {
5507 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5508 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5509 return -EIO;
5510 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5511 return -EIO;
5512 *value = (t - 2732) * 100;
5513 return 0;
5514 }
5515 break;
5516
5517 case TPACPI_THERMAL_ACPI_TMP07:
5518 if (idx <= 7) {
5519 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5520 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5521 return -EIO;
5522 if (t > 127 || t < -127)
5523 t = TP_EC_THERMAL_TMP_NA;
5524 *value = t * 1000;
5525 return 0;
5526 }
5527 break;
5528
5529 case TPACPI_THERMAL_NONE:
5530 default:
5531 return -ENOSYS;
5532 }
5533
5534 return -EINVAL;
5535}
5536
5537static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5538{
5539 int res, i;
5540 int n;
5541
5542 n = 8;
5543 i = 0;
5544
5545 if (!s)
5546 return -EINVAL;
5547
5548 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5549 n = 16;
5550
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005551 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005552 res = thermal_get_sensor(i, &s->temp[i]);
5553 if (res)
5554 return res;
5555 }
5556
5557 return n;
5558}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005559
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005560static void thermal_dump_all_sensors(void)
5561{
5562 int n, i;
5563 struct ibm_thermal_sensors_struct t;
5564
5565 n = thermal_get_sensors(&t);
5566 if (n <= 0)
5567 return;
5568
5569 printk(TPACPI_NOTICE
5570 "temperatures (Celsius):");
5571
5572 for (i = 0; i < n; i++) {
5573 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
5574 printk(KERN_CONT " %d", (int)(t.temp[i] / 1000));
5575 else
5576 printk(KERN_CONT " N/A");
5577 }
5578
5579 printk(KERN_CONT "\n");
5580}
5581
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005582/* sysfs temp##_input -------------------------------------------------- */
5583
5584static ssize_t thermal_temp_input_show(struct device *dev,
5585 struct device_attribute *attr,
5586 char *buf)
5587{
5588 struct sensor_device_attribute *sensor_attr =
5589 to_sensor_dev_attr(attr);
5590 int idx = sensor_attr->index;
5591 s32 value;
5592 int res;
5593
5594 res = thermal_get_sensor(idx, &value);
5595 if (res)
5596 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005597 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005598 return -ENXIO;
5599
5600 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5601}
5602
5603#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005604 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5605 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005606
5607static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5608 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5609 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5610 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5611 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5612 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5613 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5614 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5615 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5616 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5617 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5618 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5619 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5620 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5621 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5622 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5623 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5624};
5625
5626#define THERMAL_ATTRS(X) \
5627 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5628
5629static struct attribute *thermal_temp_input_attr[] = {
5630 THERMAL_ATTRS(8),
5631 THERMAL_ATTRS(9),
5632 THERMAL_ATTRS(10),
5633 THERMAL_ATTRS(11),
5634 THERMAL_ATTRS(12),
5635 THERMAL_ATTRS(13),
5636 THERMAL_ATTRS(14),
5637 THERMAL_ATTRS(15),
5638 THERMAL_ATTRS(0),
5639 THERMAL_ATTRS(1),
5640 THERMAL_ATTRS(2),
5641 THERMAL_ATTRS(3),
5642 THERMAL_ATTRS(4),
5643 THERMAL_ATTRS(5),
5644 THERMAL_ATTRS(6),
5645 THERMAL_ATTRS(7),
5646 NULL
5647};
5648
5649static const struct attribute_group thermal_temp_input16_group = {
5650 .attrs = thermal_temp_input_attr
5651};
5652
5653static const struct attribute_group thermal_temp_input8_group = {
5654 .attrs = &thermal_temp_input_attr[8]
5655};
5656
5657#undef THERMAL_SENSOR_ATTR_TEMP
5658#undef THERMAL_ATTRS
5659
5660/* --------------------------------------------------------------------- */
5661
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005662static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005663{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005664 u8 t, ta1, ta2;
5665 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005666 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005667 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005668
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005669 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5670
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005671 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005672
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005673 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005674 /*
5675 * Direct EC access mode: sensors at registers
5676 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5677 * non-implemented, thermal sensors return 0x80 when
5678 * not available
5679 */
5680
5681 ta1 = ta2 = 0;
5682 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005683 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005684 ta1 |= t;
5685 } else {
5686 ta1 = 0;
5687 break;
5688 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005689 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005690 ta2 |= t;
5691 } else {
5692 ta1 = 0;
5693 break;
5694 }
5695 }
5696 if (ta1 == 0) {
5697 /* This is sheer paranoia, but we handle it anyway */
5698 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005699 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005700 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005701 "falling back to ACPI TMPx access "
5702 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005703 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005704 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005705 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005706 "ThinkPad ACPI EC access misbehaving, "
5707 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005708 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005709 }
5710 } else {
5711 thermal_read_mode =
5712 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005713 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005714 }
5715 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005716 if (tpacpi_is_ibm() &&
5717 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005718 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005719 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005720 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005721 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005722 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005723 }
5724 } else {
5725 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005726 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005727 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005728
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005729 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5730 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5731 thermal_read_mode);
5732
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005733 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005734 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005735 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005736 &thermal_temp_input16_group);
5737 if (res)
5738 return res;
5739 break;
5740 case TPACPI_THERMAL_TPEC_8:
5741 case TPACPI_THERMAL_ACPI_TMP07:
5742 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005743 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005744 &thermal_temp_input8_group);
5745 if (res)
5746 return res;
5747 break;
5748 case TPACPI_THERMAL_NONE:
5749 default:
5750 return 1;
5751 }
5752
5753 return 0;
5754}
5755
5756static void thermal_exit(void)
5757{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005758 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005759 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005760 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005761 &thermal_temp_input16_group);
5762 break;
5763 case TPACPI_THERMAL_TPEC_8:
5764 case TPACPI_THERMAL_ACPI_TMP07:
5765 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005766 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08005767 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005768 break;
5769 case TPACPI_THERMAL_NONE:
5770 default:
5771 break;
5772 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005773}
5774
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005775static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005776{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005777 int n, i;
5778 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005779
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005780 n = thermal_get_sensors(&t);
5781 if (unlikely(n < 0))
5782 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005783
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005784 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005785
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005786 if (n > 0) {
5787 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005788 seq_printf(m, "%d ", t.temp[i] / 1000);
5789 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005790 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005791 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005792
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005793 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005794}
5795
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005796static struct ibm_struct thermal_driver_data = {
5797 .name = "thermal",
5798 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005799 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005800};
5801
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005802/*************************************************************************
5803 * EC Dump subdriver
5804 */
5805
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005806static u8 ecdump_regs[256];
5807
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005808static int ecdump_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005809{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005810 int i, j;
5811 u8 v;
5812
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005813 seq_printf(m, "EC "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005814 " +00 +01 +02 +03 +04 +05 +06 +07"
5815 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5816 for (i = 0; i < 256; i += 16) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005817 seq_printf(m, "EC 0x%02x:", i);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005818 for (j = 0; j < 16; j++) {
5819 if (!acpi_ec_read(i + j, &v))
5820 break;
5821 if (v != ecdump_regs[i + j])
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005822 seq_printf(m, " *%02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005823 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005824 seq_printf(m, " %02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005825 ecdump_regs[i + j] = v;
5826 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005827 seq_putc(m, '\n');
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005828 if (j != 16)
5829 break;
5830 }
5831
5832 /* These are way too dangerous to advertise openly... */
5833#if 0
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005834 seq_printf(m, "commands:\t0x<offset> 0x<value>"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005835 " (<offset> is 00-ff, <value> is 00-ff)\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005836 seq_printf(m, "commands:\t0x<offset> <value> "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005837 " (<offset> is 00-ff, <value> is 0-255)\n");
5838#endif
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005839 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005840}
5841
5842static int ecdump_write(char *buf)
5843{
5844 char *cmd;
5845 int i, v;
5846
5847 while ((cmd = next_cmd(&buf))) {
5848 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5849 /* i and v set */
5850 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5851 /* i and v set */
5852 } else
5853 return -EINVAL;
5854 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5855 if (!acpi_ec_write(i, v))
5856 return -EIO;
5857 } else
5858 return -EINVAL;
5859 }
5860
5861 return 0;
5862}
5863
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005864static struct ibm_struct ecdump_driver_data = {
5865 .name = "ecdump",
5866 .read = ecdump_read,
5867 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005868 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005869};
5870
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005871/*************************************************************************
5872 * Backlight/brightness subdriver
5873 */
Holger Macht8acb0252006-10-20 14:30:28 -07005874
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005875#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5876
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005877/*
5878 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5879 * CMOS NVRAM byte 0x5E, bits 0-3.
5880 *
5881 * EC HBRV (0x31) has the following layout
5882 * Bit 7: unknown function
5883 * Bit 6: unknown function
5884 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5885 * Bit 4: must be set to zero to avoid problems
5886 * Bit 3-0: backlight brightness level
5887 *
5888 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005889 *
5890 * WARNING: The X61 has been verified to use HBRV for something else, so
5891 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5892 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005893 */
5894
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005895enum {
5896 TP_EC_BACKLIGHT = 0x31,
5897
5898 /* TP_EC_BACKLIGHT bitmasks */
5899 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5900 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5901 TP_EC_BACKLIGHT_MAPSW = 0x20,
5902};
5903
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005904enum tpacpi_brightness_access_mode {
5905 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5906 TPACPI_BRGHT_MODE_EC, /* EC control */
5907 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5908 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5909 TPACPI_BRGHT_MODE_MAX
5910};
5911
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005912static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005913
5914static enum tpacpi_brightness_access_mode brightness_mode =
5915 TPACPI_BRGHT_MODE_MAX;
5916
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005917static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5918
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005919static struct mutex brightness_mutex;
5920
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005921/* NVRAM brightness access,
5922 * call with brightness_mutex held! */
5923static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005924{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005925 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005926
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005927 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5928 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5929 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03005930 lnvram &= bright_maxlvl;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005931
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005932 return lnvram;
5933}
5934
5935static void tpacpi_brightness_checkpoint_nvram(void)
5936{
5937 u8 lec = 0;
5938 u8 b_nvram;
5939
5940 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5941 return;
5942
5943 vdbg_printk(TPACPI_DBG_BRGHT,
5944 "trying to checkpoint backlight level to NVRAM...\n");
5945
5946 if (mutex_lock_killable(&brightness_mutex) < 0)
5947 return;
5948
5949 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5950 goto unlock;
5951 lec &= TP_EC_BACKLIGHT_LVLMSK;
5952 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5953
5954 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5955 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
5956 /* NVRAM needs update */
5957 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
5958 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
5959 b_nvram |= lec;
5960 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
5961 dbg_printk(TPACPI_DBG_BRGHT,
5962 "updated NVRAM backlight level to %u (0x%02x)\n",
5963 (unsigned int) lec, (unsigned int) b_nvram);
5964 } else
5965 vdbg_printk(TPACPI_DBG_BRGHT,
5966 "NVRAM backlight level already is %u (0x%02x)\n",
5967 (unsigned int) lec, (unsigned int) b_nvram);
5968
5969unlock:
5970 mutex_unlock(&brightness_mutex);
5971}
5972
5973
5974/* call with brightness_mutex held! */
5975static int tpacpi_brightness_get_raw(int *status)
5976{
5977 u8 lec = 0;
5978
5979 switch (brightness_mode) {
5980 case TPACPI_BRGHT_MODE_UCMS_STEP:
5981 *status = tpacpi_brightness_nvram_get();
5982 return 0;
5983 case TPACPI_BRGHT_MODE_EC:
5984 case TPACPI_BRGHT_MODE_ECNVRAM:
5985 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005986 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005987 *status = lec;
5988 return 0;
5989 default:
5990 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005991 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005992}
5993
5994/* call with brightness_mutex held! */
5995/* do NOT call with illegal backlight level value */
5996static int tpacpi_brightness_set_ec(unsigned int value)
5997{
5998 u8 lec = 0;
5999
6000 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6001 return -EIO;
6002
6003 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6004 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6005 (value & TP_EC_BACKLIGHT_LVLMSK))))
6006 return -EIO;
6007
6008 return 0;
6009}
6010
6011/* call with brightness_mutex held! */
6012static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6013{
6014 int cmos_cmd, inc;
6015 unsigned int current_value, i;
6016
6017 current_value = tpacpi_brightness_nvram_get();
6018
6019 if (value == current_value)
6020 return 0;
6021
6022 cmos_cmd = (value > current_value) ?
6023 TP_CMOS_BRIGHTNESS_UP :
6024 TP_CMOS_BRIGHTNESS_DOWN;
6025 inc = (value > current_value) ? 1 : -1;
6026
6027 for (i = current_value; i != value; i += inc)
6028 if (issue_thinkpad_cmos_command(cmos_cmd))
6029 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006030
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006031 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006032}
6033
6034/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006035static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006036{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006037 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006038
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006039 if (value > bright_maxlvl || value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006040 return -EINVAL;
6041
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006042 vdbg_printk(TPACPI_DBG_BRGHT,
6043 "set backlight level to %d\n", value);
6044
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006045 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006046 if (res < 0)
6047 return res;
6048
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006049 switch (brightness_mode) {
6050 case TPACPI_BRGHT_MODE_EC:
6051 case TPACPI_BRGHT_MODE_ECNVRAM:
6052 res = tpacpi_brightness_set_ec(value);
6053 break;
6054 case TPACPI_BRGHT_MODE_UCMS_STEP:
6055 res = tpacpi_brightness_set_ucmsstep(value);
6056 break;
6057 default:
6058 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006059 }
6060
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006061 mutex_unlock(&brightness_mutex);
6062 return res;
6063}
6064
6065/* sysfs backlight class ----------------------------------------------- */
6066
6067static int brightness_update_status(struct backlight_device *bd)
6068{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006069 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006070 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6071 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006072 bd->props.brightness : 0;
6073
6074 dbg_printk(TPACPI_DBG_BRGHT,
6075 "backlight: attempt to set level to %d\n",
6076 level);
6077
6078 /* it is the backlight class's job (caller) to handle
6079 * EINTR and other errors properly */
6080 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006081}
Holger Macht8acb0252006-10-20 14:30:28 -07006082
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006083static int brightness_get(struct backlight_device *bd)
6084{
6085 int status, res;
6086
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006087 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006088 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006089 return 0;
6090
6091 res = tpacpi_brightness_get_raw(&status);
6092
6093 mutex_unlock(&brightness_mutex);
6094
6095 if (res < 0)
6096 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006097
6098 return status & TP_EC_BACKLIGHT_LVLMSK;
6099}
6100
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006101static void tpacpi_brightness_notify_change(void)
6102{
6103 backlight_force_update(ibm_backlight_device,
6104 BACKLIGHT_UPDATE_HOTKEY);
6105}
6106
Richard Purdie599a52d2007-02-10 23:07:48 +00006107static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006108 .get_brightness = brightness_get,
6109 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006110};
6111
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006112/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006113
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006114static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6115{
6116 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6117 union acpi_object *obj;
6118 int rc;
6119
6120 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
6121 obj = (union acpi_object *)buffer.pointer;
6122 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
6123 printk(TPACPI_ERR "Unknown _BCL data, "
6124 "please report this to %s\n", TPACPI_MAIL);
6125 rc = 0;
6126 } else {
6127 rc = obj->package.count;
6128 }
6129 } else {
6130 return 0;
6131 }
6132
6133 kfree(buffer.pointer);
6134 return rc;
6135}
6136
6137static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
6138 u32 lvl, void *context, void **rv)
6139{
6140 char name[ACPI_PATH_SEGMENT_LENGTH];
6141 struct acpi_buffer buffer = { sizeof(name), &name };
6142
6143 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
6144 !strncmp("_BCL", name, sizeof(name) - 1)) {
6145 BUG_ON(!rv || !*rv);
6146 **(int **)rv = tpacpi_query_bcl_levels(handle);
6147 return AE_CTRL_TERMINATE;
6148 } else {
6149 return AE_OK;
6150 }
6151}
6152
6153/*
6154 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6155 */
6156static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6157{
6158 int status;
6159 int bcl_levels = 0;
6160 void *bcl_ptr = &bcl_levels;
6161
6162 if (!vid_handle)
6163 TPACPI_ACPIHANDLE_INIT(vid);
6164
6165 if (!vid_handle)
6166 return 0;
6167
6168 /*
6169 * Search for a _BCL method, and execute it. This is safe on all
6170 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
6171 * BIOS in ACPI backlight control mode. We do NOT have to care
6172 * about calling the _BCL method in an enabled video device, any
6173 * will do for our purposes.
6174 */
6175
6176 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
6177 tpacpi_acpi_walk_find_bcl, NULL, NULL,
6178 &bcl_ptr);
6179
6180 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
6181 tp_features.bright_acpimode = 1;
6182 return bcl_levels - 2;
6183 }
6184
6185 return 0;
6186}
6187
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006188/*
6189 * These are only useful for models that have only one possibility
6190 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6191 * these quirks.
6192 */
6193#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6194#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6195#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6196
6197static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6198 /* Models with ATI GPUs known to require ECNVRAM mode */
6199 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6200
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006201 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006202 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006203 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006204 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006205 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6206
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006207 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006208 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006209 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6210 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006211
6212 /* Models with Intel GMA900 */
6213 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6214 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6215 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6216};
6217
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006218/*
6219 * Returns < 0 for error, otherwise sets tp_features.bright_*
6220 * and bright_maxlvl.
6221 */
6222static void __init tpacpi_detect_brightness_capabilities(void)
6223{
6224 unsigned int b;
6225
6226 vdbg_printk(TPACPI_DBG_INIT,
6227 "detecting firmware brightness interface capabilities\n");
6228
6229 /* we could run a quirks check here (same table used by
6230 * brightness_init) if needed */
6231
6232 /*
6233 * We always attempt to detect acpi support, so as to switch
6234 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6235 * going to publish a backlight interface
6236 */
6237 b = tpacpi_check_std_acpi_brightness_support();
6238 switch (b) {
6239 case 16:
6240 bright_maxlvl = 15;
6241 printk(TPACPI_INFO
6242 "detected a 16-level brightness capable ThinkPad\n");
6243 break;
6244 case 8:
6245 case 0:
6246 bright_maxlvl = 7;
6247 printk(TPACPI_INFO
6248 "detected a 8-level brightness capable ThinkPad\n");
6249 break;
6250 default:
6251 printk(TPACPI_ERR
6252 "Unsupported brightness interface, "
6253 "please contact %s\n", TPACPI_MAIL);
6254 tp_features.bright_unkfw = 1;
6255 bright_maxlvl = b - 1;
6256 }
6257}
6258
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006259static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006260{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006261 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006262 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006263 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006264
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006265 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6266
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006267 mutex_init(&brightness_mutex);
6268
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006269 quirks = tpacpi_check_quirks(brightness_quirk_table,
6270 ARRAY_SIZE(brightness_quirk_table));
6271
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006272 /* tpacpi_detect_brightness_capabilities() must have run already */
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006273
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006274 /* if it is unknown, we don't handle it: it wouldn't be safe */
6275 if (tp_features.bright_unkfw)
6276 return 1;
6277
6278 if (tp_features.bright_acpimode) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006279 if (acpi_video_backlight_support()) {
6280 if (brightness_enable > 1) {
6281 printk(TPACPI_NOTICE
6282 "Standard ACPI backlight interface "
6283 "available, not loading native one.\n");
6284 return 1;
6285 } else if (brightness_enable == 1) {
6286 printk(TPACPI_NOTICE
6287 "Backlight control force enabled, even if standard "
6288 "ACPI backlight interface is available\n");
6289 }
6290 } else {
6291 if (brightness_enable > 1) {
6292 printk(TPACPI_NOTICE
6293 "Standard ACPI backlight interface not "
6294 "available, thinkpad_acpi native "
6295 "brightness control enabled\n");
6296 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02006297 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006298 }
6299
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006300 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006301 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006302 "brightness support disabled by "
6303 "module parameter\n");
6304 return 1;
6305 }
6306
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006307 /*
6308 * Check for module parameter bogosity, note that we
6309 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6310 * able to detect "unspecified"
6311 */
6312 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006313 return -EINVAL;
6314
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006315 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6316 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6317 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006318 if (quirks & TPACPI_BRGHT_Q_EC)
6319 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6320 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006321 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6322
6323 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006324 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006325 brightness_mode);
6326 }
6327
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006328 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006329 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006330 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6331 brightness_mode == TPACPI_BRGHT_MODE_EC))
6332 return -EINVAL;
6333
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006334 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006335 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006336
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006337 memset(&props, 0, sizeof(struct backlight_properties));
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006338 props.max_brightness = bright_maxlvl;
6339 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006340 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6341 NULL, NULL,
6342 &ibm_backlight_data,
6343 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006344 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006345 int rc = PTR_ERR(ibm_backlight_device);
6346 ibm_backlight_device = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006347 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006348 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006349 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006350 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6351 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006352
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006353 if (quirks & TPACPI_BRGHT_Q_ASK) {
6354 printk(TPACPI_NOTICE
6355 "brightness: will use unverified default: "
6356 "brightness_mode=%d\n", brightness_mode);
6357 printk(TPACPI_NOTICE
6358 "brightness: please report to %s whether it works well "
6359 "or not on your ThinkPad\n", TPACPI_MAIL);
6360 }
6361
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006362 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006363
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006364 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6365 "brightness: registering brightness hotkeys "
6366 "as change notification\n");
6367 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6368 | TP_ACPI_HKEY_BRGHTUP_MASK
6369 | TP_ACPI_HKEY_BRGHTDWN_MASK);;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006370 return 0;
6371}
6372
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006373static void brightness_suspend(pm_message_t state)
6374{
6375 tpacpi_brightness_checkpoint_nvram();
6376}
6377
6378static void brightness_shutdown(void)
6379{
6380 tpacpi_brightness_checkpoint_nvram();
6381}
6382
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006383static void brightness_exit(void)
6384{
6385 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006386 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006387 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006388 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006389 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006390
6391 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006392}
6393
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006394static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006395{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006396 int level;
6397
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006398 level = brightness_get(NULL);
6399 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006400 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006401 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006402 seq_printf(m, "level:\t\t%d\n", level);
6403 seq_printf(m, "commands:\tup, down\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006404 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
6405 bright_maxlvl);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006406 }
6407
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006408 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006409}
6410
6411static int brightness_write(char *buf)
6412{
6413 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006414 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006415 char *cmd;
6416
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006417 level = brightness_get(NULL);
6418 if (level < 0)
6419 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006420
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006421 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006422 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006423 if (level < bright_maxlvl)
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006424 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006425 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006426 if (level > 0)
6427 level--;
6428 } else if (sscanf(cmd, "level %d", &level) == 1 &&
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006429 level >= 0 && level <= bright_maxlvl) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006430 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006431 } else
6432 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006433 }
6434
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006435 tpacpi_disclose_usertask("procfs brightness",
6436 "set level to %d\n", level);
6437
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006438 /*
6439 * Now we know what the final level should be, so we try to set it.
6440 * Doing it this way makes the syscall restartable in case of EINTR
6441 */
6442 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006443 if (!rc && ibm_backlight_device)
6444 backlight_force_update(ibm_backlight_device,
6445 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006446 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006447}
6448
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006449static struct ibm_struct brightness_driver_data = {
6450 .name = "brightness",
6451 .read = brightness_read,
6452 .write = brightness_write,
6453 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006454 .suspend = brightness_suspend,
6455 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006456};
6457
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006458/*************************************************************************
6459 * Volume subdriver
6460 */
6461
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006462/*
6463 * IBM ThinkPads have a simple volume controller with MUTE gating.
6464 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6465 *
6466 * Since the *61 series (and probably also the later *60 series), Lenovo
6467 * ThinkPads only implement the MUTE gate.
6468 *
6469 * EC register 0x30
6470 * Bit 6: MUTE (1 mutes sound)
6471 * Bit 3-0: Volume
6472 * Other bits should be zero as far as we know.
6473 *
6474 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6475 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6476 * such as bit 7 which is used to detect repeated presses of MUTE,
6477 * and we leave them unchanged.
6478 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006479
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006480#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6481
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006482#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6483#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6484#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6485
Henrique de Moraes Holschuhead510c2009-12-26 22:52:13 -02006486static int alsa_index = ~((1 << (SNDRV_CARDS - 3)) - 1); /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006487static char *alsa_id = "ThinkPadEC";
6488static int alsa_enable = SNDRV_DEFAULT_ENABLE1;
6489
6490struct tpacpi_alsa_data {
6491 struct snd_card *card;
6492 struct snd_ctl_elem_id *ctl_mute_id;
6493 struct snd_ctl_elem_id *ctl_vol_id;
6494};
6495
6496static struct snd_card *alsa_card;
6497
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006498enum {
6499 TP_EC_AUDIO = 0x30,
6500
6501 /* TP_EC_AUDIO bits */
6502 TP_EC_AUDIO_MUTESW = 6,
6503
6504 /* TP_EC_AUDIO bitmasks */
6505 TP_EC_AUDIO_LVL_MSK = 0x0F,
6506 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6507
6508 /* Maximum volume */
6509 TP_EC_VOLUME_MAX = 14,
6510};
6511
6512enum tpacpi_volume_access_mode {
6513 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6514 TPACPI_VOL_MODE_EC, /* Pure EC control */
6515 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6516 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6517 TPACPI_VOL_MODE_MAX
6518};
6519
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006520enum tpacpi_volume_capabilities {
6521 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6522 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6523 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6524 TPACPI_VOL_CAP_MAX
6525};
6526
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006527static enum tpacpi_volume_access_mode volume_mode =
6528 TPACPI_VOL_MODE_MAX;
6529
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006530static enum tpacpi_volume_capabilities volume_capabilities;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006531static int volume_control_allowed;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006532
6533/*
6534 * Used to syncronize writers to TP_EC_AUDIO and
6535 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6536 */
6537static struct mutex volume_mutex;
6538
6539static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006540{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006541 u8 lec = 0;
6542 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006543 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006544
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006545 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6546 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006547 if (!volume_control_allowed)
6548 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006549
6550 vdbg_printk(TPACPI_DBG_MIXER,
6551 "trying to checkpoint mixer state to NVRAM...\n");
6552
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006553 if (tp_features.mixer_no_level_control)
6554 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6555 else
6556 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6557
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006558 if (mutex_lock_killable(&volume_mutex) < 0)
6559 return;
6560
6561 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6562 goto unlock;
6563 lec &= ec_mask;
6564 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
6565
6566 if (lec != (b_nvram & ec_mask)) {
6567 /* NVRAM needs update */
6568 b_nvram &= ~ec_mask;
6569 b_nvram |= lec;
6570 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
6571 dbg_printk(TPACPI_DBG_MIXER,
6572 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6573 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006574 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006575 vdbg_printk(TPACPI_DBG_MIXER,
6576 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6577 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006578 }
6579
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006580unlock:
6581 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006582}
6583
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006584static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006585{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006586 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006587
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006588 if (!acpi_ec_read(TP_EC_AUDIO, &s))
6589 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006590
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006591 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006592
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006593 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006594
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006595 return 0;
6596}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006597
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006598static int volume_get_status(u8 *status)
6599{
6600 return volume_get_status_ec(status);
6601}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006602
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006603static int volume_set_status_ec(const u8 status)
6604{
6605 if (!acpi_ec_write(TP_EC_AUDIO, status))
6606 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006607
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006608 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
6609
6610 return 0;
6611}
6612
6613static int volume_set_status(const u8 status)
6614{
6615 return volume_set_status_ec(status);
6616}
6617
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006618/* returns < 0 on error, 0 on no change, 1 on change */
6619static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006620{
6621 int rc;
6622 u8 s, n;
6623
6624 if (mutex_lock_killable(&volume_mutex) < 0)
6625 return -EINTR;
6626
6627 rc = volume_get_status_ec(&s);
6628 if (rc)
6629 goto unlock;
6630
6631 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
6632 s & ~TP_EC_AUDIO_MUTESW_MSK;
6633
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006634 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006635 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006636 if (!rc)
6637 rc = 1;
6638 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006639
6640unlock:
6641 mutex_unlock(&volume_mutex);
6642 return rc;
6643}
6644
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006645static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006646{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006647 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006648 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006649 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006650}
6651
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006652static int volume_set_mute(const bool mute)
6653{
6654 int rc;
6655
6656 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
6657 (mute) ? "" : "un");
6658
6659 rc = __volume_set_mute_ec(mute);
6660 return (rc < 0) ? rc : 0;
6661}
6662
6663/* returns < 0 on error, 0 on no change, 1 on change */
6664static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006665{
6666 int rc;
6667 u8 s, n;
6668
6669 if (vol > TP_EC_VOLUME_MAX)
6670 return -EINVAL;
6671
6672 if (mutex_lock_killable(&volume_mutex) < 0)
6673 return -EINTR;
6674
6675 rc = volume_get_status_ec(&s);
6676 if (rc)
6677 goto unlock;
6678
6679 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
6680
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006681 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006682 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006683 if (!rc)
6684 rc = 1;
6685 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006686
6687unlock:
6688 mutex_unlock(&volume_mutex);
6689 return rc;
6690}
6691
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006692static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006693{
6694 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006695 "ALSA: trying to set volume level to %hu\n", vol);
6696 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006697}
6698
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006699static void volume_alsa_notify_change(void)
6700{
6701 struct tpacpi_alsa_data *d;
6702
6703 if (alsa_card && alsa_card->private_data) {
6704 d = alsa_card->private_data;
6705 if (d->ctl_mute_id)
6706 snd_ctl_notify(alsa_card,
6707 SNDRV_CTL_EVENT_MASK_VALUE,
6708 d->ctl_mute_id);
6709 if (d->ctl_vol_id)
6710 snd_ctl_notify(alsa_card,
6711 SNDRV_CTL_EVENT_MASK_VALUE,
6712 d->ctl_vol_id);
6713 }
6714}
6715
6716static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
6717 struct snd_ctl_elem_info *uinfo)
6718{
6719 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
6720 uinfo->count = 1;
6721 uinfo->value.integer.min = 0;
6722 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
6723 return 0;
6724}
6725
6726static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
6727 struct snd_ctl_elem_value *ucontrol)
6728{
6729 u8 s;
6730 int rc;
6731
6732 rc = volume_get_status(&s);
6733 if (rc < 0)
6734 return rc;
6735
6736 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
6737 return 0;
6738}
6739
6740static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
6741 struct snd_ctl_elem_value *ucontrol)
6742{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006743 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006744}
6745
6746#define volume_alsa_mute_info snd_ctl_boolean_mono_info
6747
6748static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
6749 struct snd_ctl_elem_value *ucontrol)
6750{
6751 u8 s;
6752 int rc;
6753
6754 rc = volume_get_status(&s);
6755 if (rc < 0)
6756 return rc;
6757
6758 ucontrol->value.integer.value[0] =
6759 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
6760 return 0;
6761}
6762
6763static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
6764 struct snd_ctl_elem_value *ucontrol)
6765{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006766 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006767}
6768
6769static struct snd_kcontrol_new volume_alsa_control_vol __devinitdata = {
6770 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6771 .name = "Console Playback Volume",
6772 .index = 0,
6773 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6774 .info = volume_alsa_vol_info,
6775 .get = volume_alsa_vol_get,
6776};
6777
6778static struct snd_kcontrol_new volume_alsa_control_mute __devinitdata = {
6779 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6780 .name = "Console Playback Switch",
6781 .index = 0,
6782 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6783 .info = volume_alsa_mute_info,
6784 .get = volume_alsa_mute_get,
6785};
6786
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006787static void volume_suspend(pm_message_t state)
6788{
6789 tpacpi_volume_checkpoint_nvram();
6790}
6791
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006792static void volume_resume(void)
6793{
6794 volume_alsa_notify_change();
6795}
6796
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006797static void volume_shutdown(void)
6798{
6799 tpacpi_volume_checkpoint_nvram();
6800}
6801
6802static void volume_exit(void)
6803{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006804 if (alsa_card) {
6805 snd_card_free(alsa_card);
6806 alsa_card = NULL;
6807 }
6808
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006809 tpacpi_volume_checkpoint_nvram();
6810}
6811
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006812static int __init volume_create_alsa_mixer(void)
6813{
6814 struct snd_card *card;
6815 struct tpacpi_alsa_data *data;
6816 struct snd_kcontrol *ctl_vol;
6817 struct snd_kcontrol *ctl_mute;
6818 int rc;
6819
6820 rc = snd_card_create(alsa_index, alsa_id, THIS_MODULE,
6821 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006822 if (rc < 0 || !card) {
6823 printk(TPACPI_ERR
6824 "Failed to create ALSA card structures: %d\n", rc);
6825 return 1;
6826 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006827
6828 BUG_ON(!card->private_data);
6829 data = card->private_data;
6830 data->card = card;
6831
6832 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
6833 sizeof(card->driver));
6834 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
6835 sizeof(card->shortname));
6836 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
6837 (thinkpad_id.ec_version_str) ?
6838 thinkpad_id.ec_version_str : "(unknown)");
6839 snprintf(card->longname, sizeof(card->longname),
6840 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
6841 (thinkpad_id.ec_version_str) ?
6842 thinkpad_id.ec_version_str : "unknown");
6843
6844 if (volume_control_allowed) {
6845 volume_alsa_control_vol.put = volume_alsa_vol_put;
6846 volume_alsa_control_vol.access =
6847 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6848
6849 volume_alsa_control_mute.put = volume_alsa_mute_put;
6850 volume_alsa_control_mute.access =
6851 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6852 }
6853
6854 if (!tp_features.mixer_no_level_control) {
6855 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
6856 rc = snd_ctl_add(card, ctl_vol);
6857 if (rc < 0) {
6858 printk(TPACPI_ERR
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006859 "Failed to create ALSA volume control: %d\n",
6860 rc);
6861 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006862 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006863 data->ctl_vol_id = &ctl_vol->id;
6864 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006865
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006866 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
6867 rc = snd_ctl_add(card, ctl_mute);
6868 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006869 printk(TPACPI_ERR "Failed to create ALSA mute control: %d\n",
6870 rc);
6871 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006872 }
6873 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006874
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006875 snd_card_set_dev(card, &tpacpi_pdev->dev);
6876 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006877 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006878 printk(TPACPI_ERR "Failed to register ALSA card: %d\n", rc);
6879 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006880 }
6881
6882 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006883 return 0;
6884
6885err_exit:
6886 snd_card_free(card);
6887 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006888}
6889
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006890#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6891#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6892
6893static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
6894 /* Whitelist volume level on all IBM by default */
6895 { .vendor = PCI_VENDOR_ID_IBM,
6896 .bios = TPACPI_MATCH_ANY,
6897 .ec = TPACPI_MATCH_ANY,
6898 .quirks = TPACPI_VOL_Q_LEVEL },
6899
6900 /* Lenovo models with volume control (needs confirmation) */
6901 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
6902 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
6903 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
6904 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
6905 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
6906 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
6907 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
6908
6909 /* Whitelist mute-only on all Lenovo by default */
6910 { .vendor = PCI_VENDOR_ID_LENOVO,
6911 .bios = TPACPI_MATCH_ANY,
6912 .ec = TPACPI_MATCH_ANY,
6913 .quirks = TPACPI_VOL_Q_MUTEONLY }
6914};
6915
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006916static int __init volume_init(struct ibm_init_struct *iibm)
6917{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006918 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006919 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006920
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006921 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
6922
6923 mutex_init(&volume_mutex);
6924
6925 /*
6926 * Check for module parameter bogosity, note that we
6927 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6928 * able to detect "unspecified"
6929 */
6930 if (volume_mode > TPACPI_VOL_MODE_MAX)
6931 return -EINVAL;
6932
6933 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
6934 printk(TPACPI_ERR
6935 "UCMS step volume mode not implemented, "
6936 "please contact %s\n", TPACPI_MAIL);
6937 return 1;
6938 }
6939
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006940 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
6941 return -EINVAL;
6942
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006943 /*
6944 * The ALSA mixer is our primary interface.
6945 * When disabled, don't install the subdriver at all
6946 */
6947 if (!alsa_enable) {
6948 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6949 "ALSA mixer disabled by parameter, "
6950 "not loading volume subdriver...\n");
6951 return 1;
6952 }
6953
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006954 quirks = tpacpi_check_quirks(volume_quirk_table,
6955 ARRAY_SIZE(volume_quirk_table));
6956
6957 switch (volume_capabilities) {
6958 case TPACPI_VOL_CAP_AUTO:
6959 if (quirks & TPACPI_VOL_Q_MUTEONLY)
6960 tp_features.mixer_no_level_control = 1;
6961 else if (quirks & TPACPI_VOL_Q_LEVEL)
6962 tp_features.mixer_no_level_control = 0;
6963 else
6964 return 1; /* no mixer */
6965 break;
6966 case TPACPI_VOL_CAP_VOLMUTE:
6967 tp_features.mixer_no_level_control = 0;
6968 break;
6969 case TPACPI_VOL_CAP_MUTEONLY:
6970 tp_features.mixer_no_level_control = 1;
6971 break;
6972 default:
6973 return 1;
6974 }
6975
6976 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
6977 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6978 "using user-supplied volume_capabilities=%d\n",
6979 volume_capabilities);
6980
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006981 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
6982 volume_mode == TPACPI_VOL_MODE_MAX) {
6983 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
6984
6985 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6986 "driver auto-selected volume_mode=%d\n",
6987 volume_mode);
6988 } else {
6989 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6990 "using user-supplied volume_mode=%d\n",
6991 volume_mode);
6992 }
6993
6994 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006995 "mute is supported, volume control is %s\n",
6996 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006997
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006998 rc = volume_create_alsa_mixer();
6999 if (rc) {
7000 printk(TPACPI_ERR
7001 "Could not create the ALSA mixer interface\n");
7002 return rc;
7003 }
7004
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007005 printk(TPACPI_INFO
7006 "Console audio control enabled, mode: %s\n",
7007 (volume_control_allowed) ?
7008 "override (read/write)" :
7009 "monitor (read only)");
7010
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007011 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7012 "registering volume hotkeys as change notification\n");
7013 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7014 | TP_ACPI_HKEY_VOLUP_MASK
7015 | TP_ACPI_HKEY_VOLDWN_MASK
7016 | TP_ACPI_HKEY_MUTE_MASK);
7017
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007018 return 0;
7019}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007020
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007021static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007022{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007023 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007024
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007025 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007026 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007027 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007028 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007029 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007030 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007031 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007032 status & TP_EC_AUDIO_LVL_MSK);
7033
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007034 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007035 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007036
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007037 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007038 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007039 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007040 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007041 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007042 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007043 "commands:\tlevel <level>"
7044 " (<level> is 0-%d)\n",
7045 TP_EC_VOLUME_MAX);
7046 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007047 }
7048 }
7049
7050 return 0;
7051}
7052
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007053static int volume_write(char *buf)
7054{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007055 u8 s;
7056 u8 new_level, new_mute;
7057 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007058 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007059 int rc;
7060
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007061 /*
7062 * We do allow volume control at driver startup, so that the
7063 * user can set initial state through the volume=... parameter hack.
7064 */
7065 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7066 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7067 tp_warned.volume_ctrl_forbidden = 1;
7068 printk(TPACPI_NOTICE
7069 "Console audio control in monitor mode, "
7070 "changes are not allowed.\n");
7071 printk(TPACPI_NOTICE
7072 "Use the volume_control=1 module parameter "
7073 "to enable volume control\n");
7074 }
7075 return -EPERM;
7076 }
7077
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007078 rc = volume_get_status(&s);
7079 if (rc < 0)
7080 return rc;
7081
7082 new_level = s & TP_EC_AUDIO_LVL_MSK;
7083 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007084
7085 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007086 if (!tp_features.mixer_no_level_control) {
7087 if (strlencmp(cmd, "up") == 0) {
7088 if (new_mute)
7089 new_mute = 0;
7090 else if (new_level < TP_EC_VOLUME_MAX)
7091 new_level++;
7092 continue;
7093 } else if (strlencmp(cmd, "down") == 0) {
7094 if (new_mute)
7095 new_mute = 0;
7096 else if (new_level > 0)
7097 new_level--;
7098 continue;
7099 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7100 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7101 new_level = l;
7102 continue;
7103 }
7104 }
7105 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007106 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007107 else if (strlencmp(cmd, "unmute") == 0)
7108 new_mute = 0;
7109 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007110 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007111 }
7112
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007113 if (tp_features.mixer_no_level_control) {
7114 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7115 new_mute ? "" : "un");
7116 rc = volume_set_mute(!!new_mute);
7117 } else {
7118 tpacpi_disclose_usertask("procfs volume",
7119 "%smute and set level to %d\n",
7120 new_mute ? "" : "un", new_level);
7121 rc = volume_set_status(new_mute | new_level);
7122 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007123 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007124
7125 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007126}
7127
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007128static struct ibm_struct volume_driver_data = {
7129 .name = "volume",
7130 .read = volume_read,
7131 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007132 .exit = volume_exit,
7133 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007134 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007135 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007136};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007137
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007138#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7139
7140#define alsa_card NULL
7141
7142static void inline volume_alsa_notify_change(void)
7143{
7144}
7145
7146static int __init volume_init(struct ibm_init_struct *iibm)
7147{
7148 printk(TPACPI_INFO
7149 "volume: disabled as there is no ALSA support in this kernel\n");
7150
7151 return 1;
7152}
7153
7154static struct ibm_struct volume_driver_data = {
7155 .name = "volume",
7156};
7157
7158#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7159
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007160/*************************************************************************
7161 * Fan subdriver
7162 */
7163
7164/*
7165 * FAN ACCESS MODES
7166 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007167 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007168 * ACPI GFAN method: returns fan level
7169 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007170 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007171 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007172 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007173 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007174 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7175 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007176 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7177 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007178 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007179 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007180 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7181 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007182 *
7183 * Fan speed changes of any sort (including those caused by the
7184 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007185 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007186 * limited.
7187 *
7188 * Reading is not available if GFAN exists.
7189 * Writing is not available if SFAN exists.
7190 *
7191 * Bits
7192 * 7 automatic mode engaged;
7193 * (default operation mode of the ThinkPad)
7194 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007195 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007196 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007197 * the tachometer while the fan controller ramps up
7198 * the speed (which can take up to a few *minutes*).
7199 * Speeds up fan to 100% duty-cycle, which is far above
7200 * the standard RPM levels. It is not impossible that
7201 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007202 * 5-3 unused in some models. Extra bits for fan level
7203 * in others, but still useless as all values above
7204 * 7 map to the same speed as level 7 in these models.
7205 * 2-0 fan level (0..7 usually)
7206 * 0x00 = stop
7207 * 0x07 = max (set when temperatures critical)
7208 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007209 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007210 *
7211 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
7212 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
7213 * does so, its initial value is meaningless (0x07).
7214 *
7215 * For firmware bugs, refer to:
7216 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7217 *
7218 * ----
7219 *
7220 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7221 * Main fan tachometer reading (in RPM)
7222 *
7223 * This register is present on all ThinkPads with a new-style EC, and
7224 * it is known not to be present on the A21m/e, and T22, as there is
7225 * something else in offset 0x84 according to the ACPI DSDT. Other
7226 * ThinkPads from this same time period (and earlier) probably lack the
7227 * tachometer as well.
7228 *
Nick Andrew877d0312009-01-26 11:06:57 +01007229 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007230 * was never fixed by IBM to report the EC firmware version string
7231 * probably support the tachometer (like the early X models), so
7232 * detecting it is quite hard. We need more data to know for sure.
7233 *
7234 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7235 * might result.
7236 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007237 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7238 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007239 *
7240 * For firmware bugs, refer to:
7241 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7242 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007243 * ----
7244 *
7245 * ThinkPad EC register 0x31 bit 0 (only on select models)
7246 *
7247 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7248 * show the speed of the main fan. When bit 0 of EC register 0x31
7249 * is one, the tachometer registers show the speed of the auxiliary
7250 * fan.
7251 *
7252 * Fan control seems to affect both fans, regardless of the state
7253 * of this bit.
7254 *
7255 * So far, only the firmware for the X60/X61 non-tablet versions
7256 * seem to support this (firmware TP-7M).
7257 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007258 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007259 * ThinkPad X31, X40, X41. Not available in the X60.
7260 *
7261 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7262 * high speed. ACPI DSDT seems to map these three speeds to levels
7263 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7264 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7265 *
7266 * The speeds are stored on handles
7267 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7268 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007269 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007270 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7271 *
7272 * ACPI DSDT switches which set is in use depending on various
7273 * factors.
7274 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007275 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007276 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7277 * but the ACPI tables just mention level 7.
7278 */
7279
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007280enum { /* Fan control constants */
7281 fan_status_offset = 0x2f, /* EC register 0x2f */
7282 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7283 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007284 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7285 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007286
7287 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7288 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7289
7290 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7291};
7292
7293enum fan_status_access_mode {
7294 TPACPI_FAN_NONE = 0, /* No fan status or control */
7295 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7296 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7297};
7298
7299enum fan_control_access_mode {
7300 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7301 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7302 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7303 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7304};
7305
7306enum fan_control_commands {
7307 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7308 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7309 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7310 * and also watchdog cmd */
7311};
7312
7313static int fan_control_allowed;
7314
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007315static enum fan_status_access_mode fan_status_access_mode;
7316static enum fan_control_access_mode fan_control_access_mode;
7317static enum fan_control_commands fan_control_commands;
7318
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007319static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007320static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007321static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007322static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007323
7324static struct mutex fan_mutex;
7325
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007326static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007327static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007328
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007329TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7330TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007331 "\\FSPD", /* 600e/x, 770e, 770x */
7332 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007333TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007334 "JFNS", /* 770x-JL */
7335 ); /* all others */
7336
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007337/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007338 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7339 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7340 * be in auto mode (0x80).
7341 *
7342 * This is corrected by any write to HFSP either by the driver, or
7343 * by the firmware.
7344 *
7345 * We assume 0x07 really means auto mode while this quirk is active,
7346 * as this is far more likely than the ThinkPad being in level 7,
7347 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007348 *
7349 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7350 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007351 */
7352
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007353static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007354{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007355 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007356 printk(TPACPI_NOTICE
7357 "fan_init: initial fan status is unknown, "
7358 "assuming it is in auto mode\n");
7359 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007360 }
7361}
7362
7363static void fan_quirk1_handle(u8 *fan_status)
7364{
7365 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7366 if (*fan_status != fan_control_initial_status) {
7367 /* something changed the HFSP regisnter since
7368 * driver init time, so it is not undefined
7369 * anymore */
7370 tp_features.fan_ctrl_status_undef = 0;
7371 } else {
7372 /* Return most likely status. In fact, it
7373 * might be the only possible status */
7374 *fan_status = TP_EC_FAN_AUTO;
7375 }
7376 }
7377}
7378
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007379/* Select main fan on X60/X61, NOOP on others */
7380static bool fan_select_fan1(void)
7381{
7382 if (tp_features.second_fan) {
7383 u8 val;
7384
7385 if (ec_read(fan_select_offset, &val) < 0)
7386 return false;
7387 val &= 0xFEU;
7388 if (ec_write(fan_select_offset, val) < 0)
7389 return false;
7390 }
7391 return true;
7392}
7393
7394/* Select secondary fan on X60/X61 */
7395static bool fan_select_fan2(void)
7396{
7397 u8 val;
7398
7399 if (!tp_features.second_fan)
7400 return false;
7401
7402 if (ec_read(fan_select_offset, &val) < 0)
7403 return false;
7404 val |= 0x01U;
7405 if (ec_write(fan_select_offset, val) < 0)
7406 return false;
7407
7408 return true;
7409}
7410
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007411/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007412 * Call with fan_mutex held
7413 */
7414static void fan_update_desired_level(u8 status)
7415{
7416 if ((status &
7417 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7418 if (status > 7)
7419 fan_control_desired_level = 7;
7420 else
7421 fan_control_desired_level = status;
7422 }
7423}
7424
7425static int fan_get_status(u8 *status)
7426{
7427 u8 s;
7428
7429 /* TODO:
7430 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7431
7432 switch (fan_status_access_mode) {
7433 case TPACPI_FAN_RD_ACPI_GFAN:
7434 /* 570, 600e/x, 770e, 770x */
7435
7436 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
7437 return -EIO;
7438
7439 if (likely(status))
7440 *status = s & 0x07;
7441
7442 break;
7443
7444 case TPACPI_FAN_RD_TPEC:
7445 /* all except 570, 600e/x, 770e, 770x */
7446 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7447 return -EIO;
7448
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007449 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007450 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007451 fan_quirk1_handle(status);
7452 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007453
7454 break;
7455
7456 default:
7457 return -ENXIO;
7458 }
7459
7460 return 0;
7461}
7462
7463static int fan_get_status_safe(u8 *status)
7464{
7465 int rc;
7466 u8 s;
7467
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007468 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007469 return -ERESTARTSYS;
7470 rc = fan_get_status(&s);
7471 if (!rc)
7472 fan_update_desired_level(s);
7473 mutex_unlock(&fan_mutex);
7474
7475 if (status)
7476 *status = s;
7477
7478 return rc;
7479}
7480
7481static int fan_get_speed(unsigned int *speed)
7482{
7483 u8 hi, lo;
7484
7485 switch (fan_status_access_mode) {
7486 case TPACPI_FAN_RD_TPEC:
7487 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007488 if (unlikely(!fan_select_fan1()))
7489 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007490 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7491 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7492 return -EIO;
7493
7494 if (likely(speed))
7495 *speed = (hi << 8) | lo;
7496
7497 break;
7498
7499 default:
7500 return -ENXIO;
7501 }
7502
7503 return 0;
7504}
7505
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007506static int fan2_get_speed(unsigned int *speed)
7507{
7508 u8 hi, lo;
7509 bool rc;
7510
7511 switch (fan_status_access_mode) {
7512 case TPACPI_FAN_RD_TPEC:
7513 /* all except 570, 600e/x, 770e, 770x */
7514 if (unlikely(!fan_select_fan2()))
7515 return -EIO;
7516 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
7517 !acpi_ec_read(fan_rpm_offset + 1, &hi);
7518 fan_select_fan1(); /* play it safe */
7519 if (rc)
7520 return -EIO;
7521
7522 if (likely(speed))
7523 *speed = (hi << 8) | lo;
7524
7525 break;
7526
7527 default:
7528 return -ENXIO;
7529 }
7530
7531 return 0;
7532}
7533
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007534static int fan_set_level(int level)
7535{
7536 if (!fan_control_allowed)
7537 return -EPERM;
7538
7539 switch (fan_control_access_mode) {
7540 case TPACPI_FAN_WR_ACPI_SFAN:
7541 if (level >= 0 && level <= 7) {
7542 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
7543 return -EIO;
7544 } else
7545 return -EINVAL;
7546 break;
7547
7548 case TPACPI_FAN_WR_ACPI_FANS:
7549 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007550 if (!(level & TP_EC_FAN_AUTO) &&
7551 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007552 ((level < 0) || (level > 7)))
7553 return -EINVAL;
7554
7555 /* safety net should the EC not support AUTO
7556 * or FULLSPEED mode bits and just ignore them */
7557 if (level & TP_EC_FAN_FULLSPEED)
7558 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01007559 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007560 level |= 4; /* safety min speed 4 */
7561
7562 if (!acpi_ec_write(fan_status_offset, level))
7563 return -EIO;
7564 else
7565 tp_features.fan_ctrl_status_undef = 0;
7566 break;
7567
7568 default:
7569 return -ENXIO;
7570 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007571
7572 vdbg_printk(TPACPI_DBG_FAN,
7573 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007574 return 0;
7575}
7576
7577static int fan_set_level_safe(int level)
7578{
7579 int rc;
7580
7581 if (!fan_control_allowed)
7582 return -EPERM;
7583
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007584 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007585 return -ERESTARTSYS;
7586
7587 if (level == TPACPI_FAN_LAST_LEVEL)
7588 level = fan_control_desired_level;
7589
7590 rc = fan_set_level(level);
7591 if (!rc)
7592 fan_update_desired_level(level);
7593
7594 mutex_unlock(&fan_mutex);
7595 return rc;
7596}
7597
7598static int fan_set_enable(void)
7599{
7600 u8 s;
7601 int rc;
7602
7603 if (!fan_control_allowed)
7604 return -EPERM;
7605
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007606 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007607 return -ERESTARTSYS;
7608
7609 switch (fan_control_access_mode) {
7610 case TPACPI_FAN_WR_ACPI_FANS:
7611 case TPACPI_FAN_WR_TPEC:
7612 rc = fan_get_status(&s);
7613 if (rc < 0)
7614 break;
7615
7616 /* Don't go out of emergency fan mode */
7617 if (s != 7) {
7618 s &= 0x07;
7619 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
7620 }
7621
7622 if (!acpi_ec_write(fan_status_offset, s))
7623 rc = -EIO;
7624 else {
7625 tp_features.fan_ctrl_status_undef = 0;
7626 rc = 0;
7627 }
7628 break;
7629
7630 case TPACPI_FAN_WR_ACPI_SFAN:
7631 rc = fan_get_status(&s);
7632 if (rc < 0)
7633 break;
7634
7635 s &= 0x07;
7636
7637 /* Set fan to at least level 4 */
7638 s |= 4;
7639
7640 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007641 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007642 else
7643 rc = 0;
7644 break;
7645
7646 default:
7647 rc = -ENXIO;
7648 }
7649
7650 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007651
7652 if (!rc)
7653 vdbg_printk(TPACPI_DBG_FAN,
7654 "fan control: set fan control register to 0x%02x\n",
7655 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007656 return rc;
7657}
7658
7659static int fan_set_disable(void)
7660{
7661 int rc;
7662
7663 if (!fan_control_allowed)
7664 return -EPERM;
7665
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007666 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007667 return -ERESTARTSYS;
7668
7669 rc = 0;
7670 switch (fan_control_access_mode) {
7671 case TPACPI_FAN_WR_ACPI_FANS:
7672 case TPACPI_FAN_WR_TPEC:
7673 if (!acpi_ec_write(fan_status_offset, 0x00))
7674 rc = -EIO;
7675 else {
7676 fan_control_desired_level = 0;
7677 tp_features.fan_ctrl_status_undef = 0;
7678 }
7679 break;
7680
7681 case TPACPI_FAN_WR_ACPI_SFAN:
7682 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
7683 rc = -EIO;
7684 else
7685 fan_control_desired_level = 0;
7686 break;
7687
7688 default:
7689 rc = -ENXIO;
7690 }
7691
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007692 if (!rc)
7693 vdbg_printk(TPACPI_DBG_FAN,
7694 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007695
7696 mutex_unlock(&fan_mutex);
7697 return rc;
7698}
7699
7700static int fan_set_speed(int speed)
7701{
7702 int rc;
7703
7704 if (!fan_control_allowed)
7705 return -EPERM;
7706
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007707 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007708 return -ERESTARTSYS;
7709
7710 rc = 0;
7711 switch (fan_control_access_mode) {
7712 case TPACPI_FAN_WR_ACPI_FANS:
7713 if (speed >= 0 && speed <= 65535) {
7714 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7715 speed, speed, speed))
7716 rc = -EIO;
7717 } else
7718 rc = -EINVAL;
7719 break;
7720
7721 default:
7722 rc = -ENXIO;
7723 }
7724
7725 mutex_unlock(&fan_mutex);
7726 return rc;
7727}
7728
7729static void fan_watchdog_reset(void)
7730{
7731 static int fan_watchdog_active;
7732
7733 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7734 return;
7735
7736 if (fan_watchdog_active)
7737 cancel_delayed_work(&fan_watchdog_task);
7738
7739 if (fan_watchdog_maxinterval > 0 &&
7740 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
7741 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007742 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007743 msecs_to_jiffies(fan_watchdog_maxinterval
7744 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007745 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007746 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007747 "watchdog will not trigger\n");
7748 }
7749 } else
7750 fan_watchdog_active = 0;
7751}
7752
7753static void fan_watchdog_fire(struct work_struct *ignored)
7754{
7755 int rc;
7756
7757 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7758 return;
7759
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007760 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007761 rc = fan_set_enable();
7762 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007763 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007764 "will try again later...\n", -rc);
7765 /* reschedule for later */
7766 fan_watchdog_reset();
7767 }
7768}
7769
7770/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007771 * SYSFS fan layout: hwmon compatible (device)
7772 *
7773 * pwm*_enable:
7774 * 0: "disengaged" mode
7775 * 1: manual mode
7776 * 2: native EC "auto" mode (recommended, hardware default)
7777 *
7778 * pwm*: set speed in manual mode, ignored otherwise.
7779 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7780 * interpolation.
7781 *
7782 * fan*_input: tachometer reading, RPM
7783 *
7784 *
7785 * SYSFS fan layout: extensions
7786 *
7787 * fan_watchdog (driver):
7788 * fan watchdog interval in seconds, 0 disables (default), max 120
7789 */
7790
7791/* sysfs fan pwm1_enable ----------------------------------------------- */
7792static ssize_t fan_pwm1_enable_show(struct device *dev,
7793 struct device_attribute *attr,
7794 char *buf)
7795{
7796 int res, mode;
7797 u8 status;
7798
7799 res = fan_get_status_safe(&status);
7800 if (res)
7801 return res;
7802
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007803 if (status & TP_EC_FAN_FULLSPEED) {
7804 mode = 0;
7805 } else if (status & TP_EC_FAN_AUTO) {
7806 mode = 2;
7807 } else
7808 mode = 1;
7809
7810 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7811}
7812
7813static ssize_t fan_pwm1_enable_store(struct device *dev,
7814 struct device_attribute *attr,
7815 const char *buf, size_t count)
7816{
7817 unsigned long t;
7818 int res, level;
7819
7820 if (parse_strtoul(buf, 2, &t))
7821 return -EINVAL;
7822
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007823 tpacpi_disclose_usertask("hwmon pwm1_enable",
7824 "set fan mode to %lu\n", t);
7825
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007826 switch (t) {
7827 case 0:
7828 level = TP_EC_FAN_FULLSPEED;
7829 break;
7830 case 1:
7831 level = TPACPI_FAN_LAST_LEVEL;
7832 break;
7833 case 2:
7834 level = TP_EC_FAN_AUTO;
7835 break;
7836 case 3:
7837 /* reserved for software-controlled auto mode */
7838 return -ENOSYS;
7839 default:
7840 return -EINVAL;
7841 }
7842
7843 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007844 if (res == -ENXIO)
7845 return -EINVAL;
7846 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007847 return res;
7848
7849 fan_watchdog_reset();
7850
7851 return count;
7852}
7853
7854static struct device_attribute dev_attr_fan_pwm1_enable =
7855 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7856 fan_pwm1_enable_show, fan_pwm1_enable_store);
7857
7858/* sysfs fan pwm1 ------------------------------------------------------ */
7859static ssize_t fan_pwm1_show(struct device *dev,
7860 struct device_attribute *attr,
7861 char *buf)
7862{
7863 int res;
7864 u8 status;
7865
7866 res = fan_get_status_safe(&status);
7867 if (res)
7868 return res;
7869
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007870 if ((status &
7871 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7872 status = fan_control_desired_level;
7873
7874 if (status > 7)
7875 status = 7;
7876
7877 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7878}
7879
7880static ssize_t fan_pwm1_store(struct device *dev,
7881 struct device_attribute *attr,
7882 const char *buf, size_t count)
7883{
7884 unsigned long s;
7885 int rc;
7886 u8 status, newlevel;
7887
7888 if (parse_strtoul(buf, 255, &s))
7889 return -EINVAL;
7890
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007891 tpacpi_disclose_usertask("hwmon pwm1",
7892 "set fan speed to %lu\n", s);
7893
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007894 /* scale down from 0-255 to 0-7 */
7895 newlevel = (s >> 5) & 0x07;
7896
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007897 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007898 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007899
7900 rc = fan_get_status(&status);
7901 if (!rc && (status &
7902 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7903 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007904 if (rc == -ENXIO)
7905 rc = -EINVAL;
7906 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007907 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007908 fan_watchdog_reset();
7909 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007910 }
7911
7912 mutex_unlock(&fan_mutex);
7913 return (rc)? rc : count;
7914}
7915
7916static struct device_attribute dev_attr_fan_pwm1 =
7917 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7918 fan_pwm1_show, fan_pwm1_store);
7919
7920/* sysfs fan fan1_input ------------------------------------------------ */
7921static ssize_t fan_fan1_input_show(struct device *dev,
7922 struct device_attribute *attr,
7923 char *buf)
7924{
7925 int res;
7926 unsigned int speed;
7927
7928 res = fan_get_speed(&speed);
7929 if (res < 0)
7930 return res;
7931
7932 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7933}
7934
7935static struct device_attribute dev_attr_fan_fan1_input =
7936 __ATTR(fan1_input, S_IRUGO,
7937 fan_fan1_input_show, NULL);
7938
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007939/* sysfs fan fan2_input ------------------------------------------------ */
7940static ssize_t fan_fan2_input_show(struct device *dev,
7941 struct device_attribute *attr,
7942 char *buf)
7943{
7944 int res;
7945 unsigned int speed;
7946
7947 res = fan2_get_speed(&speed);
7948 if (res < 0)
7949 return res;
7950
7951 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7952}
7953
7954static struct device_attribute dev_attr_fan_fan2_input =
7955 __ATTR(fan2_input, S_IRUGO,
7956 fan_fan2_input_show, NULL);
7957
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007958/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007959static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7960 char *buf)
7961{
7962 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7963}
7964
7965static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7966 const char *buf, size_t count)
7967{
7968 unsigned long t;
7969
7970 if (parse_strtoul(buf, 120, &t))
7971 return -EINVAL;
7972
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007973 if (!fan_control_allowed)
7974 return -EPERM;
7975
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007976 fan_watchdog_maxinterval = t;
7977 fan_watchdog_reset();
7978
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007979 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7980
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007981 return count;
7982}
7983
7984static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7985 fan_fan_watchdog_show, fan_fan_watchdog_store);
7986
7987/* --------------------------------------------------------------------- */
7988static struct attribute *fan_attributes[] = {
7989 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7990 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007991 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007992 NULL
7993};
7994
7995static const struct attribute_group fan_attr_group = {
7996 .attrs = fan_attributes,
7997};
7998
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007999#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
8000#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008001
8002#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
8003 { .vendor = PCI_VENDOR_ID_IBM, \
8004 .bios = TPACPI_MATCH_ANY, \
8005 .ec = TPID(__id1, __id2), \
8006 .quirks = __quirks }
8007
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008008#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
8009 { .vendor = PCI_VENDOR_ID_LENOVO, \
8010 .bios = TPACPI_MATCH_ANY, \
8011 .ec = TPID(__id1, __id2), \
8012 .quirks = __quirks }
8013
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008014static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
8015 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
8016 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
8017 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
8018 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008019 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008020};
8021
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008022#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008023#undef TPACPI_FAN_QI
8024
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008025static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008026{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008027 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008028 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008029
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008030 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8031 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008032
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03008033 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008034 fan_status_access_mode = TPACPI_FAN_NONE;
8035 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008036 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008037 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03008038 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008039 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008040 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008041
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008042 if (tpacpi_is_ibm()) {
8043 TPACPI_ACPIHANDLE_INIT(fans);
8044 TPACPI_ACPIHANDLE_INIT(gfan);
8045 TPACPI_ACPIHANDLE_INIT(sfan);
8046 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008047
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008048 quirks = tpacpi_check_quirks(fan_quirk_table,
8049 ARRAY_SIZE(fan_quirk_table));
8050
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008051 if (gfan_handle) {
8052 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008053 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008054 } else {
8055 /* all other ThinkPads: note that even old-style
8056 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008057 if (likely(acpi_ec_read(fan_status_offset,
8058 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008059 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008060 if (quirks & TPACPI_FAN_Q1)
8061 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008062 if (quirks & TPACPI_FAN_2FAN) {
8063 tp_features.second_fan = 1;
8064 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8065 "secondary fan support enabled\n");
8066 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008067 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008068 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008069 "ThinkPad ACPI EC access misbehaving, "
8070 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008071 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008072 }
8073 }
8074
8075 if (sfan_handle) {
8076 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008077 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008078 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008079 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008080 } else {
8081 if (!gfan_handle) {
8082 /* gfan without sfan means no fan control */
8083 /* all other models implement TP EC 0x2f control */
8084
8085 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008086 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008087 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008088 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008089 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008090 TPACPI_FAN_CMD_SPEED |
8091 TPACPI_FAN_CMD_LEVEL |
8092 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008093 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008094 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008095 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008096 TPACPI_FAN_CMD_LEVEL |
8097 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008098 }
8099 }
8100 }
8101
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008102 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8103 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008104 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8105 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8106 fan_status_access_mode, fan_control_access_mode);
8107
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008108 /* fan control master switch */
8109 if (!fan_control_allowed) {
8110 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8111 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008112 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008113 "fan control features disabled by parameter\n");
8114 }
8115
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008116 /* update fan_control_desired_level */
8117 if (fan_status_access_mode != TPACPI_FAN_NONE)
8118 fan_get_status_safe(NULL);
8119
8120 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8121 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008122 if (tp_features.second_fan) {
8123 /* attach second fan tachometer */
8124 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
8125 &dev_attr_fan_fan2_input.attr;
8126 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008127 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008128 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008129 if (rc < 0)
8130 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008131
8132 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8133 &driver_attr_fan_watchdog);
8134 if (rc < 0) {
8135 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8136 &fan_attr_group);
8137 return rc;
8138 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008139 return 0;
8140 } else
8141 return 1;
8142}
8143
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008144static void fan_exit(void)
8145{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008146 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008147 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008148
8149 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008150 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008151 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8152 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008153
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008154 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008155 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008156}
8157
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008158static void fan_suspend(pm_message_t state)
8159{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008160 int rc;
8161
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008162 if (!fan_control_allowed)
8163 return;
8164
8165 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008166 fan_control_resume_level = 0;
8167 rc = fan_get_status_safe(&fan_control_resume_level);
8168 if (rc < 0)
8169 printk(TPACPI_NOTICE
8170 "failed to read fan level for later "
8171 "restore during resume: %d\n", rc);
8172
8173 /* if it is undefined, don't attempt to restore it.
8174 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008175 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008176 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008177}
8178
8179static void fan_resume(void)
8180{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008181 u8 current_level = 7;
8182 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008183 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008184
8185 /* DSDT *always* updates status on resume */
8186 tp_features.fan_ctrl_status_undef = 0;
8187
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008188 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008189 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008190 (fan_get_status_safe(&current_level) < 0))
8191 return;
8192
8193 switch (fan_control_access_mode) {
8194 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008195 /* never decrease fan level */
8196 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008197 break;
8198 case TPACPI_FAN_WR_ACPI_FANS:
8199 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008200 /* never decrease fan level, scale is:
8201 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8202 *
8203 * We expect the firmware to set either 7 or AUTO, but we
8204 * handle FULLSPEED out of paranoia.
8205 *
8206 * So, we can safely only restore FULLSPEED or 7, anything
8207 * else could slow the fan. Restoring AUTO is useless, at
8208 * best that's exactly what the DSDT already set (it is the
8209 * slower it uses).
8210 *
8211 * Always keep in mind that the DSDT *will* have set the
8212 * fans to what the vendor supposes is the best level. We
8213 * muck with it only to speed the fan up.
8214 */
8215 if (fan_control_resume_level != 7 &&
8216 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8217 return;
8218 else
8219 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8220 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008221 break;
8222 default:
8223 return;
8224 }
8225 if (do_set) {
8226 printk(TPACPI_NOTICE
8227 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008228 fan_control_resume_level);
8229 rc = fan_set_level_safe(fan_control_resume_level);
8230 if (rc < 0)
8231 printk(TPACPI_NOTICE
8232 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008233 }
8234}
8235
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008236static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008237{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008238 int rc;
8239 u8 status;
8240 unsigned int speed = 0;
8241
8242 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008243 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008244 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008245 rc = fan_get_status_safe(&status);
8246 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008247 return rc;
8248
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008249 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008250 "level:\t\t%d\n",
8251 (status != 0) ? "enabled" : "disabled", status);
8252 break;
8253
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008254 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008255 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008256 rc = fan_get_status_safe(&status);
8257 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008258 return rc;
8259
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008260 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008261 (status != 0) ? "enabled" : "disabled");
8262
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008263 rc = fan_get_speed(&speed);
8264 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008265 return rc;
8266
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008267 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008268
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008269 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008270 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008271 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008272 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008273 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008274 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008275 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008276 break;
8277
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008278 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008279 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008280 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008281 }
8282
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008283 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008284 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008285
8286 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008287 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008288 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008289 break;
8290
8291 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008292 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008293 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008294 break;
8295 }
8296 }
8297
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008298 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008299 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008300 "commands:\twatchdog <timeout> (<timeout> "
8301 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008302
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008303 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008304 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008305 " (<speed> is 0-65535)\n");
8306
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008307 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008308}
8309
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008310static int fan_write_cmd_level(const char *cmd, int *rc)
8311{
8312 int level;
8313
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008314 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008315 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008316 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008317 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008318 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008319 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008320 return 0;
8321
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008322 *rc = fan_set_level_safe(level);
8323 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008324 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008325 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008326 else if (!*rc)
8327 tpacpi_disclose_usertask("procfs fan",
8328 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008329
8330 return 1;
8331}
8332
8333static int fan_write_cmd_enable(const char *cmd, int *rc)
8334{
8335 if (strlencmp(cmd, "enable") != 0)
8336 return 0;
8337
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008338 *rc = fan_set_enable();
8339 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008340 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008341 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008342 else if (!*rc)
8343 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008344
8345 return 1;
8346}
8347
8348static int fan_write_cmd_disable(const char *cmd, int *rc)
8349{
8350 if (strlencmp(cmd, "disable") != 0)
8351 return 0;
8352
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008353 *rc = fan_set_disable();
8354 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008355 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008356 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008357 else if (!*rc)
8358 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008359
8360 return 1;
8361}
8362
8363static int fan_write_cmd_speed(const char *cmd, int *rc)
8364{
8365 int speed;
8366
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008367 /* TODO:
8368 * Support speed <low> <medium> <high> ? */
8369
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008370 if (sscanf(cmd, "speed %d", &speed) != 1)
8371 return 0;
8372
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008373 *rc = fan_set_speed(speed);
8374 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008375 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008376 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008377 else if (!*rc)
8378 tpacpi_disclose_usertask("procfs fan",
8379 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008380
8381 return 1;
8382}
8383
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008384static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8385{
8386 int interval;
8387
8388 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8389 return 0;
8390
8391 if (interval < 0 || interval > 120)
8392 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008393 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008394 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008395 tpacpi_disclose_usertask("procfs fan",
8396 "set watchdog timer to %d\n",
8397 interval);
8398 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008399
8400 return 1;
8401}
8402
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008403static int fan_write(char *buf)
8404{
8405 char *cmd;
8406 int rc = 0;
8407
8408 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008409 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008410 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008411 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008412 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008413 fan_write_cmd_disable(cmd, &rc) ||
8414 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008415 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008416 fan_write_cmd_speed(cmd, &rc))
8417 )
8418 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008419 else if (!rc)
8420 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008421 }
8422
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008423 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008424}
8425
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008426static struct ibm_struct fan_driver_data = {
8427 .name = "fan",
8428 .read = fan_read,
8429 .write = fan_write,
8430 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008431 .suspend = fan_suspend,
8432 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008433};
8434
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008435/****************************************************************************
8436 ****************************************************************************
8437 *
8438 * Infrastructure
8439 *
8440 ****************************************************************************
8441 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008443/*
8444 * HKEY event callout for other subdrivers go here
8445 * (yes, it is ugly, but it is quick, safe, and gets the job done
8446 */
8447static void tpacpi_driver_event(const unsigned int hkey_event)
8448{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00008449 if (ibm_backlight_device) {
8450 switch (hkey_event) {
8451 case TP_HKEY_EV_BRGHT_UP:
8452 case TP_HKEY_EV_BRGHT_DOWN:
8453 tpacpi_brightness_notify_change();
8454 }
8455 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008456 if (alsa_card) {
8457 switch (hkey_event) {
8458 case TP_HKEY_EV_VOL_UP:
8459 case TP_HKEY_EV_VOL_DOWN:
8460 case TP_HKEY_EV_VOL_MUTE:
8461 volume_alsa_notify_change();
8462 }
8463 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008464}
8465
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008466static void hotkey_driver_event(const unsigned int scancode)
8467{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03008468 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008469}
8470
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008471/* sysfs name ---------------------------------------------------------- */
8472static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
8473 struct device_attribute *attr,
8474 char *buf)
8475{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008476 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008477}
8478
8479static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
8480 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
8481
8482/* --------------------------------------------------------------------- */
8483
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008484/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03008485static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008486
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008487/*
8488 * Module and infrastructure proble, init and exit handling
8489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008491static int force_load;
8492
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008493#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008494static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008495{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008496 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008497
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008498 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008499}
8500#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8501
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008502static void ibm_exit(struct ibm_struct *ibm)
8503{
8504 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
8505
8506 list_del_init(&ibm->all_drivers);
8507
8508 if (ibm->flags.acpi_notify_installed) {
8509 dbg_printk(TPACPI_DBG_EXIT,
8510 "%s: acpi_remove_notify_handler\n", ibm->name);
8511 BUG_ON(!ibm->acpi);
8512 acpi_remove_notify_handler(*ibm->acpi->handle,
8513 ibm->acpi->type,
8514 dispatch_acpi_notify);
8515 ibm->flags.acpi_notify_installed = 0;
8516 ibm->flags.acpi_notify_installed = 0;
8517 }
8518
8519 if (ibm->flags.proc_created) {
8520 dbg_printk(TPACPI_DBG_EXIT,
8521 "%s: remove_proc_entry\n", ibm->name);
8522 remove_proc_entry(ibm->name, proc_dir);
8523 ibm->flags.proc_created = 0;
8524 }
8525
8526 if (ibm->flags.acpi_driver_registered) {
8527 dbg_printk(TPACPI_DBG_EXIT,
8528 "%s: acpi_bus_unregister_driver\n", ibm->name);
8529 BUG_ON(!ibm->acpi);
8530 acpi_bus_unregister_driver(ibm->acpi->driver);
8531 kfree(ibm->acpi->driver);
8532 ibm->acpi->driver = NULL;
8533 ibm->flags.acpi_driver_registered = 0;
8534 }
8535
8536 if (ibm->flags.init_called && ibm->exit) {
8537 ibm->exit();
8538 ibm->flags.init_called = 0;
8539 }
8540
8541 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
8542}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008543
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008544static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545{
8546 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008547 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 struct proc_dir_entry *entry;
8549
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008550 BUG_ON(ibm == NULL);
8551
8552 INIT_LIST_HEAD(&ibm->all_drivers);
8553
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008554 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555 return 0;
8556
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008557 dbg_printk(TPACPI_DBG_INIT,
8558 "probing for %s\n", ibm->name);
8559
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008560 if (iibm->init) {
8561 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008562 if (ret > 0)
8563 return 0; /* probe failed */
8564 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008565 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008566
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008567 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008568 }
8569
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008570 if (ibm->acpi) {
8571 if (ibm->acpi->hid) {
8572 ret = register_tpacpi_subdriver(ibm);
8573 if (ret)
8574 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008575 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008576
8577 if (ibm->acpi->notify) {
8578 ret = setup_acpi_notify(ibm);
8579 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008580 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008581 ibm->name);
8582 ret = 0;
8583 goto err_out;
8584 }
8585 if (ret < 0)
8586 goto err_out;
8587 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008588 }
8589
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008590 dbg_printk(TPACPI_DBG_INIT,
8591 "%s installed\n", ibm->name);
8592
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008593 if (ibm->read) {
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008594 mode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008595
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008596 if (!mode)
8597 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008598 if (ibm->write)
8599 mode |= S_IWUSR;
8600 entry = proc_create_data(ibm->name, mode, proc_dir,
8601 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008602 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008603 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008604 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008605 ret = -ENODEV;
8606 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008607 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008608 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008611 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
8612
Linus Torvalds1da177e2005-04-16 15:20:36 -07008613 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008614
8615err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008616 dbg_printk(TPACPI_DBG_INIT,
8617 "%s: at error exit path with result %d\n",
8618 ibm->name, ret);
8619
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008620 ibm_exit(ibm);
8621 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622}
8623
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008624/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008626static bool __pure __init tpacpi_is_fw_digit(const char c)
8627{
8628 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
8629}
8630
8631/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8632static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
8633 const char t)
8634{
8635 return s && strlen(s) >= 8 &&
8636 tpacpi_is_fw_digit(s[0]) &&
8637 tpacpi_is_fw_digit(s[1]) &&
8638 s[2] == t && s[3] == 'T' &&
8639 tpacpi_is_fw_digit(s[4]) &&
8640 tpacpi_is_fw_digit(s[5]) &&
8641 s[6] == 'W' && s[7] == 'W';
8642}
8643
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008644/* returns 0 - probe ok, or < 0 - probe error.
8645 * Probe ok doesn't mean thinkpad found.
8646 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8647static int __must_check __init get_thinkpad_model_data(
8648 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008649{
Jeff Garzik18552562007-10-03 15:15:40 -04008650 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008651 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008652 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008653
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008654 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008655 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008656
8657 memset(tp, 0, sizeof(*tp));
8658
8659 if (dmi_name_in_vendors("IBM"))
8660 tp->vendor = PCI_VENDOR_ID_IBM;
8661 else if (dmi_name_in_vendors("LENOVO"))
8662 tp->vendor = PCI_VENDOR_ID_LENOVO;
8663 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008664 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008665
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008666 s = dmi_get_system_info(DMI_BIOS_VERSION);
8667 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
8668 if (s && !tp->bios_version_str)
8669 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008670
8671 /* Really ancient ThinkPad 240X will fail this, which is fine */
8672 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008673 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008674
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008675 tp->bios_model = tp->bios_version_str[0]
8676 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008677 tp->bios_release = (tp->bios_version_str[4] << 8)
8678 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008679
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008680 /*
8681 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8682 * X32 or newer, all Z series; Some models must have an
8683 * up-to-date BIOS or they will not be detected.
8684 *
8685 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8686 */
8687 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008688 if (sscanf(dev->name,
8689 "IBM ThinkPad Embedded Controller -[%17c",
8690 ec_fw_string) == 1) {
8691 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
8692 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008693
8694 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008695 if (!tp->ec_version_str)
8696 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008697
8698 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
8699 tp->ec_model = ec_fw_string[0]
8700 | (ec_fw_string[1] << 8);
8701 tp->ec_release = (ec_fw_string[4] << 8)
8702 | ec_fw_string[5];
8703 } else {
8704 printk(TPACPI_NOTICE
8705 "ThinkPad firmware release %s "
8706 "doesn't match the known patterns\n",
8707 ec_fw_string);
8708 printk(TPACPI_NOTICE
8709 "please report this to %s\n",
8710 TPACPI_MAIL);
8711 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008712 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008713 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008714 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008715
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008716 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
8717 if (s && !strnicmp(s, "ThinkPad", 8)) {
8718 tp->model_str = kstrdup(s, GFP_KERNEL);
8719 if (!tp->model_str)
8720 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008721 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008722
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008723 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8724 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8725 if (s && !tp->nummodel_str)
8726 return -ENOMEM;
8727
8728 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008729}
8730
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008731static int __init probe_for_thinkpad(void)
8732{
8733 int is_thinkpad;
8734
8735 if (acpi_disabled)
8736 return -ENODEV;
8737
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008738 /* It would be dangerous to run the driver in this case */
8739 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8740 return -ENODEV;
8741
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008742 /*
8743 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008744 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008745 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008746 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8747 (thinkpad_id.ec_model != 0) ||
8748 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008749
8750 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008751 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008752 if (!ec_handle) {
8753 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008754 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008755 "Not yet supported ThinkPad detected!\n");
8756 return -ENODEV;
8757 }
8758
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008759 if (!is_thinkpad && !force_load)
8760 return -ENODEV;
8761
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008762 return 0;
8763}
8764
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008765static void __init thinkpad_acpi_init_banner(void)
8766{
8767 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
8768 printk(TPACPI_INFO "%s\n", TPACPI_URL);
8769
8770 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
8771 (thinkpad_id.bios_version_str) ?
8772 thinkpad_id.bios_version_str : "unknown",
8773 (thinkpad_id.ec_version_str) ?
8774 thinkpad_id.ec_version_str : "unknown");
8775
8776 BUG_ON(!thinkpad_id.vendor);
8777
8778 if (thinkpad_id.model_str)
8779 printk(TPACPI_INFO "%s %s, model %s\n",
8780 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
8781 "IBM" : ((thinkpad_id.vendor ==
8782 PCI_VENDOR_ID_LENOVO) ?
8783 "Lenovo" : "Unknown vendor"),
8784 thinkpad_id.model_str,
8785 (thinkpad_id.nummodel_str) ?
8786 thinkpad_id.nummodel_str : "unknown");
8787}
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008788
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008789/* Module init, exit, parameters */
8790
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008791static struct ibm_init_struct ibms_init[] __initdata = {
8792 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008793 .data = &thinkpad_acpi_driver_data,
8794 },
8795 {
8796 .init = hotkey_init,
8797 .data = &hotkey_driver_data,
8798 },
8799 {
8800 .init = bluetooth_init,
8801 .data = &bluetooth_driver_data,
8802 },
8803 {
8804 .init = wan_init,
8805 .data = &wan_driver_data,
8806 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008807 {
8808 .init = uwb_init,
8809 .data = &uwb_driver_data,
8810 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008811#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008812 {
8813 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008814 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008815 .data = &video_driver_data,
8816 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008817#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008818 {
8819 .init = light_init,
8820 .data = &light_driver_data,
8821 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008822 {
8823 .init = cmos_init,
8824 .data = &cmos_driver_data,
8825 },
8826 {
8827 .init = led_init,
8828 .data = &led_driver_data,
8829 },
8830 {
8831 .init = beep_init,
8832 .data = &beep_driver_data,
8833 },
8834 {
8835 .init = thermal_init,
8836 .data = &thermal_driver_data,
8837 },
8838 {
8839 .data = &ecdump_driver_data,
8840 },
8841 {
8842 .init = brightness_init,
8843 .data = &brightness_driver_data,
8844 },
8845 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008846 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008847 .data = &volume_driver_data,
8848 },
8849 {
8850 .init = fan_init,
8851 .data = &fan_driver_data,
8852 },
8853};
8854
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008855static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8856{
8857 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008858 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008859
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008860 if (!kp || !kp->name || !val)
8861 return -EINVAL;
8862
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008863 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8864 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008865 WARN_ON(ibm == NULL);
8866
8867 if (!ibm || !ibm->name)
8868 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008869
8870 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8871 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008872 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008873 strcpy(ibms_init[i].param, val);
8874 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008875 return 0;
8876 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008877 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008878
8879 return -EINVAL;
8880}
8881
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008882module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008883MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008884 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008885
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008886module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008887MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008888
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008889module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008890MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008891 "Attempts to load the driver even on a "
8892 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008893
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008894module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008895MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008896 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008897
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008898module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008899MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008900 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008901 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008902
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008903module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008904MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008905 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008906
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008907module_param(hotkey_report_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008908MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008909 "used for backwards compatibility with userspace, "
8910 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008911
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008912#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008913module_param_named(volume_mode, volume_mode, uint, 0444);
8914MODULE_PARM_DESC(volume_mode,
8915 "Selects volume control strategy: "
8916 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
8917
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02008918module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
8919MODULE_PARM_DESC(volume_capabilities,
8920 "Selects the mixer capabilites: "
8921 "0=auto, 1=volume and mute, 2=mute only");
8922
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02008923module_param_named(volume_control, volume_control_allowed, bool, 0444);
8924MODULE_PARM_DESC(volume_control,
8925 "Enables software override for the console audio "
8926 "control when true");
8927
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008928/* ALSA module API parameters */
8929module_param_named(index, alsa_index, int, 0444);
8930MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
8931module_param_named(id, alsa_id, charp, 0444);
8932MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
8933module_param_named(enable, alsa_enable, bool, 0444);
8934MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008935#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008936
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008937#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008938 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008939 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008940 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008941
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008942TPACPI_PARAM(hotkey);
8943TPACPI_PARAM(bluetooth);
8944TPACPI_PARAM(video);
8945TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008946TPACPI_PARAM(cmos);
8947TPACPI_PARAM(led);
8948TPACPI_PARAM(beep);
8949TPACPI_PARAM(ecdump);
8950TPACPI_PARAM(brightness);
8951TPACPI_PARAM(volume);
8952TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008953
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008954#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008955module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008956MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8957module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8958MODULE_PARM_DESC(wlsw_state,
8959 "Initial state of the emulated WLSW switch");
8960
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008961module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008962MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8963module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8964MODULE_PARM_DESC(bluetooth_state,
8965 "Initial state of the emulated bluetooth switch");
8966
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008967module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008968MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8969module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8970MODULE_PARM_DESC(wwan_state,
8971 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008972
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008973module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008974MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8975module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8976MODULE_PARM_DESC(uwb_state,
8977 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008978#endif
8979
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008980static void thinkpad_acpi_module_exit(void)
8981{
8982 struct ibm_struct *ibm, *itmp;
8983
8984 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8985
8986 list_for_each_entry_safe_reverse(ibm, itmp,
8987 &tpacpi_all_drivers,
8988 all_drivers) {
8989 ibm_exit(ibm);
8990 }
8991
8992 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
8993
8994 if (tpacpi_inputdev) {
8995 if (tp_features.input_device_registered)
8996 input_unregister_device(tpacpi_inputdev);
8997 else
8998 input_free_device(tpacpi_inputdev);
8999 }
9000
9001 if (tpacpi_hwmon)
9002 hwmon_device_unregister(tpacpi_hwmon);
9003
9004 if (tp_features.sensors_pdev_attrs_registered)
9005 device_remove_file(&tpacpi_sensors_pdev->dev,
9006 &dev_attr_thinkpad_acpi_pdev_name);
9007 if (tpacpi_sensors_pdev)
9008 platform_device_unregister(tpacpi_sensors_pdev);
9009 if (tpacpi_pdev)
9010 platform_device_unregister(tpacpi_pdev);
9011
9012 if (tp_features.sensors_pdrv_attrs_registered)
9013 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
9014 if (tp_features.platform_drv_attrs_registered)
9015 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
9016
9017 if (tp_features.sensors_pdrv_registered)
9018 platform_driver_unregister(&tpacpi_hwmon_pdriver);
9019
9020 if (tp_features.platform_drv_registered)
9021 platform_driver_unregister(&tpacpi_pdriver);
9022
9023 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009024 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009025
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009026 if (tpacpi_wq)
9027 destroy_workqueue(tpacpi_wq);
9028
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009029 kfree(thinkpad_id.bios_version_str);
9030 kfree(thinkpad_id.ec_version_str);
9031 kfree(thinkpad_id.model_str);
9032}
9033
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009034
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009035static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009036{
9037 int ret, i;
9038
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03009039 tpacpi_lifecycle = TPACPI_LIFE_INIT;
9040
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03009041 /* Parameter checking */
9042 if (hotkey_report_mode > 2)
9043 return -EINVAL;
9044
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009045 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009046
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009047 ret = get_thinkpad_model_data(&thinkpad_id);
9048 if (ret) {
9049 printk(TPACPI_ERR
9050 "unable to get DMI data: %d\n", ret);
9051 thinkpad_acpi_module_exit();
9052 return ret;
9053 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009054 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009055 if (ret) {
9056 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009057 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009059
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009060 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009061
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009062 thinkpad_acpi_init_banner();
9063 tpacpi_check_outdated_fw();
9064
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009065 TPACPI_ACPIHANDLE_INIT(ecrd);
9066 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009067
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009068 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
9069 if (!tpacpi_wq) {
9070 thinkpad_acpi_module_exit();
9071 return -ENOMEM;
9072 }
9073
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009074 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009075 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009076 printk(TPACPI_ERR
9077 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009078 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079 return -ENODEV;
9080 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009081
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009082 ret = platform_driver_register(&tpacpi_pdriver);
9083 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009084 printk(TPACPI_ERR
9085 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009086 thinkpad_acpi_module_exit();
9087 return ret;
9088 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009089 tp_features.platform_drv_registered = 1;
9090
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009091 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9092 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009093 printk(TPACPI_ERR
9094 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009095 thinkpad_acpi_module_exit();
9096 return ret;
9097 }
9098 tp_features.sensors_pdrv_registered = 1;
9099
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009100 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009101 if (!ret) {
9102 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009103 ret = tpacpi_create_driver_attributes(
9104 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009105 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009106 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009107 printk(TPACPI_ERR
9108 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009109 thinkpad_acpi_module_exit();
9110 return ret;
9111 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009112 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009113
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009114
9115 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009116 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009117 NULL, 0);
9118 if (IS_ERR(tpacpi_pdev)) {
9119 ret = PTR_ERR(tpacpi_pdev);
9120 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009121 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009122 thinkpad_acpi_module_exit();
9123 return ret;
9124 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009125 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009126 TPACPI_HWMON_DRVR_NAME,
9127 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009128 if (IS_ERR(tpacpi_sensors_pdev)) {
9129 ret = PTR_ERR(tpacpi_sensors_pdev);
9130 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009131 printk(TPACPI_ERR
9132 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009133 thinkpad_acpi_module_exit();
9134 return ret;
9135 }
9136 ret = device_create_file(&tpacpi_sensors_pdev->dev,
9137 &dev_attr_thinkpad_acpi_pdev_name);
9138 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009139 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009140 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009141 thinkpad_acpi_module_exit();
9142 return ret;
9143 }
9144 tp_features.sensors_pdev_attrs_registered = 1;
9145 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009146 if (IS_ERR(tpacpi_hwmon)) {
9147 ret = PTR_ERR(tpacpi_hwmon);
9148 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009149 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009150 thinkpad_acpi_module_exit();
9151 return ret;
9152 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009153 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009154 tpacpi_inputdev = input_allocate_device();
9155 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009156 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009157 thinkpad_acpi_module_exit();
9158 return -ENOMEM;
9159 } else {
9160 /* Prepare input device, but don't register */
9161 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009162 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009163 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009164 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009165 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9166 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009167 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009168 }
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03009169
9170 /* Init subdriver dependencies */
9171 tpacpi_detect_brightness_capabilities();
9172
9173 /* Init subdrivers */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009174 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9175 ret = ibm_init(&ibms_init[i]);
9176 if (ret >= 0 && *ibms_init[i].param)
9177 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009178 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009179 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180 return ret;
9181 }
9182 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009183
9184 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9185
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009186 ret = input_register_device(tpacpi_inputdev);
9187 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009188 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009189 thinkpad_acpi_module_exit();
9190 return ret;
9191 } else {
9192 tp_features.input_device_registered = 1;
9193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009194
9195 return 0;
9196}
9197
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009198MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9199
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009200/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009201 * This will autoload the driver in almost every ThinkPad
9202 * in widespread use.
9203 *
9204 * Only _VERY_ old models, like the 240, 240x and 570 lack
9205 * the HKEY event interface.
9206 */
9207MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9208
9209/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009210 * DMI matching for module autoloading
9211 *
9212 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9213 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9214 *
9215 * Only models listed in thinkwiki will be supported, so add yours
9216 * if it is not there yet.
9217 */
9218#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009219 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009220
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009221/* Ancient thinkpad BIOSes have to be identified by
9222 * BIOS type or model number, and there are far less
9223 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009224IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009225
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009226MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9227MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009228MODULE_DESCRIPTION(TPACPI_DESC);
9229MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009230MODULE_LICENSE("GPL");
9231
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009232module_init(thinkpad_acpi_module_init);
9233module_exit(thinkpad_acpi_module_exit);