blob: 7817cef6aae148bee0a5d07e514ca92c3d846eaa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03002 * thinkpad_acpi.c - ThinkPad ACPI Extras
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
Henrique de Moraes Holschuh1c762ca2009-04-04 04:25:42 +00006 * Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
Henrique de Moraes Holschuha62bc912007-03-23 17:33:58 -030020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
Borislav Deianov78f81cc2005-08-17 00:00:00 -040022 */
23
Henrique de Moraes Holschuh5d2eb142009-12-15 21:51:13 -020024#define TPACPI_VERSION "0.24"
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020025#define TPACPI_SYSFS_VERSION 0x020700
Borislav Deianov78f81cc2005-08-17 00:00:00 -040026
27/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Changelog:
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020029 * 2007-10-20 changelog trimmed down
30 *
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030031 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
32 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020033 *
34 * 2006-11-22 0.13 new maintainer
35 * changelog now lives in git commit history, and will
36 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030037 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040038 * 2005-03-17 0.11 support for 600e, 770x
39 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020040 *
41 * 2005-01-16 0.9 use MODULE_VERSION
Borislav Deianov78f81cc2005-08-17 00:00:00 -040042 * thanks to Henrik Brix Andersen <brix@gentoo.org>
43 * fix parameter passing on module loading
44 * thanks to Rusty Russell <rusty@rustcorp.com.au>
45 * thanks to Jim Radford <radford@blackbean.org>
46 * 2004-11-08 0.8 fix init error case, don't return from a macro
47 * thanks to Chris Wright <chrisw@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020050#include <linux/kernel.h>
51#include <linux/module.h>
52#include <linux/init.h>
53#include <linux/types.h>
54#include <linux/string.h>
55#include <linux/list.h>
56#include <linux/mutex.h>
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +000057#include <linux/sched.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020058#include <linux/kthread.h>
59#include <linux/freezer.h>
60#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020062
63#include <linux/nvram.h>
64#include <linux/proc_fs.h>
Alexey Dobriyan887965e2009-12-15 21:51:12 -020065#include <linux/seq_file.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020066#include <linux/sysfs.h>
67#include <linux/backlight.h>
68#include <linux/fb.h>
69#include <linux/platform_device.h>
70#include <linux/hwmon.h>
71#include <linux/hwmon-sysfs.h>
72#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030073#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030074#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020075#include <asm/uaccess.h>
76
77#include <linux/dmi.h>
78#include <linux/jiffies.h>
79#include <linux/workqueue.h>
80
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020081#include <sound/core.h>
82#include <sound/control.h>
83#include <sound/initval.h>
84
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020085#include <acpi/acpi_drivers.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020086
87#include <linux/pci_ids.h>
88
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020089
90/* ThinkPad CMOS commands */
91#define TP_CMOS_VOLUME_DOWN 0
92#define TP_CMOS_VOLUME_UP 1
93#define TP_CMOS_VOLUME_MUTE 2
94#define TP_CMOS_BRIGHTNESS_UP 4
95#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030096#define TP_CMOS_THINKLIGHT_ON 12
97#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020098
99/* NVRAM Addresses */
100enum tp_nvram_addr {
101 TP_NVRAM_ADDR_HK2 = 0x57,
102 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
103 TP_NVRAM_ADDR_VIDEO = 0x59,
104 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
105 TP_NVRAM_ADDR_MIXER = 0x60,
106};
107
108/* NVRAM bit masks */
109enum {
110 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
111 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
112 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
113 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
114 TP_NVRAM_MASK_THINKLIGHT = 0x10,
115 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
116 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
117 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
118 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
119 TP_NVRAM_MASK_MUTE = 0x40,
120 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
121 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
122 TP_NVRAM_POS_LEVEL_VOLUME = 0,
123};
124
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200125/* ACPI HIDs */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200126#define TPACPI_ACPI_HKEY_HID "IBM0068"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200127
128/* Input IDs */
129#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
130#define TPACPI_HKEY_INPUT_VERSION 0x4101
131
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200132/* ACPI \WGSV commands */
133enum {
134 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
135 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
136 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
137 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
138};
139
140/* TP_ACPI_WGSV_GET_STATE bits */
141enum {
142 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
143 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
144 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
145 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
146 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
147 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
148 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
149 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
150 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
151 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
152};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200153
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300154/* HKEY events */
155enum tpacpi_hkey_event_t {
156 /* Hotkey-related */
157 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
158 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
159 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
160 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
161 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
162 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
163
164 /* Reasons for waking up from S3/S4 */
165 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
166 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
167 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
168 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
169 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
170 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
171
172 /* Auto-sleep after eject request */
173 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
174 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
175
176 /* Misc bay events */
177 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
178
179 /* User-interface events */
180 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
181 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
182 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
183 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
184 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
185 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
186 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
187
188 /* Thermal events */
189 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
190 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
191 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
192 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
193 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
194
195 /* Misc */
196 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
197};
198
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200199/****************************************************************************
200 * Main driver
201 */
202
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200203#define TPACPI_NAME "thinkpad"
204#define TPACPI_DESC "ThinkPad ACPI Extras"
205#define TPACPI_FILE TPACPI_NAME "_acpi"
206#define TPACPI_URL "http://ibm-acpi.sf.net/"
207#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200208
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200209#define TPACPI_PROC_DIR "ibm"
210#define TPACPI_ACPI_EVENT_PREFIX "ibm"
211#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300212#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200213#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200214
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300215#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300216#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300217
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200218#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200219
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000220/* printk headers */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200221#define TPACPI_LOG TPACPI_FILE ": "
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000222#define TPACPI_EMERG KERN_EMERG TPACPI_LOG
223#define TPACPI_ALERT KERN_ALERT TPACPI_LOG
224#define TPACPI_CRIT KERN_CRIT TPACPI_LOG
225#define TPACPI_ERR KERN_ERR TPACPI_LOG
226#define TPACPI_WARN KERN_WARNING TPACPI_LOG
227#define TPACPI_NOTICE KERN_NOTICE TPACPI_LOG
228#define TPACPI_INFO KERN_INFO TPACPI_LOG
229#define TPACPI_DEBUG KERN_DEBUG TPACPI_LOG
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200230
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000231/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200232#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000233#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200234#define TPACPI_DBG_INIT 0x0001
235#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +0000236#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000237#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000238#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000239#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200240#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200241
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200242#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
243#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
244#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200245
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200246
247/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200248 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200249 */
250
251struct ibm_struct;
252
253struct tp_acpi_drv_struct {
254 const struct acpi_device_id *hid;
255 struct acpi_driver *driver;
256
257 void (*notify) (struct ibm_struct *, u32);
258 acpi_handle *handle;
259 u32 type;
260 struct acpi_device *device;
261};
262
263struct ibm_struct {
264 char *name;
265
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200266 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200267 int (*write) (char *);
268 void (*exit) (void);
269 void (*resume) (void);
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200270 void (*suspend) (pm_message_t state);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200271 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200272
273 struct list_head all_drivers;
274
275 struct tp_acpi_drv_struct *acpi;
276
277 struct {
278 u8 acpi_driver_registered:1;
279 u8 acpi_notify_installed:1;
280 u8 proc_created:1;
281 u8 init_called:1;
282 u8 experimental:1;
283 } flags;
284};
285
286struct ibm_init_struct {
287 char param[32];
288
289 int (*init) (struct ibm_init_struct *);
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -0300290 mode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200291 struct ibm_struct *data;
292};
293
294static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200295 u32 bluetooth:1;
296 u32 hotkey:1;
297 u32 hotkey_mask:1;
298 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200299 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200300 u32 light:1;
301 u32 light_status:1;
302 u32 bright_16levels:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300303 u32 bright_acpimode:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200304 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200305 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200306 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300307 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300308 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200309 u32 mixer_no_level_control:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200310 u32 input_device_registered:1;
311 u32 platform_drv_registered:1;
312 u32 platform_drv_attrs_registered:1;
313 u32 sensors_pdrv_registered:1;
314 u32 sensors_pdrv_attrs_registered:1;
315 u32 sensors_pdev_attrs_registered:1;
316 u32 hotkey_poll_active:1;
317} tp_features;
318
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300319static struct {
320 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200321 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300322} tp_warned;
323
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200324struct thinkpad_id_data {
325 unsigned int vendor; /* ThinkPad vendor:
326 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
327
328 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
329 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
330
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300331 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200332 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300333 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
334 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200335
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300336 char *model_str; /* ThinkPad T43 */
337 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200338};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200339static struct thinkpad_id_data thinkpad_id;
340
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300341static enum {
342 TPACPI_LIFE_INIT = 0,
343 TPACPI_LIFE_RUNNING,
344 TPACPI_LIFE_EXITING,
345} tpacpi_lifecycle;
346
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200347static int experimental;
348static u32 dbg_level;
349
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300350static struct workqueue_struct *tpacpi_wq;
351
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000352enum led_status_t {
353 TPACPI_LED_OFF = 0,
354 TPACPI_LED_ON,
355 TPACPI_LED_BLINK,
356};
357
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300358/* Special LED class that can defer work */
359struct tpacpi_led_classdev {
360 struct led_classdev led_classdev;
361 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000362 enum led_status_t new_state;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -0300363 unsigned int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300364};
365
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200366#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
367static int dbg_wlswemul;
368static int tpacpi_wlsw_emulstate;
369static int dbg_bluetoothemul;
370static int tpacpi_bluetooth_emulstate;
371static int dbg_wwanemul;
372static int tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200373static int dbg_uwbemul;
374static int tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200375#endif
376
377
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000378/*************************************************************************
379 * Debugging helpers
380 */
381
382#define dbg_printk(a_dbg_level, format, arg...) \
383 do { if (dbg_level & (a_dbg_level)) \
384 printk(TPACPI_DEBUG "%s: " format, __func__ , ## arg); \
385 } while (0)
386
387#ifdef CONFIG_THINKPAD_ACPI_DEBUG
388#define vdbg_printk dbg_printk
389static const char *str_supported(int is_supported);
390#else
391#define vdbg_printk(a_dbg_level, format, arg...) \
392 do { } while (0)
393#endif
394
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000395static void tpacpi_log_usertask(const char * const what)
396{
397 printk(TPACPI_DEBUG "%s: access by process with PID %d\n",
398 what, task_tgid_vnr(current));
399}
400
401#define tpacpi_disclose_usertask(what, format, arg...) \
402 do { \
403 if (unlikely( \
404 (dbg_level & TPACPI_DBG_DISCLOSETASK) && \
405 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
406 printk(TPACPI_DEBUG "%s: PID %d: " format, \
407 what, task_tgid_vnr(current), ## arg); \
408 } \
409 } while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000410
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300411/*
412 * Quirk handling helpers
413 *
414 * ThinkPad IDs and versions seen in the field so far
415 * are two-characters from the set [0-9A-Z], i.e. base 36.
416 *
417 * We use values well outside that range as specials.
418 */
419
420#define TPACPI_MATCH_ANY 0xffffU
421#define TPACPI_MATCH_UNKNOWN 0U
422
423/* TPID('1', 'Y') == 0x5931 */
424#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
425
426#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
427 { .vendor = PCI_VENDOR_ID_IBM, \
428 .bios = TPID(__id1, __id2), \
429 .ec = TPACPI_MATCH_ANY, \
430 .quirks = (__quirk) }
431
432#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
433 { .vendor = PCI_VENDOR_ID_LENOVO, \
434 .bios = TPID(__id1, __id2), \
435 .ec = TPACPI_MATCH_ANY, \
436 .quirks = (__quirk) }
437
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200438#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
439 { .vendor = PCI_VENDOR_ID_LENOVO, \
440 .bios = TPACPI_MATCH_ANY, \
441 .ec = TPID(__id1, __id2), \
442 .quirks = (__quirk) }
443
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300444struct tpacpi_quirk {
445 unsigned int vendor;
446 u16 bios;
447 u16 ec;
448 unsigned long quirks;
449};
450
451/**
452 * tpacpi_check_quirks() - search BIOS/EC version on a list
453 * @qlist: array of &struct tpacpi_quirk
454 * @qlist_size: number of elements in @qlist
455 *
456 * Iterates over a quirks list until one is found that matches the
457 * ThinkPad's vendor, BIOS and EC model.
458 *
459 * Returns 0 if nothing matches, otherwise returns the quirks field of
460 * the matching &struct tpacpi_quirk entry.
461 *
462 * The match criteria is: vendor, ec and bios much match.
463 */
464static unsigned long __init tpacpi_check_quirks(
465 const struct tpacpi_quirk *qlist,
466 unsigned int qlist_size)
467{
468 while (qlist_size) {
469 if ((qlist->vendor == thinkpad_id.vendor ||
470 qlist->vendor == TPACPI_MATCH_ANY) &&
471 (qlist->bios == thinkpad_id.bios_model ||
472 qlist->bios == TPACPI_MATCH_ANY) &&
473 (qlist->ec == thinkpad_id.ec_model ||
474 qlist->ec == TPACPI_MATCH_ANY))
475 return qlist->quirks;
476
477 qlist_size--;
478 qlist++;
479 }
480 return 0;
481}
482
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300483static inline bool __pure __init tpacpi_is_lenovo(void)
484{
485 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
486}
487
488static inline bool __pure __init tpacpi_is_ibm(void)
489{
490 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
491}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300492
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300493/****************************************************************************
494 ****************************************************************************
495 *
496 * ACPI Helpers and device model
497 *
498 ****************************************************************************
499 ****************************************************************************/
500
501/*************************************************************************
502 * ACPI basic handles
503 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300505static acpi_handle root_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200507#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 static acpi_handle object##_handle; \
509 static acpi_handle *object##_parent = &parent##_handle; \
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400510 static char *object##_path; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 static char *object##_paths[] = { paths }
512
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200513TPACPI_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400514 "\\_SB.PCI.ISA.EC", /* 570 */
515 "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
516 "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
517 "\\_SB.PCI0.AD4S.EC0", /* i1400, R30 */
518 "\\_SB.PCI0.ICH3.EC0", /* R31 */
Henrique de Moraes Holschuha3189302010-05-16 19:45:26 -0300519 "\\_SB.PCI0.LPC0.EC", /* X100e and a few others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400520 "\\_SB.PCI0.LPC.EC", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300521 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200523TPACPI_HANDLE(ecrd, ec, "ECRD"); /* 570 */
524TPACPI_HANDLE(ecwr, ec, "ECWR"); /* 570 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200526TPACPI_HANDLE(cmos, root, "\\UCMS", /* R50, R50e, R50p, R51, */
527 /* T4x, X31, X40 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400528 "\\CMOS", /* A3x, G4x, R32, T23, T30, X22-24, X30 */
529 "\\CMS", /* R40, R40e */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300530 ); /* all others */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400531
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200532TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY", /* 600e/x, 770e, 770x */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400533 "^HKEY", /* R30, R31 */
534 "HKEY", /* all others */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300535 ); /* 570 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400536
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200537TPACPI_HANDLE(vid, root, "\\_SB.PCI.AGP.VGA", /* 570 */
538 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
539 "\\_SB.PCI0.VID0", /* 770e */
540 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
Henrique de Moraes Holschuha3189302010-05-16 19:45:26 -0300541 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -0200542 "\\_SB.PCI0.AGP.VID", /* all others */
543 ); /* R30, R31 */
544
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400545
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300546/*************************************************************************
547 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200548 */
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static int acpi_evalf(acpi_handle handle,
551 void *res, char *method, char *fmt, ...)
552{
553 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400554 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200555 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400556 struct acpi_buffer result, *resultp;
557 union acpi_object out_obj;
558 acpi_status status;
559 va_list ap;
560 char res_type;
561 int success;
562 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (!*fmt) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200565 printk(TPACPI_ERR "acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return 0;
567 }
568
569 if (*fmt == 'q') {
570 quiet = 1;
571 fmt++;
572 } else
573 quiet = 0;
574
575 res_type = *(fmt++);
576
577 params.count = 0;
578 params.pointer = &in_objs[0];
579
580 va_start(ap, fmt);
581 while (*fmt) {
582 char c = *(fmt++);
583 switch (c) {
584 case 'd': /* int */
585 in_objs[params.count].integer.value = va_arg(ap, int);
586 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
587 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400588 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200590 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 "with invalid format character '%c'\n", c);
592 return 0;
593 }
594 }
595 va_end(ap);
596
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400597 if (res_type != 'v') {
598 result.length = sizeof(out_obj);
599 result.pointer = &out_obj;
600 resultp = &result;
601 } else
602 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400604 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400607 case 'd': /* int */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (res)
609 *(int *)res = out_obj.integer.value;
610 success = status == AE_OK && out_obj.type == ACPI_TYPE_INTEGER;
611 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400612 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 success = status == AE_OK;
614 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400615 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 default:
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200617 printk(TPACPI_ERR "acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 "with invalid format character '%c'\n", res_type);
619 return 0;
620 }
621
622 if (!success && !quiet)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200623 printk(TPACPI_ERR "acpi_evalf(%s, %s, ...) failed: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 method, fmt0, status);
625
626 return success;
627}
628
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200629static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300630{
631 int v;
632
633 if (ecrd_handle) {
634 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
635 return 0;
636 *p = v;
637 } else {
638 if (ec_read(i, p) < 0)
639 return 0;
640 }
641
642 return 1;
643}
644
645static int acpi_ec_write(int i, u8 v)
646{
647 if (ecwr_handle) {
648 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
649 return 0;
650 } else {
651 if (ec_write(i, v) < 0)
652 return 0;
653 }
654
655 return 1;
656}
657
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300658static int issue_thinkpad_cmos_command(int cmos_cmd)
659{
660 if (!cmos_handle)
661 return -ENXIO;
662
663 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
664 return -EIO;
665
666 return 0;
667}
668
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300669/*************************************************************************
670 * ACPI device model
671 */
672
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200673#define TPACPI_ACPIHANDLE_INIT(object) \
674 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200675 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
676
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300677static void drv_acpi_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300678 acpi_handle *handle, acpi_handle parent,
679 char **paths, int num_paths, char **path)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300680{
681 int i;
682 acpi_status status;
683
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300684 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
685 name);
686
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300687 for (i = 0; i < num_paths; i++) {
688 status = acpi_get_handle(parent, paths[i], handle);
689 if (ACPI_SUCCESS(status)) {
690 *path = paths[i];
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300691 dbg_printk(TPACPI_DBG_INIT,
692 "Found ACPI handle %s for %s\n",
693 *path, name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300694 return;
695 }
696 }
697
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300698 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
699 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300700 *handle = NULL;
701}
702
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300703static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300704{
705 struct ibm_struct *ibm = data;
706
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300707 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
708 return;
709
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300710 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300711 return;
712
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300713 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300714}
715
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300716static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300717{
718 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300719 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300720
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300721 BUG_ON(!ibm->acpi);
722
723 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300724 return 0;
725
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300726 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300727 "setting up ACPI notify for %s\n", ibm->name);
728
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300729 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
730 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200731 printk(TPACPI_ERR "acpi_bus_get_device(%s) failed: %d\n",
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300732 ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300733 return -ENODEV;
734 }
735
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700736 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300737 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200738 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300739 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300740
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300741 status = acpi_install_notify_handler(*ibm->acpi->handle,
742 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300743 if (ACPI_FAILURE(status)) {
744 if (status == AE_ALREADY_EXISTS) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200745 printk(TPACPI_NOTICE
746 "another device driver is already "
747 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300748 } else {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200749 printk(TPACPI_ERR
750 "acpi_install_notify_handler(%s) failed: %d\n",
751 ibm->name, status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300752 }
753 return -ENODEV;
754 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300755 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300756 return 0;
757}
758
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300759static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300760{
761 return 0;
762}
763
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300764static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300765{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300766 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300767
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300768 dbg_printk(TPACPI_DBG_INIT,
769 "registering %s as an ACPI driver\n", ibm->name);
770
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300771 BUG_ON(!ibm->acpi);
772
773 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
774 if (!ibm->acpi->driver) {
Mariusz Kozlowski4f778b92008-10-18 14:23:53 -0300775 printk(TPACPI_ERR
776 "failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300777 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300778 }
779
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200780 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300781 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200782
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300783 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300784
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300785 rc = acpi_bus_register_driver(ibm->acpi->driver);
786 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200787 printk(TPACPI_ERR "acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200788 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300789 kfree(ibm->acpi->driver);
790 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300791 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300792 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300793
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300794 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300795}
796
797
798/****************************************************************************
799 ****************************************************************************
800 *
801 * Procfs Helpers
802 *
803 ****************************************************************************
804 ****************************************************************************/
805
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200806static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300807{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200808 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300809
810 if (!ibm || !ibm->read)
811 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200812 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300813}
814
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200815static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300816{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200817 return single_open(file, dispatch_proc_show, PDE(inode)->data);
818}
819
820static ssize_t dispatch_proc_write(struct file *file,
821 const char __user *userbuf,
822 size_t count, loff_t *pos)
823{
824 struct ibm_struct *ibm = PDE(file->f_path.dentry->d_inode)->data;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300825 char *kernbuf;
826 int ret;
827
828 if (!ibm || !ibm->write)
829 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300830 if (count > PAGE_SIZE - 2)
831 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300832
833 kernbuf = kmalloc(count + 2, GFP_KERNEL);
834 if (!kernbuf)
835 return -ENOMEM;
836
837 if (copy_from_user(kernbuf, userbuf, count)) {
838 kfree(kernbuf);
839 return -EFAULT;
840 }
841
842 kernbuf[count] = 0;
843 strcat(kernbuf, ",");
844 ret = ibm->write(kernbuf);
845 if (ret == 0)
846 ret = count;
847
848 kfree(kernbuf);
849
850 return ret;
851}
852
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200853static const struct file_operations dispatch_proc_fops = {
854 .owner = THIS_MODULE,
855 .open = dispatch_proc_open,
856 .read = seq_read,
857 .llseek = seq_lseek,
858 .release = single_release,
859 .write = dispatch_proc_write,
860};
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862static char *next_cmd(char **cmds)
863{
864 char *start = *cmds;
865 char *end;
866
867 while ((end = strchr(start, ',')) && end == start)
868 start = end + 1;
869
870 if (!end)
871 return NULL;
872
873 *end = 0;
874 *cmds = end + 1;
875 return start;
876}
877
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300878
879/****************************************************************************
880 ****************************************************************************
881 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300882 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300883 *
884 ****************************************************************************
885 ****************************************************************************/
886
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300887static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300888static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700889static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300890static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300891static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200892static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300893
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200894static int tpacpi_suspend_handler(struct platform_device *pdev,
895 pm_message_t state)
896{
897 struct ibm_struct *ibm, *itmp;
898
899 list_for_each_entry_safe(ibm, itmp,
900 &tpacpi_all_drivers,
901 all_drivers) {
902 if (ibm->suspend)
903 (ibm->suspend)(state);
904 }
905
906 return 0;
907}
908
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300909static int tpacpi_resume_handler(struct platform_device *pdev)
910{
911 struct ibm_struct *ibm, *itmp;
912
913 list_for_each_entry_safe(ibm, itmp,
914 &tpacpi_all_drivers,
915 all_drivers) {
916 if (ibm->resume)
917 (ibm->resume)();
918 }
919
920 return 0;
921}
922
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200923static void tpacpi_shutdown_handler(struct platform_device *pdev)
924{
925 struct ibm_struct *ibm, *itmp;
926
927 list_for_each_entry_safe(ibm, itmp,
928 &tpacpi_all_drivers,
929 all_drivers) {
930 if (ibm->shutdown)
931 (ibm->shutdown)();
932 }
933}
934
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300935static struct platform_driver tpacpi_pdriver = {
936 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200937 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300938 .owner = THIS_MODULE,
939 },
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200940 .suspend = tpacpi_suspend_handler,
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300941 .resume = tpacpi_resume_handler,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200942 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300943};
944
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300945static struct platform_driver tpacpi_hwmon_pdriver = {
946 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200947 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300948 .owner = THIS_MODULE,
949 },
950};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300951
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300952/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300953 * sysfs support helpers
954 */
955
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200956struct attribute_set {
957 unsigned int members, max_members;
958 struct attribute_group group;
959};
960
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300961struct attribute_set_obj {
962 struct attribute_set s;
963 struct attribute *a;
964} __attribute__((packed));
965
966static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200967 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300968{
969 struct attribute_set_obj *sobj;
970
971 if (max_members == 0)
972 return NULL;
973
974 /* Allocates space for implicit NULL at the end too */
975 sobj = kzalloc(sizeof(struct attribute_set_obj) +
976 max_members * sizeof(struct attribute *),
977 GFP_KERNEL);
978 if (!sobj)
979 return NULL;
980 sobj->s.max_members = max_members;
981 sobj->s.group.attrs = &sobj->a;
982 sobj->s.group.name = name;
983
984 return &sobj->s;
985}
986
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200987#define destroy_attr_set(_set) \
988 kfree(_set);
989
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300990/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200991static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300992{
993 if (!s || !attr)
994 return -EINVAL;
995
996 if (s->members >= s->max_members)
997 return -ENOMEM;
998
999 s->group.attrs[s->members] = attr;
1000 s->members++;
1001
1002 return 0;
1003}
1004
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001005static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001006 struct attribute **attr,
1007 unsigned int count)
1008{
1009 int i, res;
1010
1011 for (i = 0; i < count; i++) {
1012 res = add_to_attr_set(s, attr[i]);
1013 if (res)
1014 return res;
1015 }
1016
1017 return 0;
1018}
1019
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001020static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001021{
1022 sysfs_remove_group(kobj, &s->group);
1023 destroy_attr_set(s);
1024}
1025
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001026#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1027 sysfs_create_group(_kobj, &_attr_set->group)
1028
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001029static int parse_strtoul(const char *buf,
1030 unsigned long max, unsigned long *value)
1031{
1032 char *endp;
1033
André Goddard Rosae7d28602009-12-14 18:01:06 -08001034 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1035 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001036 if (*endp || *value > max)
1037 return -EINVAL;
1038
1039 return 0;
1040}
1041
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03001042static void tpacpi_disable_brightness_delay(void)
1043{
1044 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
1045 printk(TPACPI_NOTICE
1046 "ACPI backlight control delay disabled\n");
1047}
1048
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03001049static int __init tpacpi_query_bcl_levels(acpi_handle handle)
1050{
1051 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1052 union acpi_object *obj;
1053 int rc;
1054
1055 if (ACPI_SUCCESS(acpi_evaluate_object(handle, NULL, NULL, &buffer))) {
1056 obj = (union acpi_object *)buffer.pointer;
1057 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
1058 printk(TPACPI_ERR "Unknown _BCL data, "
1059 "please report this to %s\n", TPACPI_MAIL);
1060 rc = 0;
1061 } else {
1062 rc = obj->package.count;
1063 }
1064 } else {
1065 return 0;
1066 }
1067
1068 kfree(buffer.pointer);
1069 return rc;
1070}
1071
1072static acpi_status __init tpacpi_acpi_walk_find_bcl(acpi_handle handle,
1073 u32 lvl, void *context, void **rv)
1074{
1075 char name[ACPI_PATH_SEGMENT_LENGTH];
1076 struct acpi_buffer buffer = { sizeof(name), &name };
1077
1078 if (ACPI_SUCCESS(acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer)) &&
1079 !strncmp("_BCL", name, sizeof(name) - 1)) {
1080 BUG_ON(!rv || !*rv);
1081 **(int **)rv = tpacpi_query_bcl_levels(handle);
1082 return AE_CTRL_TERMINATE;
1083 } else {
1084 return AE_OK;
1085 }
1086}
1087
1088/*
1089 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
1090 */
1091static int __init tpacpi_check_std_acpi_brightness_support(void)
1092{
1093 int status;
1094 int bcl_levels = 0;
1095 void *bcl_ptr = &bcl_levels;
1096
1097 if (!vid_handle) {
1098 TPACPI_ACPIHANDLE_INIT(vid);
1099 }
1100 if (!vid_handle)
1101 return 0;
1102
1103 /*
1104 * Search for a _BCL method, and execute it. This is safe on all
1105 * ThinkPads, and as a side-effect, _BCL will place a Lenovo Vista
1106 * BIOS in ACPI backlight control mode. We do NOT have to care
1107 * about calling the _BCL method in an enabled video device, any
1108 * will do for our purposes.
1109 */
1110
1111 status = acpi_walk_namespace(ACPI_TYPE_METHOD, vid_handle, 3,
Lin Ming22635762009-11-13 10:06:08 +08001112 tpacpi_acpi_walk_find_bcl, NULL, NULL,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03001113 &bcl_ptr);
1114
1115 if (ACPI_SUCCESS(status) && bcl_levels > 2) {
1116 tp_features.bright_acpimode = 1;
1117 return (bcl_levels - 2);
1118 }
1119
1120 return 0;
1121}
1122
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001123static void printk_deprecated_attribute(const char * const what,
1124 const char * const details)
1125{
1126 tpacpi_log_usertask("deprecated sysfs attribute");
1127 printk(TPACPI_WARN "WARNING: sysfs attribute %s is deprecated and "
1128 "will be removed. %s\n",
1129 what, details);
1130}
1131
Johannes Berg19d337d2009-06-02 13:01:37 +02001132/*************************************************************************
1133 * rfkill and radio control support helpers
1134 */
1135
1136/*
1137 * ThinkPad-ACPI firmware handling model:
1138 *
1139 * WLSW (master wireless switch) is event-driven, and is common to all
1140 * firmware-controlled radios. It cannot be controlled, just monitored,
1141 * as expected. It overrides all radio state in firmware
1142 *
1143 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1144 * (TODO: verify how WLSW interacts with the returned radio state).
1145 *
1146 * The only time there are shadow radio state changes, is when
1147 * masked-off hotkeys are used.
1148 */
1149
1150/*
1151 * Internal driver API for radio state:
1152 *
1153 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1154 * bool: true means radio blocked (off)
1155 */
1156enum tpacpi_rfkill_state {
1157 TPACPI_RFK_RADIO_OFF = 0,
1158 TPACPI_RFK_RADIO_ON
1159};
1160
1161/* rfkill switches */
1162enum tpacpi_rfk_id {
1163 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1164 TPACPI_RFK_WWAN_SW_ID,
1165 TPACPI_RFK_UWB_SW_ID,
1166 TPACPI_RFK_SW_MAX
1167};
1168
1169static const char *tpacpi_rfkill_names[] = {
1170 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1171 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1172 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1173 [TPACPI_RFK_SW_MAX] = NULL
1174};
1175
1176/* ThinkPad-ACPI rfkill subdriver */
1177struct tpacpi_rfk {
1178 struct rfkill *rfkill;
1179 enum tpacpi_rfk_id id;
1180 const struct tpacpi_rfk_ops *ops;
1181};
1182
1183struct tpacpi_rfk_ops {
1184 /* firmware interface */
1185 int (*get_status)(void);
1186 int (*set_status)(const enum tpacpi_rfkill_state);
1187};
1188
1189static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1190
1191/* Query FW and update rfkill sw state for a given rfkill switch */
1192static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1193{
1194 int status;
1195
1196 if (!tp_rfk)
1197 return -ENODEV;
1198
1199 status = (tp_rfk->ops->get_status)();
1200 if (status < 0)
1201 return status;
1202
1203 rfkill_set_sw_state(tp_rfk->rfkill,
1204 (status == TPACPI_RFK_RADIO_OFF));
1205
1206 return status;
1207}
1208
1209/* Query FW and update rfkill sw state for all rfkill switches */
1210static void tpacpi_rfk_update_swstate_all(void)
1211{
1212 unsigned int i;
1213
1214 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1215 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1216}
1217
1218/*
1219 * Sync the HW-blocking state of all rfkill switches,
1220 * do notice it causes the rfkill core to schedule uevents
1221 */
1222static void tpacpi_rfk_update_hwblock_state(bool blocked)
1223{
1224 unsigned int i;
1225 struct tpacpi_rfk *tp_rfk;
1226
1227 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1228 tp_rfk = tpacpi_rfkill_switches[i];
1229 if (tp_rfk) {
1230 if (rfkill_set_hw_state(tp_rfk->rfkill,
1231 blocked)) {
1232 /* ignore -- we track sw block */
1233 }
1234 }
1235 }
1236}
1237
1238/* Call to get the WLSW state from the firmware */
1239static int hotkey_get_wlsw(void);
1240
1241/* Call to query WLSW state and update all rfkill switches */
1242static bool tpacpi_rfk_check_hwblock_state(void)
1243{
1244 int res = hotkey_get_wlsw();
1245 int hw_blocked;
1246
1247 /* When unknown or unsupported, we have to assume it is unblocked */
1248 if (res < 0)
1249 return false;
1250
1251 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1252 tpacpi_rfk_update_hwblock_state(hw_blocked);
1253
1254 return hw_blocked;
1255}
1256
1257static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1258{
1259 struct tpacpi_rfk *tp_rfk = data;
1260 int res;
1261
1262 dbg_printk(TPACPI_DBG_RFKILL,
1263 "request to change radio state to %s\n",
1264 blocked ? "blocked" : "unblocked");
1265
1266 /* try to set radio state */
1267 res = (tp_rfk->ops->set_status)(blocked ?
1268 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1269
1270 /* and update the rfkill core with whatever the FW really did */
1271 tpacpi_rfk_update_swstate(tp_rfk);
1272
1273 return (res < 0) ? res : 0;
1274}
1275
1276static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1277 .set_block = tpacpi_rfk_hook_set_block,
1278};
1279
1280static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1281 const struct tpacpi_rfk_ops *tp_rfkops,
1282 const enum rfkill_type rfktype,
1283 const char *name,
1284 const bool set_default)
1285{
1286 struct tpacpi_rfk *atp_rfk;
1287 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001288 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001289 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001290 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001291
1292 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1293
Johannes Berg19d337d2009-06-02 13:01:37 +02001294 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1295 if (atp_rfk)
1296 atp_rfk->rfkill = rfkill_alloc(name,
1297 &tpacpi_pdev->dev,
1298 rfktype,
1299 &tpacpi_rfk_rfkill_ops,
1300 atp_rfk);
1301 if (!atp_rfk || !atp_rfk->rfkill) {
1302 printk(TPACPI_ERR
1303 "failed to allocate memory for rfkill class\n");
1304 kfree(atp_rfk);
1305 return -ENOMEM;
1306 }
1307
1308 atp_rfk->id = id;
1309 atp_rfk->ops = tp_rfkops;
1310
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001311 sw_status = (tp_rfkops->get_status)();
1312 if (sw_status < 0) {
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001313 printk(TPACPI_ERR
1314 "failed to read initial state for %s, error %d\n",
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001315 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001316 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001317 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001318 if (set_default) {
1319 /* try to keep the initial state, since we ask the
1320 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001321 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001322 }
1323 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001324 hw_state = tpacpi_rfk_check_hwblock_state();
1325 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001326
1327 res = rfkill_register(atp_rfk->rfkill);
1328 if (res < 0) {
1329 printk(TPACPI_ERR
1330 "failed to register %s rfkill switch: %d\n",
1331 name, res);
1332 rfkill_destroy(atp_rfk->rfkill);
1333 kfree(atp_rfk);
1334 return res;
1335 }
1336
1337 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001338
1339 printk(TPACPI_INFO "rfkill switch %s: radio is %sblocked\n",
1340 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001341 return 0;
1342}
1343
1344static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1345{
1346 struct tpacpi_rfk *tp_rfk;
1347
1348 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1349
1350 tp_rfk = tpacpi_rfkill_switches[id];
1351 if (tp_rfk) {
1352 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001353 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001354 tpacpi_rfkill_switches[id] = NULL;
1355 kfree(tp_rfk);
1356 }
1357}
1358
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001359static void printk_deprecated_rfkill_attribute(const char * const what)
1360{
1361 printk_deprecated_attribute(what,
1362 "Please switch to generic rfkill before year 2010");
1363}
1364
Johannes Berg19d337d2009-06-02 13:01:37 +02001365/* sysfs <radio> enable ------------------------------------------------ */
1366static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1367 struct device_attribute *attr,
1368 char *buf)
1369{
1370 int status;
1371
1372 printk_deprecated_rfkill_attribute(attr->attr.name);
1373
1374 /* This is in the ABI... */
1375 if (tpacpi_rfk_check_hwblock_state()) {
1376 status = TPACPI_RFK_RADIO_OFF;
1377 } else {
1378 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1379 if (status < 0)
1380 return status;
1381 }
1382
1383 return snprintf(buf, PAGE_SIZE, "%d\n",
1384 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1385}
1386
1387static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1388 struct device_attribute *attr,
1389 const char *buf, size_t count)
1390{
1391 unsigned long t;
1392 int res;
1393
1394 printk_deprecated_rfkill_attribute(attr->attr.name);
1395
1396 if (parse_strtoul(buf, 1, &t))
1397 return -EINVAL;
1398
1399 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1400
1401 /* This is in the ABI... */
1402 if (tpacpi_rfk_check_hwblock_state() && !!t)
1403 return -EPERM;
1404
1405 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1406 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1407 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1408
1409 return (res < 0) ? res : count;
1410}
1411
1412/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001413static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001414{
Johannes Berg19d337d2009-06-02 13:01:37 +02001415 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001416 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001417 else {
1418 int status;
1419
1420 /* This is in the ABI... */
1421 if (tpacpi_rfk_check_hwblock_state()) {
1422 status = TPACPI_RFK_RADIO_OFF;
1423 } else {
1424 status = tpacpi_rfk_update_swstate(
1425 tpacpi_rfkill_switches[id]);
1426 if (status < 0)
1427 return status;
1428 }
1429
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001430 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001431 (status == TPACPI_RFK_RADIO_ON) ?
1432 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001433 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001434 }
1435
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001436 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001437}
1438
1439static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1440{
1441 char *cmd;
1442 int status = -1;
1443 int res = 0;
1444
1445 if (id >= TPACPI_RFK_SW_MAX)
1446 return -ENODEV;
1447
1448 while ((cmd = next_cmd(&buf))) {
1449 if (strlencmp(cmd, "enable") == 0)
1450 status = TPACPI_RFK_RADIO_ON;
1451 else if (strlencmp(cmd, "disable") == 0)
1452 status = TPACPI_RFK_RADIO_OFF;
1453 else
1454 return -EINVAL;
1455 }
1456
1457 if (status != -1) {
1458 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1459 (status == TPACPI_RFK_RADIO_ON) ?
1460 "enable" : "disable",
1461 tpacpi_rfkill_names[id]);
1462 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1463 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1464 }
1465
1466 return res;
1467}
1468
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001469/*************************************************************************
1470 * thinkpad-acpi driver attributes
1471 */
1472
1473/* interface_version --------------------------------------------------- */
1474static ssize_t tpacpi_driver_interface_version_show(
1475 struct device_driver *drv,
1476 char *buf)
1477{
1478 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1479}
1480
1481static DRIVER_ATTR(interface_version, S_IRUGO,
1482 tpacpi_driver_interface_version_show, NULL);
1483
1484/* debug_level --------------------------------------------------------- */
1485static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1486 char *buf)
1487{
1488 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1489}
1490
1491static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1492 const char *buf, size_t count)
1493{
1494 unsigned long t;
1495
1496 if (parse_strtoul(buf, 0xffff, &t))
1497 return -EINVAL;
1498
1499 dbg_level = t;
1500
1501 return count;
1502}
1503
1504static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1505 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1506
1507/* version ------------------------------------------------------------- */
1508static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1509 char *buf)
1510{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001511 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1512 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001513}
1514
1515static DRIVER_ATTR(version, S_IRUGO,
1516 tpacpi_driver_version_show, NULL);
1517
1518/* --------------------------------------------------------------------- */
1519
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001520#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1521
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001522/* wlsw_emulstate ------------------------------------------------------ */
1523static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1524 char *buf)
1525{
1526 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1527}
1528
1529static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1530 const char *buf, size_t count)
1531{
1532 unsigned long t;
1533
1534 if (parse_strtoul(buf, 1, &t))
1535 return -EINVAL;
1536
Johannes Berg19d337d2009-06-02 13:01:37 +02001537 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001538 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001539 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1540 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001541
1542 return count;
1543}
1544
1545static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1546 tpacpi_driver_wlsw_emulstate_show,
1547 tpacpi_driver_wlsw_emulstate_store);
1548
1549/* bluetooth_emulstate ------------------------------------------------- */
1550static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1551 struct device_driver *drv,
1552 char *buf)
1553{
1554 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1555}
1556
1557static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1558 struct device_driver *drv,
1559 const char *buf, size_t count)
1560{
1561 unsigned long t;
1562
1563 if (parse_strtoul(buf, 1, &t))
1564 return -EINVAL;
1565
1566 tpacpi_bluetooth_emulstate = !!t;
1567
1568 return count;
1569}
1570
1571static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1572 tpacpi_driver_bluetooth_emulstate_show,
1573 tpacpi_driver_bluetooth_emulstate_store);
1574
1575/* wwan_emulstate ------------------------------------------------- */
1576static ssize_t tpacpi_driver_wwan_emulstate_show(
1577 struct device_driver *drv,
1578 char *buf)
1579{
1580 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1581}
1582
1583static ssize_t tpacpi_driver_wwan_emulstate_store(
1584 struct device_driver *drv,
1585 const char *buf, size_t count)
1586{
1587 unsigned long t;
1588
1589 if (parse_strtoul(buf, 1, &t))
1590 return -EINVAL;
1591
1592 tpacpi_wwan_emulstate = !!t;
1593
1594 return count;
1595}
1596
1597static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1598 tpacpi_driver_wwan_emulstate_show,
1599 tpacpi_driver_wwan_emulstate_store);
1600
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001601/* uwb_emulstate ------------------------------------------------- */
1602static ssize_t tpacpi_driver_uwb_emulstate_show(
1603 struct device_driver *drv,
1604 char *buf)
1605{
1606 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1607}
1608
1609static ssize_t tpacpi_driver_uwb_emulstate_store(
1610 struct device_driver *drv,
1611 const char *buf, size_t count)
1612{
1613 unsigned long t;
1614
1615 if (parse_strtoul(buf, 1, &t))
1616 return -EINVAL;
1617
1618 tpacpi_uwb_emulstate = !!t;
1619
1620 return count;
1621}
1622
1623static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1624 tpacpi_driver_uwb_emulstate_show,
1625 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001626#endif
1627
1628/* --------------------------------------------------------------------- */
1629
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001630static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001631 &driver_attr_debug_level, &driver_attr_version,
1632 &driver_attr_interface_version,
1633};
1634
1635static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1636{
1637 int i, res;
1638
1639 i = 0;
1640 res = 0;
1641 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1642 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1643 i++;
1644 }
1645
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001646#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1647 if (!res && dbg_wlswemul)
1648 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1649 if (!res && dbg_bluetoothemul)
1650 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1651 if (!res && dbg_wwanemul)
1652 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001653 if (!res && dbg_uwbemul)
1654 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001655#endif
1656
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001657 return res;
1658}
1659
1660static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1661{
1662 int i;
1663
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001664 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001665 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001666
1667#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1668 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1669 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1670 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001671 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001672#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001673}
1674
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001675/*************************************************************************
1676 * Firmware Data
1677 */
1678
1679/*
1680 * Table of recommended minimum BIOS versions
1681 *
1682 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001683 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001684 * bugs and bad ACPI behaviour on older versions
1685 *
1686 * 2. BIOS or EC fw with known bugs that trigger on Linux
1687 *
1688 * 3. BIOS with known reduced functionality in older versions
1689 *
1690 * We recommend the latest BIOS and EC version.
1691 * We only support the latest BIOS and EC fw version as a rule.
1692 *
1693 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1694 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001695 *
1696 * WARNING: we use this table also to detect that the machine is
1697 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001698 */
1699
1700#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1701 { .vendor = (__v), \
1702 .bios = TPID(__id1, __id2), \
1703 .ec = TPACPI_MATCH_ANY, \
1704 .quirks = TPACPI_MATCH_ANY << 16 \
1705 | (__bv1) << 8 | (__bv2) }
1706
1707#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001708 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001709 { .vendor = (__v), \
1710 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001711 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001712 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1713 | (__bv1) << 8 | (__bv2) }
1714
1715#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1716 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1717
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001718/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001719#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1720 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001721 __bv1, __bv2, TPID(__id1, __id2), \
1722 __ev1, __ev2), \
1723 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1724 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1725 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001726
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001727/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001728#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1729 __eid1, __eid2, __ev1, __ev2) \
1730 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001731 __bv1, __bv2, TPID(__eid1, __eid2), \
1732 __ev1, __ev2), \
1733 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1734 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1735 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001736
1737#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1738 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1739
1740#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1741 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001742 __bv1, __bv2, TPID(__id1, __id2), \
1743 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001744
1745#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1746 __eid1, __eid2, __ev1, __ev2) \
1747 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001748 __bv1, __bv2, TPID(__eid1, __eid2), \
1749 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001750
1751static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1752 /* Numeric models ------------------ */
1753 /* FW MODEL BIOS VERS */
1754 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1755 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1756 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1757 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1758 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1759 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1760 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1761 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1762 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1763
1764 /* A-series ------------------------- */
1765 /* FW MODEL BIOS VERS EC VERS */
1766 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1767 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1768 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1769 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1770 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1771 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1772 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1773 TPV_QI0('1', '3', '2', '0'), /* A22m */
1774 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1775 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1776 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1777
1778 /* G-series ------------------------- */
1779 /* FW MODEL BIOS VERS */
1780 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1781 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1782
1783 /* R-series, T-series --------------- */
1784 /* FW MODEL BIOS VERS EC VERS */
1785 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1786 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1787 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1788 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1789 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1790 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1791 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1792 T40/p, T41/p, T42/p (1) */
1793 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1794 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1795 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1796 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1797
1798 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1799 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1800 TPV_QI0('1', '6', '3', '2'), /* T22 */
1801 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1802 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1803 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1804
1805 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1806 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001807 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001808
1809 /* BIOS FW BIOS VERS EC FW EC VERS */
1810 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1811 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1812
1813 /* X-series ------------------------- */
1814 /* FW MODEL BIOS VERS EC VERS */
1815 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1816 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1817 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1818 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1819 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1820 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1821 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1822
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001823 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1824 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001825
1826 /* (0) - older versions lack DMI EC fw string and functionality */
1827 /* (1) - older versions known to lack functionality */
1828};
1829
1830#undef TPV_QL1
1831#undef TPV_QL0
1832#undef TPV_QI2
1833#undef TPV_QI1
1834#undef TPV_QI0
1835#undef TPV_Q_X
1836#undef TPV_Q
1837
1838static void __init tpacpi_check_outdated_fw(void)
1839{
1840 unsigned long fwvers;
1841 u16 ec_version, bios_version;
1842
1843 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1844 ARRAY_SIZE(tpacpi_bios_version_qtable));
1845
1846 if (!fwvers)
1847 return;
1848
1849 bios_version = fwvers & 0xffffU;
1850 ec_version = (fwvers >> 16) & 0xffffU;
1851
1852 /* note that unknown versions are set to 0x0000 and we use that */
1853 if ((bios_version > thinkpad_id.bios_release) ||
1854 (ec_version > thinkpad_id.ec_release &&
1855 ec_version != TPACPI_MATCH_ANY)) {
1856 /*
1857 * The changelogs would let us track down the exact
1858 * reason, but it is just too much of a pain to track
1859 * it. We only list BIOSes that are either really
1860 * broken, or really stable to begin with, so it is
1861 * best if the user upgrades the firmware anyway.
1862 */
1863 printk(TPACPI_WARN
1864 "WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1865 printk(TPACPI_WARN
1866 "WARNING: This firmware may be missing critical bug "
1867 "fixes and/or important features\n");
1868 }
1869}
1870
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001871static bool __init tpacpi_is_fw_known(void)
1872{
1873 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1874 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1875}
1876
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001877/****************************************************************************
1878 ****************************************************************************
1879 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001880 * Subdrivers
1881 *
1882 ****************************************************************************
1883 ****************************************************************************/
1884
1885/*************************************************************************
Henrique de Moraes Holschuh142cfc92007-04-21 11:08:26 -03001886 * thinkpad-acpi init subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001887 */
1888
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001889static int __init thinkpad_acpi_driver_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001891 printk(TPACPI_INFO "%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
1892 printk(TPACPI_INFO "%s\n", TPACPI_URL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02001894 printk(TPACPI_INFO "ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001895 (thinkpad_id.bios_version_str) ?
1896 thinkpad_id.bios_version_str : "unknown",
1897 (thinkpad_id.ec_version_str) ?
1898 thinkpad_id.ec_version_str : "unknown");
1899
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03001900 BUG_ON(!thinkpad_id.vendor);
1901
1902 if (thinkpad_id.model_str)
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001903 printk(TPACPI_INFO "%s %s, model %s\n",
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03001904 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
1905 "IBM" : ((thinkpad_id.vendor ==
1906 PCI_VENDOR_ID_LENOVO) ?
1907 "Lenovo" : "Unknown vendor"),
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03001908 thinkpad_id.model_str,
1909 (thinkpad_id.nummodel_str) ?
1910 thinkpad_id.nummodel_str : "unknown");
Henrique de Moraes Holschuh3945ac32007-02-06 19:13:44 -02001911
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001912 tpacpi_check_outdated_fw();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return 0;
1914}
1915
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001916static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001918 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1919 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001923static struct ibm_struct thinkpad_acpi_driver_data = {
1924 .name = "driver",
1925 .read = thinkpad_acpi_driver_read,
1926};
1927
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001928/*************************************************************************
1929 * Hotkey subdriver
1930 */
1931
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001932/*
1933 * ThinkPad firmware event model
1934 *
1935 * The ThinkPad firmware has two main event interfaces: normal ACPI
1936 * notifications (which follow the ACPI standard), and a private event
1937 * interface.
1938 *
1939 * The private event interface also issues events for the hotkeys. As
1940 * the driver gained features, the event handling code ended up being
1941 * built around the hotkey subdriver. This will need to be refactored
1942 * to a more formal event API eventually.
1943 *
1944 * Some "hotkeys" are actually supposed to be used as event reports,
1945 * such as "brightness has changed", "volume has changed", depending on
1946 * the ThinkPad model and how the firmware is operating.
1947 *
1948 * Unlike other classes, hotkey-class events have mask/unmask control on
1949 * non-ancient firmware. However, how it behaves changes a lot with the
1950 * firmware model and version.
1951 */
1952
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001953enum { /* hot key scan codes (derived from ACPI DSDT) */
1954 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1955 TP_ACPI_HOTKEYSCAN_FNF2,
1956 TP_ACPI_HOTKEYSCAN_FNF3,
1957 TP_ACPI_HOTKEYSCAN_FNF4,
1958 TP_ACPI_HOTKEYSCAN_FNF5,
1959 TP_ACPI_HOTKEYSCAN_FNF6,
1960 TP_ACPI_HOTKEYSCAN_FNF7,
1961 TP_ACPI_HOTKEYSCAN_FNF8,
1962 TP_ACPI_HOTKEYSCAN_FNF9,
1963 TP_ACPI_HOTKEYSCAN_FNF10,
1964 TP_ACPI_HOTKEYSCAN_FNF11,
1965 TP_ACPI_HOTKEYSCAN_FNF12,
1966 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1967 TP_ACPI_HOTKEYSCAN_FNINSERT,
1968 TP_ACPI_HOTKEYSCAN_FNDELETE,
1969 TP_ACPI_HOTKEYSCAN_FNHOME,
1970 TP_ACPI_HOTKEYSCAN_FNEND,
1971 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1972 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1973 TP_ACPI_HOTKEYSCAN_FNSPACE,
1974 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1975 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1976 TP_ACPI_HOTKEYSCAN_MUTE,
1977 TP_ACPI_HOTKEYSCAN_THINKPAD,
1978};
1979
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001980enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001981 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1982 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1983};
1984
1985enum { /* Positions of some of the keys in hotkey masks */
1986 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1987 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1988 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1989 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1990 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1991 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1992 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1993 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1994 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1995 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1996 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1997};
1998
1999enum { /* NVRAM to ACPI HKEY group map */
2000 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
2001 TP_ACPI_HKEY_ZOOM_MASK |
2002 TP_ACPI_HKEY_DISPSWTCH_MASK |
2003 TP_ACPI_HKEY_HIBERNATE_MASK,
2004 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
2005 TP_ACPI_HKEY_BRGHTDWN_MASK,
2006 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
2007 TP_ACPI_HKEY_VOLDWN_MASK |
2008 TP_ACPI_HKEY_MUTE_MASK,
2009};
2010
2011#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2012struct tp_nvram_state {
2013 u16 thinkpad_toggle:1;
2014 u16 zoom_toggle:1;
2015 u16 display_toggle:1;
2016 u16 thinklight_toggle:1;
2017 u16 hibernate_toggle:1;
2018 u16 displayexp_toggle:1;
2019 u16 display_state:1;
2020 u16 brightness_toggle:1;
2021 u16 volume_toggle:1;
2022 u16 mute:1;
2023
2024 u8 brightness_level;
2025 u8 volume_level;
2026};
2027
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002028/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002029static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002030
2031/* Acquired while the poller kthread is running, use to sync start/stop */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002032static struct mutex hotkey_thread_mutex;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002033
2034/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002035 * Acquire mutex to write poller control variables as an
2036 * atomic block.
2037 *
2038 * Increment hotkey_config_change when changing them if you
2039 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002040 *
2041 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2042 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002043static struct mutex hotkey_thread_data_mutex;
2044static unsigned int hotkey_config_change;
2045
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002046/*
2047 * hotkey poller control variables
2048 *
2049 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002050 *
2051 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
2052 * should be used only when the changes need to be taken as
2053 * a block, OR when one needs to force the kthread to forget
2054 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002055 */
2056static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
2057static unsigned int hotkey_poll_freq = 10; /* Hz */
2058
2059#define HOTKEY_CONFIG_CRITICAL_START \
2060 do { \
2061 mutex_lock(&hotkey_thread_data_mutex); \
2062 hotkey_config_change++; \
2063 } while (0);
2064#define HOTKEY_CONFIG_CRITICAL_END \
2065 mutex_unlock(&hotkey_thread_data_mutex);
2066
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002067#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2068
2069#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002070#define HOTKEY_CONFIG_CRITICAL_START
2071#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002072
2073#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2074
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002075static struct mutex hotkey_mutex;
2076
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002077static enum { /* Reasons for waking up */
2078 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2079 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2080 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2081} hotkey_wakeup_reason;
2082
2083static int hotkey_autosleep_ack;
2084
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002085static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2086static u32 hotkey_all_mask; /* all events supported in fw */
2087static u32 hotkey_reserved_mask; /* events better left disabled */
2088static u32 hotkey_driver_mask; /* events needed by the driver */
2089static u32 hotkey_user_mask; /* events visible to userspace */
2090static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002091
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02002092static unsigned int hotkey_report_mode;
2093
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002094static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002095
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002096static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002097
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002098static void tpacpi_driver_event(const unsigned int hkey_event);
2099static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002100static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002101
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002102/* HKEY.MHKG() return bits */
2103#define TP_HOTKEY_TABLET_MASK (1 << 3)
2104
Johannes Berg19d337d2009-06-02 13:01:37 +02002105static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002106{
Johannes Berg19d337d2009-06-02 13:01:37 +02002107 int status;
2108
2109 if (!tp_features.hotkey_wlsw)
2110 return -ENODEV;
2111
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002112#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002113 if (dbg_wlswemul)
2114 return (tpacpi_wlsw_emulstate) ?
2115 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002116#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002117
2118 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002119 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002120
2121 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002122}
2123
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002124static int hotkey_get_tablet_mode(int *status)
2125{
2126 int s;
2127
2128 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2129 return -EIO;
2130
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002131 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2132 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002133}
2134
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002135/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002136 * Reads current event mask from firmware, and updates
2137 * hotkey_acpi_mask accordingly. Also resets any bits
2138 * from hotkey_user_mask that are unavailable to be
2139 * delivered (shadow requirement of the userspace ABI).
2140 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002141 * Call with hotkey_mutex held
2142 */
2143static int hotkey_mask_get(void)
2144{
2145 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002146 u32 m = 0;
2147
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002148 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002149 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002150
2151 hotkey_acpi_mask = m;
2152 } else {
2153 /* no mask support doesn't mean no event support... */
2154 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002155 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002156
2157 /* sync userspace-visible mask */
2158 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002159
2160 return 0;
2161}
2162
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002163void static hotkey_mask_warn_incomplete_mask(void)
2164{
2165 /* log only what the user can fix... */
2166 const u32 wantedmask = hotkey_driver_mask &
2167 ~(hotkey_acpi_mask | hotkey_source_mask) &
2168 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2169
2170 if (wantedmask)
2171 printk(TPACPI_NOTICE
2172 "required events 0x%08x not enabled!\n",
2173 wantedmask);
2174}
2175
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002176/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002177 * Set the firmware mask when supported
2178 *
2179 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2180 *
2181 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2182 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002183 * Call with hotkey_mutex held
2184 */
2185static int hotkey_mask_set(u32 mask)
2186{
2187 int i;
2188 int rc = 0;
2189
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002190 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002191
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002192 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002193 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002194 if (!acpi_evalf(hkey_handle,
2195 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002196 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002197 rc = -EIO;
2198 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002199 }
2200 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002201 }
2202
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002203 /*
2204 * We *must* make an inconditional call to hotkey_mask_get to
2205 * refresh hotkey_acpi_mask and update hotkey_user_mask
2206 *
2207 * Take the opportunity to also log when we cannot _enable_
2208 * a given event.
2209 */
2210 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
2211 printk(TPACPI_NOTICE
2212 "asked for hotkey mask 0x%08x, but "
2213 "firmware forced it to 0x%08x\n",
2214 fwmask, hotkey_acpi_mask);
2215 }
2216
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002217 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2218 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002219
2220 return rc;
2221}
2222
2223/*
2224 * Sets hotkey_user_mask and tries to set the firmware mask
2225 *
2226 * Call with hotkey_mutex held
2227 */
2228static int hotkey_user_mask_set(const u32 mask)
2229{
2230 int rc;
2231
2232 /* Give people a chance to notice they are doing something that
2233 * is bound to go boom on their users sooner or later */
2234 if (!tp_warned.hotkey_mask_ff &&
2235 (mask == 0xffff || mask == 0xffffff ||
2236 mask == 0xffffffff)) {
2237 tp_warned.hotkey_mask_ff = 1;
2238 printk(TPACPI_NOTICE
2239 "setting the hotkey mask to 0x%08x is likely "
2240 "not the best way to go about it\n", mask);
2241 printk(TPACPI_NOTICE
2242 "please consider using the driver defaults, "
2243 "and refer to up-to-date thinkpad-acpi "
2244 "documentation\n");
2245 }
2246
2247 /* Try to enable what the user asked for, plus whatever we need.
2248 * this syncs everything but won't enable bits in hotkey_user_mask */
2249 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2250
2251 /* Enable the available bits in hotkey_user_mask */
2252 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2253
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002254 return rc;
2255}
2256
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002257/*
2258 * Sets the driver hotkey mask.
2259 *
2260 * Can be called even if the hotkey subdriver is inactive
2261 */
2262static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2263{
2264 int rc;
2265
2266 /* Do the right thing if hotkey_init has not been called yet */
2267 if (!tp_features.hotkey) {
2268 hotkey_driver_mask = mask;
2269 return 0;
2270 }
2271
2272 mutex_lock(&hotkey_mutex);
2273
2274 HOTKEY_CONFIG_CRITICAL_START
2275 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002276#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002277 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002278#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002279 HOTKEY_CONFIG_CRITICAL_END
2280
2281 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2282 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002283 hotkey_poll_setup(true);
2284
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002285 mutex_unlock(&hotkey_mutex);
2286
2287 return rc;
2288}
2289
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002290static int hotkey_status_get(int *status)
2291{
2292 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2293 return -EIO;
2294
2295 return 0;
2296}
2297
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002298static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002299{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002300 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002301 return -EIO;
2302
2303 return 0;
2304}
2305
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002306static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002307{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002308 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002309
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002310 if (tp_features.hotkey_tablet &&
2311 !hotkey_get_tablet_mode(&state)) {
2312 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002313
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002314 input_report_switch(tpacpi_inputdev,
2315 SW_TABLET_MODE, !!state);
2316 input_sync(tpacpi_inputdev);
2317
2318 mutex_unlock(&tpacpi_inputdev_send_mutex);
2319 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002320}
2321
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002322/* Do NOT call without validating scancode first */
2323static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002324{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002325 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002326
2327 if (keycode != KEY_RESERVED) {
2328 mutex_lock(&tpacpi_inputdev_send_mutex);
2329
2330 input_report_key(tpacpi_inputdev, keycode, 1);
2331 if (keycode == KEY_UNKNOWN)
2332 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2333 scancode);
2334 input_sync(tpacpi_inputdev);
2335
2336 input_report_key(tpacpi_inputdev, keycode, 0);
2337 if (keycode == KEY_UNKNOWN)
2338 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN,
2339 scancode);
2340 input_sync(tpacpi_inputdev);
2341
2342 mutex_unlock(&tpacpi_inputdev_send_mutex);
2343 }
2344}
2345
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002346/* Do NOT call without validating scancode first */
2347static void tpacpi_input_send_key_masked(const unsigned int scancode)
2348{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002349 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002350 if (hotkey_user_mask & (1 << scancode))
2351 tpacpi_input_send_key(scancode);
2352}
2353
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002354#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2355static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2356
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002357/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002358static void tpacpi_hotkey_send_key(unsigned int scancode)
2359{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002360 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002361 if (hotkey_report_mode < 2) {
2362 acpi_bus_generate_proc_event(ibm_hotkey_acpidriver.device,
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03002363 0x80, TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002364 }
2365}
2366
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002367static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002368{
2369 u8 d;
2370
2371 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2372 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2373 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2374 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2375 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2376 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2377 }
2378 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2379 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2380 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2381 }
2382 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2383 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2384 n->displayexp_toggle =
2385 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2386 }
2387 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2388 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2389 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2390 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2391 n->brightness_toggle =
2392 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2393 }
2394 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2395 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2396 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2397 >> TP_NVRAM_POS_LEVEL_VOLUME;
2398 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2399 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2400 }
2401}
2402
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002403static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2404 struct tp_nvram_state *newn,
2405 const u32 event_mask)
2406{
2407
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002408#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002409 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002410 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002411 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002412 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002413 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002414
2415#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002416 do { \
2417 if (event_mask & (1 << __scancode)) \
2418 tpacpi_hotkey_send_key(__scancode); \
2419 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002420
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002421 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2422 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2423 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2424 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2425
2426 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2427
2428 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2429
2430 /* handle volume */
2431 if (oldn->volume_toggle != newn->volume_toggle) {
2432 if (oldn->mute != newn->mute) {
2433 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2434 }
2435 if (oldn->volume_level > newn->volume_level) {
2436 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2437 } else if (oldn->volume_level < newn->volume_level) {
2438 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2439 } else if (oldn->mute == newn->mute) {
2440 /* repeated key presses that didn't change state */
2441 if (newn->mute) {
2442 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2443 } else if (newn->volume_level != 0) {
2444 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2445 } else {
2446 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2447 }
2448 }
2449 }
2450
2451 /* handle brightness */
2452 if (oldn->brightness_toggle != newn->brightness_toggle) {
2453 if (oldn->brightness_level < newn->brightness_level) {
2454 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2455 } else if (oldn->brightness_level > newn->brightness_level) {
2456 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2457 } else {
2458 /* repeated key presses that didn't change state */
2459 if (newn->brightness_level != 0) {
2460 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2461 } else {
2462 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2463 }
2464 }
2465 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002466
2467#undef TPACPI_COMPARE_KEY
2468#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002469}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002470
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002471/*
2472 * Polling driver
2473 *
2474 * We track all events in hotkey_source_mask all the time, since
2475 * most of them are edge-based. We only issue those requested by
2476 * hotkey_user_mask or hotkey_driver_mask, though.
2477 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002478static int hotkey_kthread(void *data)
2479{
2480 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002481 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002482 unsigned int si, so;
2483 unsigned long t;
2484 unsigned int change_detector, must_reset;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002485 unsigned int poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002486
2487 mutex_lock(&hotkey_thread_mutex);
2488
2489 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2490 goto exit;
2491
2492 set_freezable();
2493
2494 so = 0;
2495 si = 1;
2496 t = 0;
2497
2498 /* Initial state for compares */
2499 mutex_lock(&hotkey_thread_data_mutex);
2500 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002501 poll_mask = hotkey_source_mask;
2502 event_mask = hotkey_source_mask &
2503 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002504 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002505 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002506 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002507
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002508 while (!kthread_should_stop()) {
2509 if (t == 0) {
2510 if (likely(poll_freq))
2511 t = 1000/poll_freq;
2512 else
2513 t = 100; /* should never happen... */
2514 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002515 t = msleep_interruptible(t);
2516 if (unlikely(kthread_should_stop()))
2517 break;
2518 must_reset = try_to_freeze();
2519 if (t > 0 && !must_reset)
2520 continue;
2521
2522 mutex_lock(&hotkey_thread_data_mutex);
2523 if (must_reset || hotkey_config_change != change_detector) {
2524 /* forget old state on thaw or config change */
2525 si = so;
2526 t = 0;
2527 change_detector = hotkey_config_change;
2528 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002529 poll_mask = hotkey_source_mask;
2530 event_mask = hotkey_source_mask &
2531 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002532 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002533 mutex_unlock(&hotkey_thread_data_mutex);
2534
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002535 if (likely(poll_mask)) {
2536 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002537 if (likely(si != so)) {
2538 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002539 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002540 }
2541 }
2542
2543 so = si;
2544 si ^= 1;
2545 }
2546
2547exit:
2548 mutex_unlock(&hotkey_thread_mutex);
2549 return 0;
2550}
2551
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002552/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002553static void hotkey_poll_stop_sync(void)
2554{
2555 if (tpacpi_hotkey_task) {
2556 if (frozen(tpacpi_hotkey_task) ||
2557 freezing(tpacpi_hotkey_task))
2558 thaw_process(tpacpi_hotkey_task);
2559
2560 kthread_stop(tpacpi_hotkey_task);
2561 tpacpi_hotkey_task = NULL;
2562 mutex_lock(&hotkey_thread_mutex);
2563 /* at this point, the thread did exit */
2564 mutex_unlock(&hotkey_thread_mutex);
2565 }
2566}
2567
2568/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002569static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002570{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002571 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2572 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002573
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002574 if (hotkey_poll_freq > 0 &&
2575 (poll_driver_mask ||
2576 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002577 if (!tpacpi_hotkey_task) {
2578 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002579 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002580 if (IS_ERR(tpacpi_hotkey_task)) {
2581 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002582 printk(TPACPI_ERR
2583 "could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002584 "for hotkey polling\n");
2585 }
2586 }
2587 } else {
2588 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002589 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002590 hotkey_poll_freq == 0) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002591 printk(TPACPI_NOTICE
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002592 "hot keys 0x%08x and/or events 0x%08x "
2593 "require polling, which is currently "
2594 "disabled\n",
2595 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002596 }
2597 }
2598}
2599
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002600static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002601{
2602 mutex_lock(&hotkey_mutex);
2603 hotkey_poll_setup(may_warn);
2604 mutex_unlock(&hotkey_mutex);
2605}
2606
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002607/* call with hotkey_mutex held */
2608static void hotkey_poll_set_freq(unsigned int freq)
2609{
2610 if (!freq)
2611 hotkey_poll_stop_sync();
2612
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002613 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002614}
2615
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002616#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2617
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002618static void hotkey_poll_setup(const bool __unused)
2619{
2620}
2621
2622static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002623{
2624}
2625
2626#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2627
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002628static int hotkey_inputdev_open(struct input_dev *dev)
2629{
2630 switch (tpacpi_lifecycle) {
2631 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002632 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002633 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002634 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002635 case TPACPI_LIFE_EXITING:
2636 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002637 }
2638
2639 /* Should only happen if tpacpi_lifecycle is corrupt */
2640 BUG();
2641 return -EBUSY;
2642}
2643
2644static void hotkey_inputdev_close(struct input_dev *dev)
2645{
2646 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002647 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002648 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002649 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002650}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002651
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002652/* sysfs hotkey enable ------------------------------------------------- */
2653static ssize_t hotkey_enable_show(struct device *dev,
2654 struct device_attribute *attr,
2655 char *buf)
2656{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002657 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002658
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002659 printk_deprecated_attribute("hotkey_enable",
2660 "Hotkey reporting is always enabled");
2661
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002662 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002663 if (res)
2664 return res;
2665
2666 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2667}
2668
2669static ssize_t hotkey_enable_store(struct device *dev,
2670 struct device_attribute *attr,
2671 const char *buf, size_t count)
2672{
2673 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002674
2675 printk_deprecated_attribute("hotkey_enable",
2676 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002677
2678 if (parse_strtoul(buf, 1, &t))
2679 return -EINVAL;
2680
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002681 if (t == 0)
2682 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002683
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002684 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002685}
2686
2687static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002688 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002689 hotkey_enable_show, hotkey_enable_store);
2690
2691/* sysfs hotkey mask --------------------------------------------------- */
2692static ssize_t hotkey_mask_show(struct device *dev,
2693 struct device_attribute *attr,
2694 char *buf)
2695{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002696 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002697}
2698
2699static ssize_t hotkey_mask_store(struct device *dev,
2700 struct device_attribute *attr,
2701 const char *buf, size_t count)
2702{
2703 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002704 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002705
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002706 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002707 return -EINVAL;
2708
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002709 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002710 return -ERESTARTSYS;
2711
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002712 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002713
2714#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002715 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002716#endif
2717
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002718 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002719
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002720 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2721
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002722 return (res) ? res : count;
2723}
2724
2725static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002726 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002727 hotkey_mask_show, hotkey_mask_store);
2728
2729/* sysfs hotkey bios_enabled ------------------------------------------- */
2730static ssize_t hotkey_bios_enabled_show(struct device *dev,
2731 struct device_attribute *attr,
2732 char *buf)
2733{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002734 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002735}
2736
2737static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002738 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002739
2740/* sysfs hotkey bios_mask ---------------------------------------------- */
2741static ssize_t hotkey_bios_mask_show(struct device *dev,
2742 struct device_attribute *attr,
2743 char *buf)
2744{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002745 printk_deprecated_attribute("hotkey_bios_mask",
2746 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002747 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002748}
2749
2750static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002751 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002752
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002753/* sysfs hotkey all_mask ----------------------------------------------- */
2754static ssize_t hotkey_all_mask_show(struct device *dev,
2755 struct device_attribute *attr,
2756 char *buf)
2757{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002758 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2759 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002760}
2761
2762static struct device_attribute dev_attr_hotkey_all_mask =
2763 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2764
2765/* sysfs hotkey recommended_mask --------------------------------------- */
2766static ssize_t hotkey_recommended_mask_show(struct device *dev,
2767 struct device_attribute *attr,
2768 char *buf)
2769{
2770 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002771 (hotkey_all_mask | hotkey_source_mask)
2772 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002773}
2774
2775static struct device_attribute dev_attr_hotkey_recommended_mask =
2776 __ATTR(hotkey_recommended_mask, S_IRUGO,
2777 hotkey_recommended_mask_show, NULL);
2778
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002779#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2780
2781/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2782static ssize_t hotkey_source_mask_show(struct device *dev,
2783 struct device_attribute *attr,
2784 char *buf)
2785{
2786 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2787}
2788
2789static ssize_t hotkey_source_mask_store(struct device *dev,
2790 struct device_attribute *attr,
2791 const char *buf, size_t count)
2792{
2793 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002794 u32 r_ev;
2795 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002796
2797 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2798 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2799 return -EINVAL;
2800
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002801 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002802 return -ERESTARTSYS;
2803
2804 HOTKEY_CONFIG_CRITICAL_START
2805 hotkey_source_mask = t;
2806 HOTKEY_CONFIG_CRITICAL_END
2807
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002808 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2809 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002810 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002811
2812 /* check if events needed by the driver got disabled */
2813 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2814 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002815
2816 mutex_unlock(&hotkey_mutex);
2817
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002818 if (rc < 0)
2819 printk(TPACPI_ERR "hotkey_source_mask: failed to update the"
2820 "firmware event mask!\n");
2821
2822 if (r_ev)
2823 printk(TPACPI_NOTICE "hotkey_source_mask: "
2824 "some important events were disabled: "
2825 "0x%04x\n", r_ev);
2826
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002827 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2828
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002829 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002830}
2831
2832static struct device_attribute dev_attr_hotkey_source_mask =
2833 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2834 hotkey_source_mask_show, hotkey_source_mask_store);
2835
2836/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2837static ssize_t hotkey_poll_freq_show(struct device *dev,
2838 struct device_attribute *attr,
2839 char *buf)
2840{
2841 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2842}
2843
2844static ssize_t hotkey_poll_freq_store(struct device *dev,
2845 struct device_attribute *attr,
2846 const char *buf, size_t count)
2847{
2848 unsigned long t;
2849
2850 if (parse_strtoul(buf, 25, &t))
2851 return -EINVAL;
2852
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002853 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002854 return -ERESTARTSYS;
2855
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002856 hotkey_poll_set_freq(t);
2857 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002858
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002859 mutex_unlock(&hotkey_mutex);
2860
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002861 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2862
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002863 return count;
2864}
2865
2866static struct device_attribute dev_attr_hotkey_poll_freq =
2867 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2868 hotkey_poll_freq_show, hotkey_poll_freq_store);
2869
2870#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2871
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002872/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002873static ssize_t hotkey_radio_sw_show(struct device *dev,
2874 struct device_attribute *attr,
2875 char *buf)
2876{
Johannes Berg19d337d2009-06-02 13:01:37 +02002877 int res;
2878 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002879 if (res < 0)
2880 return res;
2881
Johannes Berg19d337d2009-06-02 13:01:37 +02002882 /* Opportunistic update */
2883 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2884
2885 return snprintf(buf, PAGE_SIZE, "%d\n",
2886 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002887}
2888
2889static struct device_attribute dev_attr_hotkey_radio_sw =
2890 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2891
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002892static void hotkey_radio_sw_notify_change(void)
2893{
2894 if (tp_features.hotkey_wlsw)
2895 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2896 "hotkey_radio_sw");
2897}
2898
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002899/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2900static ssize_t hotkey_tablet_mode_show(struct device *dev,
2901 struct device_attribute *attr,
2902 char *buf)
2903{
2904 int res, s;
2905 res = hotkey_get_tablet_mode(&s);
2906 if (res < 0)
2907 return res;
2908
2909 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2910}
2911
2912static struct device_attribute dev_attr_hotkey_tablet_mode =
2913 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2914
2915static void hotkey_tablet_mode_notify_change(void)
2916{
2917 if (tp_features.hotkey_tablet)
2918 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2919 "hotkey_tablet_mode");
2920}
2921
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002922/* sysfs hotkey report_mode -------------------------------------------- */
2923static ssize_t hotkey_report_mode_show(struct device *dev,
2924 struct device_attribute *attr,
2925 char *buf)
2926{
2927 return snprintf(buf, PAGE_SIZE, "%d\n",
2928 (hotkey_report_mode != 0) ? hotkey_report_mode : 1);
2929}
2930
2931static struct device_attribute dev_attr_hotkey_report_mode =
2932 __ATTR(hotkey_report_mode, S_IRUGO, hotkey_report_mode_show, NULL);
2933
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002934/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002935static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2936 struct device_attribute *attr,
2937 char *buf)
2938{
2939 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2940}
2941
2942static struct device_attribute dev_attr_hotkey_wakeup_reason =
2943 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2944
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002945static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002946{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002947 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2948 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002949}
2950
2951/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002952static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2953 struct device_attribute *attr,
2954 char *buf)
2955{
2956 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2957}
2958
2959static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2960 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2961 hotkey_wakeup_hotunplug_complete_show, NULL);
2962
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002963static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002964{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002965 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2966 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002967}
2968
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002969/* --------------------------------------------------------------------- */
2970
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002971static struct attribute *hotkey_attributes[] __initdata = {
2972 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002973 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002974 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002975 &dev_attr_hotkey_report_mode.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002976 &dev_attr_hotkey_wakeup_reason.attr,
2977 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002978 &dev_attr_hotkey_mask.attr,
2979 &dev_attr_hotkey_all_mask.attr,
2980 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002981#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002982 &dev_attr_hotkey_source_mask.attr,
2983 &dev_attr_hotkey_poll_freq.attr,
2984#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002985};
2986
Johannes Berg19d337d2009-06-02 13:01:37 +02002987/*
2988 * Sync both the hw and sw blocking state of all switches
2989 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002990static void tpacpi_send_radiosw_update(void)
2991{
2992 int wlsw;
2993
Johannes Berg19d337d2009-06-02 13:01:37 +02002994 /*
2995 * We must sync all rfkill controllers *before* issuing any
2996 * rfkill input events, or we will race the rfkill core input
2997 * handler.
2998 *
2999 * tpacpi_inputdev_send_mutex works as a syncronization point
3000 * for the above.
3001 *
3002 * We optimize to avoid numerous calls to hotkey_get_wlsw.
3003 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003004
Johannes Berg19d337d2009-06-02 13:01:37 +02003005 wlsw = hotkey_get_wlsw();
3006
3007 /* Sync hw blocking state first if it is hw-blocked */
3008 if (wlsw == TPACPI_RFK_RADIO_OFF)
3009 tpacpi_rfk_update_hwblock_state(true);
3010
3011 /* Sync sw blocking state */
3012 tpacpi_rfk_update_swstate_all();
3013
3014 /* Sync hw blocking state last if it is hw-unblocked */
3015 if (wlsw == TPACPI_RFK_RADIO_ON)
3016 tpacpi_rfk_update_hwblock_state(false);
3017
3018 /* Issue rfkill input event for WLSW switch */
3019 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003020 mutex_lock(&tpacpi_inputdev_send_mutex);
3021
3022 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02003023 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003024 input_sync(tpacpi_inputdev);
3025
3026 mutex_unlock(&tpacpi_inputdev_send_mutex);
3027 }
Johannes Berg19d337d2009-06-02 13:01:37 +02003028
3029 /*
3030 * this can be unconditional, as we will poll state again
3031 * if userspace uses the notify to read data
3032 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003033 hotkey_radio_sw_notify_change();
3034}
3035
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003036static void hotkey_exit(void)
3037{
3038#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003039 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003040 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003041 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003042#endif
3043
3044 if (hotkey_dev_attributes)
3045 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3046
3047 kfree(hotkey_keycode_map);
3048
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003049 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003050 "restoring original HKEY status and mask\n");
3051 /* yes, there is a bitwise or below, we want the
3052 * functions to be called even if one of them fail */
3053 if (((tp_features.hotkey_mask &&
3054 hotkey_mask_set(hotkey_orig_mask)) |
3055 hotkey_status_set(false)) != 0)
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003056 printk(TPACPI_ERR
3057 "failed to restore hot key mask "
3058 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003059}
3060
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003061static void __init hotkey_unmap(const unsigned int scancode)
3062{
3063 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3064 clear_bit(hotkey_keycode_map[scancode],
3065 tpacpi_inputdev->keybit);
3066 hotkey_keycode_map[scancode] = KEY_RESERVED;
3067 }
3068}
3069
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003070/*
3071 * HKEY quirks:
3072 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3073 */
3074
3075#define TPACPI_HK_Q_INIMASK 0x0001
3076
3077static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3078 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3079 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3080 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3081 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3082 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3083 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3084 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3085 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3086 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3087 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3088 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3089 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3090 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3091 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3092 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3093 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3094 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3095 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3096 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3097};
3098
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003099static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003100{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003101 /* Requirements for changing the default keymaps:
3102 *
3103 * 1. Many of the keys are mapped to KEY_RESERVED for very
3104 * good reasons. Do not change them unless you have deep
3105 * knowledge on the IBM and Lenovo ThinkPad firmware for
3106 * the various ThinkPad models. The driver behaves
3107 * differently for KEY_RESERVED: such keys have their
3108 * hot key mask *unset* in mask_recommended, and also
3109 * in the initial hot key mask programmed into the
3110 * firmware at driver load time, which means the firm-
3111 * ware may react very differently if you change them to
3112 * something else;
3113 *
3114 * 2. You must be subscribed to the linux-thinkpad and
3115 * ibm-acpi-devel mailing lists, and you should read the
3116 * list archives since 2007 if you want to change the
3117 * keymaps. This requirement exists so that you will
3118 * know the past history of problems with the thinkpad-
3119 * acpi driver keymaps, and also that you will be
3120 * listening to any bug reports;
3121 *
3122 * 3. Do not send thinkpad-acpi specific patches directly to
3123 * for merging, *ever*. Send them to the linux-acpi
3124 * mailinglist for comments. Merging is to be done only
3125 * through acpi-test and the ACPI maintainer.
3126 *
3127 * If the above is too much to ask, don't change the keymap.
3128 * Ask the thinkpad-acpi maintainer to do it, instead.
3129 */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003130 static u16 ibm_keycode_map[] __initdata = {
3131 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3132 KEY_FN_F1, KEY_FN_F2, KEY_COFFEE, KEY_SLEEP,
3133 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3134 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003135
3136 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003137 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3138 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3139 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003140
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003141 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003142 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003143 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003144
3145 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003146 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003147
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003148 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3149 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003150
3151 /* Volume: firmware always react to it and reprograms
3152 * the built-in *extra* mixer. Never map it to control
3153 * another mixer by default. */
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 static u16 lenovo_keycode_map[] __initdata = {
3165 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3166 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
3167 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3168 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003169
3170 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003171 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3172 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3173 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003174
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003175 /* These should be enabled --only-- when ACPI video
3176 * is disabled (i.e. in "vendor" mode), and are handled
3177 * in a special way by the init code */
3178 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3179 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003180
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003181 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003182
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003183 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3184 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003185
3186 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3187 * react to it and reprograms the built-in *extra* mixer.
3188 * Never map it to control another mixer by default.
3189 *
3190 * T60?, T61, R60?, R61: firmware and EC tries to send
3191 * these over the regular keyboard, so these are no-ops,
3192 * but there are still weird bugs re. MUTE, so do not
3193 * change unless you get test reports from all Lenovo
3194 * models. May cause the BIOS to interfere with the
3195 * HDA mixer.
3196 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003197 KEY_RESERVED, /* 0x14: VOLUME UP */
3198 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3199 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003200
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003201 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003202
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003203 /* (assignments unknown, please report if found) */
3204 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3205 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3206 };
3207
3208#define TPACPI_HOTKEY_MAP_LEN ARRAY_SIZE(ibm_keycode_map)
3209#define TPACPI_HOTKEY_MAP_SIZE sizeof(ibm_keycode_map)
3210#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(ibm_keycode_map[0])
3211
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003212 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003213 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003214 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003215 bool radiosw_state = false;
3216 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003217
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003218 unsigned long quirks;
3219
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003220 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3221 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003222
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003223 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003224 BUG_ON(tpacpi_inputdev->open != NULL ||
3225 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003226
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003227 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003228 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003229
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003230#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
3231 mutex_init(&hotkey_thread_mutex);
3232 mutex_init(&hotkey_thread_data_mutex);
3233#endif
3234
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003235 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003236 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003237
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003238 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3239 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003240 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003241
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003242 if (!tp_features.hotkey)
3243 return 1;
3244
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003245 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3246 ARRAY_SIZE(tpacpi_hotkey_qtable));
3247
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003248 tpacpi_disable_brightness_delay();
3249
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003250 /* MUST have enough space for all attributes to be added to
3251 * hotkey_dev_attributes */
3252 hotkey_dev_attributes = create_attr_set(
3253 ARRAY_SIZE(hotkey_attributes) + 2,
3254 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003255 if (!hotkey_dev_attributes)
3256 return -ENOMEM;
3257 res = add_many_to_attr_set(hotkey_dev_attributes,
3258 hotkey_attributes,
3259 ARRAY_SIZE(hotkey_attributes));
3260 if (res)
3261 goto err_exit;
3262
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003263 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003264 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3265 for HKEY interface version 0x100 */
3266 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3267 if ((hkeyv >> 8) != 1) {
3268 printk(TPACPI_ERR "unknown version of the "
3269 "HKEY interface: 0x%x\n", hkeyv);
3270 printk(TPACPI_ERR "please report this to %s\n",
3271 TPACPI_MAIL);
3272 } else {
3273 /*
3274 * MHKV 0x100 in A31, R40, R40e,
3275 * T4x, X31, and later
3276 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003277 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3278 "firmware HKEY interface version: 0x%x\n",
3279 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003280
3281 /* Paranoia check AND init hotkey_all_mask */
3282 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3283 "MHKA", "qd")) {
3284 printk(TPACPI_ERR
3285 "missing MHKA handler, "
3286 "please report this to %s\n",
3287 TPACPI_MAIL);
3288 /* Fallback: pre-init for FN+F3,F4,F12 */
3289 hotkey_all_mask = 0x080cU;
3290 } else {
3291 tp_features.hotkey_mask = 1;
3292 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003293 }
3294 }
3295
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003296 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3297 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003298 str_supported(tp_features.hotkey_mask));
3299
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003300 /* Init hotkey_all_mask if not initialized yet */
3301 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3302 (quirks & TPACPI_HK_Q_INIMASK))
3303 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003304
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003305 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003306 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003307 /* hotkey_source_mask *must* be zero for
3308 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003309 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003310 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003311 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003312
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003313 hotkey_orig_mask = hotkey_acpi_mask;
3314 } else {
3315 hotkey_orig_mask = hotkey_all_mask;
3316 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003317 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003318
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003319#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3320 if (dbg_wlswemul) {
3321 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003322 radiosw_state = !!tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003323 printk(TPACPI_INFO
3324 "radio switch emulation enabled\n");
3325 } else
3326#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003327 /* Not all thinkpads have a hardware radio switch */
3328 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3329 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003330 radiosw_state = !!status;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003331 printk(TPACPI_INFO
3332 "radio switch found; radios are %s\n",
3333 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003334 }
3335 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003336 res = add_to_attr_set(hotkey_dev_attributes,
3337 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003338
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003339 /* For X41t, X60t, X61t Tablets... */
3340 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3341 tp_features.hotkey_tablet = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003342 tabletsw_state = !!(status & TP_HOTKEY_TABLET_MASK);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003343 printk(TPACPI_INFO
3344 "possible tablet mode switch found; "
3345 "ThinkPad in %s mode\n",
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003346 (tabletsw_state) ? "tablet" : "laptop");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003347 res = add_to_attr_set(hotkey_dev_attributes,
3348 &dev_attr_hotkey_tablet_mode.attr);
3349 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003350
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003351 if (!res)
3352 res = register_attr_set_with_sysfs(
3353 hotkey_dev_attributes,
3354 &tpacpi_pdev->dev.kobj);
3355 if (res)
3356 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003357
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003358 /* Set up key map */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003359
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003360 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3361 GFP_KERNEL);
3362 if (!hotkey_keycode_map) {
3363 printk(TPACPI_ERR
3364 "failed to allocate memory for key map\n");
3365 res = -ENOMEM;
3366 goto err_exit;
3367 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003368
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03003369 if (tpacpi_is_lenovo()) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003370 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003371 "using Lenovo default hot key map\n");
3372 memcpy(hotkey_keycode_map, &lenovo_keycode_map,
3373 TPACPI_HOTKEY_MAP_SIZE);
3374 } else {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003375 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003376 "using IBM default hot key map\n");
3377 memcpy(hotkey_keycode_map, &ibm_keycode_map,
3378 TPACPI_HOTKEY_MAP_SIZE);
3379 }
3380
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003381 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003382 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3383 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3384 tpacpi_inputdev->keycode = hotkey_keycode_map;
3385 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3386 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003387 input_set_capability(tpacpi_inputdev, EV_KEY,
3388 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003389 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003390 if (i < sizeof(hotkey_reserved_mask)*8)
3391 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003392 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003393 }
3394
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003395 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003396 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003397 input_report_switch(tpacpi_inputdev,
3398 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003399 }
3400 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003401 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003402 input_report_switch(tpacpi_inputdev,
3403 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003404 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003405
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003406 /* Do not issue duplicate brightness change events to
3407 * userspace */
3408 if (!tp_features.bright_acpimode)
3409 /* update bright_acpimode... */
3410 tpacpi_check_std_acpi_brightness_support();
3411
Henrique de Moraes Holschuh8bf3d4c2009-05-30 13:25:09 -03003412 if (tp_features.bright_acpimode && acpi_video_backlight_support()) {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003413 printk(TPACPI_INFO
3414 "This ThinkPad has standard ACPI backlight "
3415 "brightness control, supported by the ACPI "
3416 "video driver\n");
3417 printk(TPACPI_NOTICE
3418 "Disabling thinkpad-acpi brightness events "
3419 "by default...\n");
3420
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003421 /* Disable brightness up/down on Lenovo thinkpads when
3422 * ACPI is handling them, otherwise it is plain impossible
3423 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003424 hotkey_reserved_mask |=
3425 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3426 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003427 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3428 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003429 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003430
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003431#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003432 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3433 & ~hotkey_all_mask
3434 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003435
3436 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3437 "hotkey source mask 0x%08x, polling freq %u\n",
3438 hotkey_source_mask, hotkey_poll_freq);
3439#endif
3440
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003441 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3442 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003443 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003444 if (res) {
3445 hotkey_exit();
3446 return res;
3447 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003448 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3449 | hotkey_driver_mask)
3450 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003451 if (res < 0 && res != -ENXIO) {
3452 hotkey_exit();
3453 return res;
3454 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003455 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3456 & ~hotkey_reserved_mask;
3457 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3458 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3459 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003460
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003461 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3462 "legacy ibm/hotkey event reporting over procfs %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003463 (hotkey_report_mode < 2) ?
3464 "enabled" : "disabled");
3465
3466 tpacpi_inputdev->open = &hotkey_inputdev_open;
3467 tpacpi_inputdev->close = &hotkey_inputdev_close;
3468
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003469 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003470
3471 return 0;
3472
3473err_exit:
3474 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3475 hotkey_dev_attributes = NULL;
3476
3477 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003478}
3479
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003480static bool hotkey_notify_hotkey(const u32 hkey,
3481 bool *send_acpi_ev,
3482 bool *ignore_acpi_ev)
3483{
3484 /* 0x1000-0x1FFF: key presses */
3485 unsigned int scancode = hkey & 0xfff;
3486 *send_acpi_ev = true;
3487 *ignore_acpi_ev = false;
3488
3489 if (scancode > 0 && scancode < 0x21) {
3490 scancode--;
3491 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003492 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003493 *send_acpi_ev = false;
3494 } else {
3495 *ignore_acpi_ev = true;
3496 }
3497 return true;
3498 }
3499 return false;
3500}
3501
3502static bool hotkey_notify_wakeup(const u32 hkey,
3503 bool *send_acpi_ev,
3504 bool *ignore_acpi_ev)
3505{
3506 /* 0x2000-0x2FFF: Wakeup reason */
3507 *send_acpi_ev = true;
3508 *ignore_acpi_ev = false;
3509
3510 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003511 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3512 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003513 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3514 *ignore_acpi_ev = true;
3515 break;
3516
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003517 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3518 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003519 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3520 *ignore_acpi_ev = true;
3521 break;
3522
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003523 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3524 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003525 printk(TPACPI_ALERT
3526 "EMERGENCY WAKEUP: battery almost empty\n");
3527 /* how to auto-heal: */
3528 /* 2313: woke up from S3, go to S4/S5 */
3529 /* 2413: woke up from S4, go to S5 */
3530 break;
3531
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003532 default:
3533 return false;
3534 }
3535
3536 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
3537 printk(TPACPI_INFO
3538 "woke up due to a hot-unplug "
3539 "request...\n");
3540 hotkey_wakeup_reason_notify_change();
3541 }
3542 return true;
3543}
3544
3545static bool hotkey_notify_usrevent(const u32 hkey,
3546 bool *send_acpi_ev,
3547 bool *ignore_acpi_ev)
3548{
3549 /* 0x5000-0x5FFF: human interface helpers */
3550 *send_acpi_ev = true;
3551 *ignore_acpi_ev = false;
3552
3553 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003554 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3555 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003556 return true;
3557
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003558 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3559 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003560 tpacpi_input_send_tabletsw();
3561 hotkey_tablet_mode_notify_change();
3562 *send_acpi_ev = false;
3563 return true;
3564
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003565 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3566 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3567 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003568 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003569 *ignore_acpi_ev = true;
3570 return true;
3571
3572 default:
3573 return false;
3574 }
3575}
3576
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003577static void thermal_dump_all_sensors(void);
3578
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003579static bool hotkey_notify_thermal(const u32 hkey,
3580 bool *send_acpi_ev,
3581 bool *ignore_acpi_ev)
3582{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003583 bool known = true;
3584
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003585 /* 0x6000-0x6FFF: thermal alarms */
3586 *send_acpi_ev = true;
3587 *ignore_acpi_ev = false;
3588
3589 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003590 case TP_HKEY_EV_THM_TABLE_CHANGED:
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003591 printk(TPACPI_INFO
3592 "EC reports that Thermal Table has changed\n");
3593 /* recommended action: do nothing, we don't have
3594 * Lenovo ATM information */
3595 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003596 case TP_HKEY_EV_ALARM_BAT_HOT:
3597 printk(TPACPI_CRIT
3598 "THERMAL ALARM: battery is too hot!\n");
3599 /* recommended action: warn user through gui */
3600 break;
3601 case TP_HKEY_EV_ALARM_BAT_XHOT:
3602 printk(TPACPI_ALERT
3603 "THERMAL EMERGENCY: battery is extremely hot!\n");
3604 /* recommended action: immediate sleep/hibernate */
3605 break;
3606 case TP_HKEY_EV_ALARM_SENSOR_HOT:
3607 printk(TPACPI_CRIT
3608 "THERMAL ALARM: "
3609 "a sensor reports something is too hot!\n");
3610 /* recommended action: warn user through gui, that */
3611 /* some internal component is too hot */
3612 break;
3613 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
3614 printk(TPACPI_ALERT
3615 "THERMAL EMERGENCY: "
3616 "a sensor reports something is extremely hot!\n");
3617 /* recommended action: immediate sleep/hibernate */
3618 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003619 default:
3620 printk(TPACPI_ALERT
3621 "THERMAL ALERT: unknown thermal alarm received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003622 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003623 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003624
3625 thermal_dump_all_sensors();
3626
3627 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003628}
3629
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003630static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3631{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003632 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003633 bool send_acpi_ev;
3634 bool ignore_acpi_ev;
3635 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003636
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003637 if (event != 0x80) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003638 printk(TPACPI_ERR
3639 "unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003640 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003641 acpi_bus_generate_netlink_event(
3642 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003643 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003644 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003645 return;
3646 }
3647
3648 while (1) {
3649 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003650 printk(TPACPI_ERR "failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003651 return;
3652 }
3653
3654 if (hkey == 0) {
3655 /* queue empty */
3656 return;
3657 }
3658
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003659 send_acpi_ev = true;
3660 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003661
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003662 switch (hkey >> 12) {
3663 case 1:
3664 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003665 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3666 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003667 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003668 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003669 /* 0x2000-0x2FFF: Wakeup reason */
3670 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3671 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003672 break;
3673 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003674 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003675 switch (hkey) {
3676 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003677 hotkey_autosleep_ack = 1;
3678 printk(TPACPI_INFO
3679 "bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003680 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003681 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003682 break;
3683 case TP_HKEY_EV_OPTDRV_EJ:
3684 /* FIXME: kick libata if SATA link offline */
3685 known_ev = true;
3686 break;
3687 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003688 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003689 }
3690 break;
3691 case 4:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003692 /* 0x4000-0x4FFF: dock-related wakeups */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003693 if (hkey == TP_HKEY_EV_UNDOCK_ACK) {
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003694 hotkey_autosleep_ack = 1;
3695 printk(TPACPI_INFO
3696 "undocked\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003697 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003698 known_ev = true;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003699 } else {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003700 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003701 }
3702 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003703 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003704 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003705 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3706 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003707 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003708 case 6:
3709 /* 0x6000-0x6FFF: thermal alarms */
3710 known_ev = hotkey_notify_thermal(hkey, &send_acpi_ev,
3711 &ignore_acpi_ev);
3712 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003713 case 7:
3714 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003715 if (tp_features.hotkey_wlsw &&
3716 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003717 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003718 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003719 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003720 break;
3721 }
3722 /* fallthrough to default */
3723 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003724 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003725 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003726 if (!known_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003727 printk(TPACPI_NOTICE
3728 "unhandled HKEY event 0x%04x\n", hkey);
Henrique de Moraes Holschuhcb429352009-01-11 03:01:07 -02003729 printk(TPACPI_NOTICE
3730 "please report the conditions when this "
3731 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003732 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003733
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003734 /* Legacy events */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003735 if (!ignore_acpi_ev &&
3736 (send_acpi_ev || hotkey_report_mode < 2)) {
3737 acpi_bus_generate_proc_event(ibm->acpi->device,
3738 event, hkey);
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003739 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003740
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003741 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003742 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003743 acpi_bus_generate_netlink_event(
3744 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003745 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003746 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003747 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003748 }
3749}
3750
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003751static void hotkey_suspend(pm_message_t state)
3752{
3753 /* Do these on suspend, we get the events on early resume! */
3754 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3755 hotkey_autosleep_ack = 0;
3756}
3757
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003758static void hotkey_resume(void)
3759{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003760 tpacpi_disable_brightness_delay();
3761
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003762 if (hotkey_status_set(true) < 0 ||
3763 hotkey_mask_set(hotkey_acpi_mask) < 0)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003764 printk(TPACPI_ERR
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003765 "error while attempting to reset the event "
3766 "firmware interface\n");
3767
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003768 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003769 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003770 hotkey_wakeup_reason_notify_change();
3771 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003772 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003773}
3774
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003775/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003776static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003778 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003780 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003781 seq_printf(m, "status:\t\tnot supported\n");
3782 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003783 }
3784
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003785 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003786 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003787 res = hotkey_status_get(&status);
3788 if (!res)
3789 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003790 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003791 if (res)
3792 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003794 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003795 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003796 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
3797 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003799 seq_printf(m, "mask:\t\tnot supported\n");
3800 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 }
3802
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
3805
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003806static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003807{
3808 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003809 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
3810 TPACPI_WARN
3811 "hotkey enable/disable functionality has been "
3812 "removed from the driver. Hotkeys are always "
3813 "enabled\n"))
3814 printk(TPACPI_ERR
3815 "Please remove the hotkey=enable module "
3816 "parameter, it is deprecated. Hotkeys are always "
3817 "enabled\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003818}
3819
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003820static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003822 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003823 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003826 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 return -ENODEV;
3828
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003829 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003830 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003831
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003832 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003833
3834 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 while ((cmd = next_cmd(&buf))) {
3836 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003837 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003839 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003840 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003842 mask = (hotkey_all_mask | hotkey_source_mask)
3843 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3845 /* mask set */
3846 } else if (sscanf(cmd, "%x", &mask) == 1) {
3847 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003848 } else {
3849 res = -EINVAL;
3850 goto errexit;
3851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003853
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003854 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003855 tpacpi_disclose_usertask("procfs hotkey",
3856 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003857 res = hotkey_user_mask_set(mask);
3858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003860errexit:
3861 mutex_unlock(&hotkey_mutex);
3862 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003863}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003865static const struct acpi_device_id ibm_htk_device_ids[] = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003866 {TPACPI_ACPI_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003867 {"", 0},
3868};
3869
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003870static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003871 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003872 .notify = hotkey_notify,
3873 .handle = &hkey_handle,
3874 .type = ACPI_DEVICE_NOTIFY,
3875};
3876
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003877static struct ibm_struct hotkey_driver_data = {
3878 .name = "hotkey",
3879 .read = hotkey_read,
3880 .write = hotkey_write,
3881 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003882 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003883 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003884 .acpi = &ibm_hotkey_acpidriver,
3885};
3886
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003887/*************************************************************************
3888 * Bluetooth subdriver
3889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003891enum {
3892 /* ACPI GBDC/SBDC bits */
3893 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3894 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003895 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003896 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003897};
3898
3899enum {
3900 /* ACPI \BLTH commands */
3901 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3902 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3903 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3904 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3905 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003906};
3907
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003908#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3909
Johannes Berg19d337d2009-06-02 13:01:37 +02003910static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003911{
3912 int status;
3913
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003914#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3915 if (dbg_bluetoothemul)
3916 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003917 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003918#endif
3919
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003920 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3921 return -EIO;
3922
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003923 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003924 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003925}
3926
Johannes Berg19d337d2009-06-02 13:01:37 +02003927static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003928{
3929 int status;
3930
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003931 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003932 "will attempt to %s bluetooth\n",
3933 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003934
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003935#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3936 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003937 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003938 return 0;
3939 }
3940#endif
3941
Johannes Berg19d337d2009-06-02 13:01:37 +02003942 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003943 status = TP_ACPI_BLUETOOTH_RADIOSSW
3944 | TP_ACPI_BLUETOOTH_RESUMECTRL;
3945 else
3946 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003947
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003948 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3949 return -EIO;
3950
3951 return 0;
3952}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003953
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003954/* sysfs bluetooth enable ---------------------------------------------- */
3955static ssize_t bluetooth_enable_show(struct device *dev,
3956 struct device_attribute *attr,
3957 char *buf)
3958{
Johannes Berg19d337d2009-06-02 13:01:37 +02003959 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3960 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003961}
3962
3963static ssize_t bluetooth_enable_store(struct device *dev,
3964 struct device_attribute *attr,
3965 const char *buf, size_t count)
3966{
Johannes Berg19d337d2009-06-02 13:01:37 +02003967 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3968 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003969}
3970
3971static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003972 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003973 bluetooth_enable_show, bluetooth_enable_store);
3974
3975/* --------------------------------------------------------------------- */
3976
3977static struct attribute *bluetooth_attributes[] = {
3978 &dev_attr_bluetooth_enable.attr,
3979 NULL
3980};
3981
3982static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003983 .attrs = bluetooth_attributes,
3984};
3985
Johannes Berg19d337d2009-06-02 13:01:37 +02003986static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3987 .get_status = bluetooth_get_status,
3988 .set_status = bluetooth_set_status,
3989};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003990
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003991static void bluetooth_shutdown(void)
3992{
3993 /* Order firmware to save current state to NVRAM */
3994 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3995 TP_ACPI_BLTH_SAVE_STATE))
3996 printk(TPACPI_NOTICE
3997 "failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003998 else
3999 vdbg_printk(TPACPI_DBG_RFKILL,
4000 "bluestooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004001}
4002
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004003static void bluetooth_exit(void)
4004{
4005 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4006 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004007
4008 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4009
4010 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004011}
4012
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004013static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004015 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004016 int status = 0;
4017
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004018 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4019 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004020
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004021 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004022
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004023 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4024 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004025 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004026 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004028 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4029 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004030 str_supported(tp_features.bluetooth),
4031 status);
4032
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004033#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4034 if (dbg_bluetoothemul) {
4035 tp_features.bluetooth = 1;
4036 printk(TPACPI_INFO
4037 "bluetooth switch emulation enabled\n");
4038 } else
4039#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004040 if (tp_features.bluetooth &&
4041 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4042 /* no bluetooth hardware present in system */
4043 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004044 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004045 "bluetooth hardware not installed\n");
4046 }
4047
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004048 if (!tp_features.bluetooth)
4049 return 1;
4050
Johannes Berg19d337d2009-06-02 13:01:37 +02004051 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4052 &bluetooth_tprfk_ops,
4053 RFKILL_TYPE_BLUETOOTH,
4054 TPACPI_RFK_BLUETOOTH_SW_NAME,
4055 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004056 if (res)
4057 return res;
4058
Johannes Berg19d337d2009-06-02 13:01:37 +02004059 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4060 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004061 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004062 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004063 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004064 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004065
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067}
4068
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004069/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004070static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004072 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073}
4074
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004075static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076{
Johannes Berg19d337d2009-06-02 13:01:37 +02004077 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078}
4079
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004080static struct ibm_struct bluetooth_driver_data = {
4081 .name = "bluetooth",
4082 .read = bluetooth_read,
4083 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004084 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004085 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004086};
4087
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004088/*************************************************************************
4089 * Wan subdriver
4090 */
4091
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004092enum {
4093 /* ACPI GWAN/SWAN bits */
4094 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4095 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004096 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004097 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004098};
4099
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004100#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4101
Johannes Berg19d337d2009-06-02 13:01:37 +02004102static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004103{
4104 int status;
4105
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004106#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4107 if (dbg_wwanemul)
4108 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004109 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004110#endif
4111
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004112 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4113 return -EIO;
4114
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004115 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004116 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004117}
4118
Johannes Berg19d337d2009-06-02 13:01:37 +02004119static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004120{
4121 int status;
4122
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004123 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004124 "will attempt to %s wwan\n",
4125 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004126
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004127#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4128 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004129 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004130 return 0;
4131 }
4132#endif
4133
Johannes Berg19d337d2009-06-02 13:01:37 +02004134 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004135 status = TP_ACPI_WANCARD_RADIOSSW
4136 | TP_ACPI_WANCARD_RESUMECTRL;
4137 else
4138 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004139
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004140 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4141 return -EIO;
4142
4143 return 0;
4144}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004145
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004146/* sysfs wan enable ---------------------------------------------------- */
4147static ssize_t wan_enable_show(struct device *dev,
4148 struct device_attribute *attr,
4149 char *buf)
4150{
Johannes Berg19d337d2009-06-02 13:01:37 +02004151 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4152 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004153}
4154
4155static ssize_t wan_enable_store(struct device *dev,
4156 struct device_attribute *attr,
4157 const char *buf, size_t count)
4158{
Johannes Berg19d337d2009-06-02 13:01:37 +02004159 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4160 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004161}
4162
4163static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004164 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004165 wan_enable_show, wan_enable_store);
4166
4167/* --------------------------------------------------------------------- */
4168
4169static struct attribute *wan_attributes[] = {
4170 &dev_attr_wan_enable.attr,
4171 NULL
4172};
4173
4174static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004175 .attrs = wan_attributes,
4176};
4177
Johannes Berg19d337d2009-06-02 13:01:37 +02004178static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4179 .get_status = wan_get_status,
4180 .set_status = wan_set_status,
4181};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004182
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004183static void wan_shutdown(void)
4184{
4185 /* Order firmware to save current state to NVRAM */
4186 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4187 TP_ACPI_WGSV_SAVE_STATE))
4188 printk(TPACPI_NOTICE
4189 "failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004190 else
4191 vdbg_printk(TPACPI_DBG_RFKILL,
4192 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004193}
4194
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004195static void wan_exit(void)
4196{
4197 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4198 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004199
4200 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4201
4202 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004203}
4204
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004205static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004206{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004207 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004208 int status = 0;
4209
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004210 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4211 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004212
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004213 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004214
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004215 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004216 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004217
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004218 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4219 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004220 str_supported(tp_features.wan),
4221 status);
4222
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004223#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4224 if (dbg_wwanemul) {
4225 tp_features.wan = 1;
4226 printk(TPACPI_INFO
4227 "wwan switch emulation enabled\n");
4228 } else
4229#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004230 if (tp_features.wan &&
4231 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4232 /* no wan hardware present in system */
4233 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004234 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004235 "wan hardware not installed\n");
4236 }
4237
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004238 if (!tp_features.wan)
4239 return 1;
4240
Johannes Berg19d337d2009-06-02 13:01:37 +02004241 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4242 &wan_tprfk_ops,
4243 RFKILL_TYPE_WWAN,
4244 TPACPI_RFK_WWAN_SW_NAME,
4245 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004246 if (res)
4247 return res;
4248
Johannes Berg19d337d2009-06-02 13:01:37 +02004249 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4250 &wan_attr_group);
4251
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004252 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004253 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004254 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004255 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004256
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004257 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004258}
4259
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004260/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004261static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004262{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004263 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004264}
4265
4266static int wan_write(char *buf)
4267{
Johannes Berg19d337d2009-06-02 13:01:37 +02004268 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004269}
4270
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004271static struct ibm_struct wan_driver_data = {
4272 .name = "wan",
4273 .read = wan_read,
4274 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004275 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004276 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004277};
4278
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004279/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004280 * UWB subdriver
4281 */
4282
4283enum {
4284 /* ACPI GUWB/SUWB bits */
4285 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4286 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4287};
4288
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004289#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4290
Johannes Berg19d337d2009-06-02 13:01:37 +02004291static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004292{
4293 int status;
4294
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004295#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4296 if (dbg_uwbemul)
4297 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004298 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004299#endif
4300
4301 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4302 return -EIO;
4303
4304 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004305 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004306}
4307
Johannes Berg19d337d2009-06-02 13:01:37 +02004308static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004309{
4310 int status;
4311
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004312 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004313 "will attempt to %s UWB\n",
4314 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004315
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004316#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4317 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004318 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004319 return 0;
4320 }
4321#endif
4322
Johannes Berg19d337d2009-06-02 13:01:37 +02004323 if (state == TPACPI_RFK_RADIO_ON)
4324 status = TP_ACPI_UWB_RADIOSSW;
4325 else
4326 status = 0;
4327
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004328 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4329 return -EIO;
4330
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004331 return 0;
4332}
4333
4334/* --------------------------------------------------------------------- */
4335
Johannes Berg19d337d2009-06-02 13:01:37 +02004336static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4337 .get_status = uwb_get_status,
4338 .set_status = uwb_set_status,
4339};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004340
4341static void uwb_exit(void)
4342{
Johannes Berg19d337d2009-06-02 13:01:37 +02004343 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004344}
4345
4346static int __init uwb_init(struct ibm_init_struct *iibm)
4347{
4348 int res;
4349 int status = 0;
4350
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004351 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4352 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004353
4354 TPACPI_ACPIHANDLE_INIT(hkey);
4355
4356 tp_features.uwb = hkey_handle &&
4357 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4358
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004359 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4360 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004361 str_supported(tp_features.uwb),
4362 status);
4363
4364#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4365 if (dbg_uwbemul) {
4366 tp_features.uwb = 1;
4367 printk(TPACPI_INFO
4368 "uwb switch emulation enabled\n");
4369 } else
4370#endif
4371 if (tp_features.uwb &&
4372 !(status & TP_ACPI_UWB_HWPRESENT)) {
4373 /* no uwb hardware present in system */
4374 tp_features.uwb = 0;
4375 dbg_printk(TPACPI_DBG_INIT,
4376 "uwb hardware not installed\n");
4377 }
4378
4379 if (!tp_features.uwb)
4380 return 1;
4381
4382 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004383 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004384 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004385 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004386 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004387 return res;
4388}
4389
4390static struct ibm_struct uwb_driver_data = {
4391 .name = "uwb",
4392 .exit = uwb_exit,
4393 .flags.experimental = 1,
4394};
4395
4396/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004397 * Video subdriver
4398 */
4399
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004400#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4401
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004402enum video_access_mode {
4403 TPACPI_VIDEO_NONE = 0,
4404 TPACPI_VIDEO_570, /* 570 */
4405 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4406 TPACPI_VIDEO_NEW, /* all others */
4407};
4408
4409enum { /* video status flags, based on VIDEO_570 */
4410 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4411 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4412 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4413};
4414
4415enum { /* TPACPI_VIDEO_570 constants */
4416 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4417 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4418 * video_status_flags */
4419 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4420 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4421};
4422
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004423static enum video_access_mode video_supported;
4424static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004425
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004426static int video_autosw_get(void);
4427static int video_autosw_set(int enable);
4428
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004429TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004430
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004431static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004433 int ivga;
4434
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004435 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4436
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004437 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004438 if (tpacpi_is_ibm())
4439 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004440
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004441 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4442 /* G41, assume IVGA doesn't change */
4443 vid_handle = vid2_handle;
4444
4445 if (!vid_handle)
4446 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004447 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004448 else if (tpacpi_is_ibm() &&
4449 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004450 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004451 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004452 else if (tpacpi_is_ibm() &&
4453 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004454 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004455 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004456 else
4457 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004458 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004460 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4461 str_supported(video_supported != TPACPI_VIDEO_NONE),
4462 video_supported);
4463
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004464 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465}
4466
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004467static void video_exit(void)
4468{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004469 dbg_printk(TPACPI_DBG_EXIT,
4470 "restoring original video autoswitch mode\n");
4471 if (video_autosw_set(video_orig_autosw))
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004472 printk(TPACPI_ERR "error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004473 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004474}
4475
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004476static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477{
4478 int status = 0;
4479 int i;
4480
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004481 switch (video_supported) {
4482 case TPACPI_VIDEO_570:
4483 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4484 TP_ACPI_VIDEO_570_PHSCMD))
4485 return -EIO;
4486 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4487 break;
4488 case TPACPI_VIDEO_770:
4489 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4490 return -EIO;
4491 if (i)
4492 status |= TP_ACPI_VIDEO_S_LCD;
4493 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4494 return -EIO;
4495 if (i)
4496 status |= TP_ACPI_VIDEO_S_CRT;
4497 break;
4498 case TPACPI_VIDEO_NEW:
4499 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4500 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4501 return -EIO;
4502 if (i)
4503 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004505 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4506 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4507 return -EIO;
4508 if (i)
4509 status |= TP_ACPI_VIDEO_S_LCD;
4510 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4511 return -EIO;
4512 if (i)
4513 status |= TP_ACPI_VIDEO_S_DVI;
4514 break;
4515 default:
4516 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519 return status;
4520}
4521
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004522static int video_outputsw_set(int status)
4523{
4524 int autosw;
4525 int res = 0;
4526
4527 switch (video_supported) {
4528 case TPACPI_VIDEO_570:
4529 res = acpi_evalf(NULL, NULL,
4530 "\\_SB.PHS2", "vdd",
4531 TP_ACPI_VIDEO_570_PHS2CMD,
4532 status | TP_ACPI_VIDEO_570_PHS2SET);
4533 break;
4534 case TPACPI_VIDEO_770:
4535 autosw = video_autosw_get();
4536 if (autosw < 0)
4537 return autosw;
4538
4539 res = video_autosw_set(1);
4540 if (res)
4541 return res;
4542 res = acpi_evalf(vid_handle, NULL,
4543 "ASWT", "vdd", status * 0x100, 0);
4544 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004545 printk(TPACPI_ERR
4546 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004547 return -EIO;
4548 }
4549 break;
4550 case TPACPI_VIDEO_NEW:
4551 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004552 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004553 break;
4554 default:
4555 return -ENOSYS;
4556 }
4557
4558 return (res)? 0 : -EIO;
4559}
4560
4561static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004563 int autosw = 0;
4564
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004565 switch (video_supported) {
4566 case TPACPI_VIDEO_570:
4567 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4568 return -EIO;
4569 break;
4570 case TPACPI_VIDEO_770:
4571 case TPACPI_VIDEO_NEW:
4572 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4573 return -EIO;
4574 break;
4575 default:
4576 return -ENOSYS;
4577 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004578
4579 return autosw & 1;
4580}
4581
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004582static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004583{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004584 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004585 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004586 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004587}
4588
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004589static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004590{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004591 int autosw = video_autosw_get();
4592 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004593
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004594 if (autosw < 0)
4595 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004596
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004597 switch (video_supported) {
4598 case TPACPI_VIDEO_570:
4599 res = video_autosw_set(1);
4600 if (res)
4601 return res;
4602 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4603 break;
4604 case TPACPI_VIDEO_770:
4605 case TPACPI_VIDEO_NEW:
4606 res = video_autosw_set(1);
4607 if (res)
4608 return res;
4609 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4610 break;
4611 default:
4612 return -ENOSYS;
4613 }
4614 if (!autosw && video_autosw_set(autosw)) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004615 printk(TPACPI_ERR
4616 "video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004617 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004618 }
4619
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004620 return (res)? 0 : -EIO;
4621}
4622
4623static int video_expand_toggle(void)
4624{
4625 switch (video_supported) {
4626 case TPACPI_VIDEO_570:
4627 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4628 0 : -EIO;
4629 case TPACPI_VIDEO_770:
4630 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4631 0 : -EIO;
4632 case TPACPI_VIDEO_NEW:
4633 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4634 0 : -EIO;
4635 default:
4636 return -ENOSYS;
4637 }
4638 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004639}
4640
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004641static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004642{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004643 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004644
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004645 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004646 seq_printf(m, "status:\t\tnot supported\n");
4647 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004648 }
4649
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004650 /* Even reads can crash X.org, so... */
4651 if (!capable(CAP_SYS_ADMIN))
4652 return -EPERM;
4653
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004654 status = video_outputsw_get();
4655 if (status < 0)
4656 return status;
4657
4658 autosw = video_autosw_get();
4659 if (autosw < 0)
4660 return autosw;
4661
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004662 seq_printf(m, "status:\t\tsupported\n");
4663 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4664 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004665 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004666 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4667 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4668 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4669 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004670 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004671 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4672 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4673 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004674
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004675 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004676}
4677
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004678static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679{
4680 char *cmd;
4681 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004682 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004684 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004685 return -ENODEV;
4686
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004687 /* Even reads can crash X.org, let alone writes... */
4688 if (!capable(CAP_SYS_ADMIN))
4689 return -EPERM;
4690
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004691 enable = 0;
4692 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694 while ((cmd = next_cmd(&buf))) {
4695 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004696 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004698 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004700 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004702 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004703 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004704 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004705 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004706 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004707 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004708 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004710 res = video_autosw_set(1);
4711 if (res)
4712 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004714 res = video_autosw_set(0);
4715 if (res)
4716 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004718 res = video_outputsw_cycle();
4719 if (res)
4720 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004722 res = video_expand_toggle();
4723 if (res)
4724 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 } else
4726 return -EINVAL;
4727 }
4728
4729 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004730 status = video_outputsw_get();
4731 if (status < 0)
4732 return status;
4733 res = video_outputsw_set((status & ~disable) | enable);
4734 if (res)
4735 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 }
4737
4738 return 0;
4739}
4740
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004741static struct ibm_struct video_driver_data = {
4742 .name = "video",
4743 .read = video_read,
4744 .write = video_write,
4745 .exit = video_exit,
4746};
4747
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004748#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4749
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004750/*************************************************************************
4751 * Light (thinklight) subdriver
4752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004754TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4755TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004756
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004757static int light_get_status(void)
4758{
4759 int status = 0;
4760
4761 if (tp_features.light_status) {
4762 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4763 return -EIO;
4764 return (!!status);
4765 }
4766
4767 return -ENXIO;
4768}
4769
4770static int light_set_status(int status)
4771{
4772 int rc;
4773
4774 if (tp_features.light) {
4775 if (cmos_handle) {
4776 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4777 (status)?
4778 TP_CMOS_THINKLIGHT_ON :
4779 TP_CMOS_THINKLIGHT_OFF);
4780 } else {
4781 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4782 (status)? 1 : 0);
4783 }
4784 return (rc)? 0 : -EIO;
4785 }
4786
4787 return -ENXIO;
4788}
4789
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004790static void light_set_status_worker(struct work_struct *work)
4791{
4792 struct tpacpi_led_classdev *data =
4793 container_of(work, struct tpacpi_led_classdev, work);
4794
4795 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004796 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004797}
4798
4799static void light_sysfs_set(struct led_classdev *led_cdev,
4800 enum led_brightness brightness)
4801{
4802 struct tpacpi_led_classdev *data =
4803 container_of(led_cdev,
4804 struct tpacpi_led_classdev,
4805 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004806 data->new_state = (brightness != LED_OFF) ?
4807 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004808 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004809}
4810
4811static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4812{
4813 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4814}
4815
4816static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4817 .led_classdev = {
4818 .name = "tpacpi::thinklight",
4819 .brightness_set = &light_sysfs_set,
4820 .brightness_get = &light_sysfs_get,
4821 }
4822};
4823
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004824static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004826 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004827
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004828 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4829
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004830 if (tpacpi_is_ibm()) {
4831 TPACPI_ACPIHANDLE_INIT(ledb);
4832 TPACPI_ACPIHANDLE_INIT(lght);
4833 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004834 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004835 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004836
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004837 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004838 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004839
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004840 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004841 /* light status not supported on
4842 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004843 tp_features.light_status =
4844 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004846 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4847 str_supported(tp_features.light),
4848 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004849
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004850 if (!tp_features.light)
4851 return 1;
4852
4853 rc = led_classdev_register(&tpacpi_pdev->dev,
4854 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004855
4856 if (rc < 0) {
4857 tp_features.light = 0;
4858 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004859 } else {
4860 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004861 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004862
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004863 return rc;
4864}
4865
4866static void light_exit(void)
4867{
4868 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
4869 if (work_pending(&tpacpi_led_thinklight.work))
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004870 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871}
4872
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004873static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004875 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004877 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004878 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004879 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004880 seq_printf(m, "status:\t\tunknown\n");
4881 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004882 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004883 status = light_get_status();
4884 if (status < 0)
4885 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004886 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
4887 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004890 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891}
4892
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004893static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004896 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004897
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004898 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004899 return -ENODEV;
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 while ((cmd = next_cmd(&buf))) {
4902 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004903 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004905 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 } else
4907 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 }
4909
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004910 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911}
4912
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004913static struct ibm_struct light_driver_data = {
4914 .name = "light",
4915 .read = light_read,
4916 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004917 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004918};
4919
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004920/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004921 * CMOS subdriver
4922 */
4923
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004924/* sysfs cmos_command -------------------------------------------------- */
4925static ssize_t cmos_command_store(struct device *dev,
4926 struct device_attribute *attr,
4927 const char *buf, size_t count)
4928{
4929 unsigned long cmos_cmd;
4930 int res;
4931
4932 if (parse_strtoul(buf, 21, &cmos_cmd))
4933 return -EINVAL;
4934
4935 res = issue_thinkpad_cmos_command(cmos_cmd);
4936 return (res)? res : count;
4937}
4938
4939static struct device_attribute dev_attr_cmos_command =
4940 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4941
4942/* --------------------------------------------------------------------- */
4943
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004944static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004945{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004946 int res;
4947
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004948 vdbg_printk(TPACPI_DBG_INIT,
4949 "initializing cmos commands subdriver\n");
4950
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004951 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004952
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004953 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4954 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004955
4956 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4957 if (res)
4958 return res;
4959
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004960 return (cmos_handle)? 0 : 1;
4961}
4962
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004963static void cmos_exit(void)
4964{
4965 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4966}
4967
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004968static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004970 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4971 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004973 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004975 seq_printf(m, "status:\t\tsupported\n");
4976 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 }
4978
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004979 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980}
4981
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004982static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983{
4984 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004985 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
4987 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004988 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4989 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 /* cmos_cmd set */
4991 } else
4992 return -EINVAL;
4993
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004994 res = issue_thinkpad_cmos_command(cmos_cmd);
4995 if (res)
4996 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 }
4998
4999 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005000}
5001
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005002static struct ibm_struct cmos_driver_data = {
5003 .name = "cmos",
5004 .read = cmos_read,
5005 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005006 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005007};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005008
5009/*************************************************************************
5010 * LED subdriver
5011 */
5012
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005013enum led_access_mode {
5014 TPACPI_LED_NONE = 0,
5015 TPACPI_LED_570, /* 570 */
5016 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5017 TPACPI_LED_NEW, /* all others */
5018};
5019
5020enum { /* For TPACPI_LED_OLD */
5021 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5022 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5023 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5024};
5025
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005026static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005027
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005028TPACPI_HANDLE(led, ec, "SLED", /* 570 */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005029 "SYSL", /* 600e/x, 770e, 770x, A21e, A2xm/p, */
5030 /* T20-22, X20-21 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005031 "LED", /* all others */
5032 ); /* R30, R31 */
5033
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005034#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005035static struct tpacpi_led_classdev *tpacpi_leds;
5036static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005037static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005038 /* there's a limit of 19 chars + NULL before 2.6.26 */
5039 "tpacpi::power",
5040 "tpacpi:orange:batt",
5041 "tpacpi:green:batt",
5042 "tpacpi::dock_active",
5043 "tpacpi::bay_active",
5044 "tpacpi::dock_batt",
5045 "tpacpi::unknown_led",
5046 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005047 "tpacpi::dock_status1",
5048 "tpacpi::dock_status2",
5049 "tpacpi::unknown_led2",
5050 "tpacpi::unknown_led3",
5051 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005052};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005053#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005054
5055static inline bool tpacpi_is_led_restricted(const unsigned int led)
5056{
5057#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5058 return false;
5059#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005060 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005061#endif
5062}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005063
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005064static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005065{
5066 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005067 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005068
5069 switch (led_supported) {
5070 case TPACPI_LED_570:
5071 if (!acpi_evalf(ec_handle,
5072 &status, "GLED", "dd", 1 << led))
5073 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005074 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005075 TPACPI_LED_OFF :
5076 ((status == 1)?
5077 TPACPI_LED_ON :
5078 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005079 tpacpi_led_state_cache[led] = led_s;
5080 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005081 default:
5082 return -ENXIO;
5083 }
5084
5085 /* not reached */
5086}
5087
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005088static int led_set_status(const unsigned int led,
5089 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005090{
5091 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005092 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5093 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005094
5095 int rc = 0;
5096
5097 switch (led_supported) {
5098 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005099 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005100 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005101 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005102 if (unlikely(tpacpi_is_led_restricted(led)))
5103 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005104 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5105 (1 << led), led_sled_arg1[ledstatus]))
5106 rc = -EIO;
5107 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005108 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005109 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005110 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005111 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005112 if (unlikely(tpacpi_is_led_restricted(led)))
5113 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005114 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5115 if (rc >= 0)
5116 rc = ec_write(TPACPI_LED_EC_HLBL,
5117 (ledstatus == TPACPI_LED_BLINK) << led);
5118 if (rc >= 0)
5119 rc = ec_write(TPACPI_LED_EC_HLCL,
5120 (ledstatus != TPACPI_LED_OFF) << led);
5121 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005122 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005123 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005124 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5125 return -EINVAL;
5126 if (unlikely(tpacpi_is_led_restricted(led)))
5127 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005128 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5129 led, led_led_arg1[ledstatus]))
5130 rc = -EIO;
5131 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005132 default:
5133 rc = -ENXIO;
5134 }
5135
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005136 if (!rc)
5137 tpacpi_led_state_cache[led] = ledstatus;
5138
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005139 return rc;
5140}
5141
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005142static void led_set_status_worker(struct work_struct *work)
5143{
5144 struct tpacpi_led_classdev *data =
5145 container_of(work, struct tpacpi_led_classdev, work);
5146
5147 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005148 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005149}
5150
5151static void led_sysfs_set(struct led_classdev *led_cdev,
5152 enum led_brightness brightness)
5153{
5154 struct tpacpi_led_classdev *data = container_of(led_cdev,
5155 struct tpacpi_led_classdev, led_classdev);
5156
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005157 if (brightness == LED_OFF)
5158 data->new_state = TPACPI_LED_OFF;
5159 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5160 data->new_state = TPACPI_LED_ON;
5161 else
5162 data->new_state = TPACPI_LED_BLINK;
5163
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005164 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005165}
5166
5167static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5168 unsigned long *delay_on, unsigned long *delay_off)
5169{
5170 struct tpacpi_led_classdev *data = container_of(led_cdev,
5171 struct tpacpi_led_classdev, led_classdev);
5172
5173 /* Can we choose the flash rate? */
5174 if (*delay_on == 0 && *delay_off == 0) {
5175 /* yes. set them to the hardware blink rate (1 Hz) */
5176 *delay_on = 500; /* ms */
5177 *delay_off = 500; /* ms */
5178 } else if ((*delay_on != 500) || (*delay_off != 500))
5179 return -EINVAL;
5180
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005181 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005182 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005183
5184 return 0;
5185}
5186
5187static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5188{
5189 int rc;
5190
5191 struct tpacpi_led_classdev *data = container_of(led_cdev,
5192 struct tpacpi_led_classdev, led_classdev);
5193
5194 rc = led_get_status(data->led);
5195
5196 if (rc == TPACPI_LED_OFF || rc < 0)
5197 rc = LED_OFF; /* no error handling in led class :( */
5198 else
5199 rc = LED_FULL;
5200
5201 return rc;
5202}
5203
5204static void led_exit(void)
5205{
5206 unsigned int i;
5207
5208 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5209 if (tpacpi_leds[i].led_classdev.name)
5210 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5211 }
5212
5213 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005214}
5215
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005216static int __init tpacpi_init_led(unsigned int led)
5217{
5218 int rc;
5219
5220 tpacpi_leds[led].led = led;
5221
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005222 /* LEDs with no name don't get registered */
5223 if (!tpacpi_led_names[led])
5224 return 0;
5225
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005226 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5227 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5228 if (led_supported == TPACPI_LED_570)
5229 tpacpi_leds[led].led_classdev.brightness_get =
5230 &led_sysfs_get;
5231
5232 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5233
5234 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5235
5236 rc = led_classdev_register(&tpacpi_pdev->dev,
5237 &tpacpi_leds[led].led_classdev);
5238 if (rc < 0)
5239 tpacpi_leds[led].led_classdev.name = NULL;
5240
5241 return rc;
5242}
5243
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005244static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5245 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5246 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5247 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5248
5249 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5250 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5251 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5252 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5253 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5254 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5255 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5256 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5257
5258 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5259 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5260 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5261 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5262 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5263
5264 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5265 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5266 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5267 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5268
5269 /* (1) - may have excess leds enabled on MSB */
5270
5271 /* Defaults (order matters, keep last, don't reorder!) */
5272 { /* Lenovo */
5273 .vendor = PCI_VENDOR_ID_LENOVO,
5274 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5275 .quirks = 0x1fffU,
5276 },
5277 { /* IBM ThinkPads with no EC version string */
5278 .vendor = PCI_VENDOR_ID_IBM,
5279 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5280 .quirks = 0x00ffU,
5281 },
5282 { /* IBM ThinkPads with EC version string */
5283 .vendor = PCI_VENDOR_ID_IBM,
5284 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5285 .quirks = 0x00bfU,
5286 },
5287};
5288
5289#undef TPACPI_LEDQ_IBM
5290#undef TPACPI_LEDQ_LNV
5291
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005292static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005293{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005294 unsigned int i;
5295 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005296 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005297
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005298 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5299
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005300 TPACPI_ACPIHANDLE_INIT(led);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005301
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005302 if (!led_handle)
5303 /* led not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005304 led_supported = TPACPI_LED_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005305 else if (tpacpi_is_ibm() && strlencmp(led_path, "SLED") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005306 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005307 led_supported = TPACPI_LED_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005308 else if (tpacpi_is_ibm() && strlencmp(led_path, "SYSL") == 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005309 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005310 led_supported = TPACPI_LED_OLD;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005311 else
5312 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005313 led_supported = TPACPI_LED_NEW;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005314
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005315 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5316 str_supported(led_supported), led_supported);
5317
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005318 if (led_supported == TPACPI_LED_NONE)
5319 return 1;
5320
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005321 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5322 GFP_KERNEL);
5323 if (!tpacpi_leds) {
5324 printk(TPACPI_ERR "Out of memory for LED data\n");
5325 return -ENOMEM;
5326 }
5327
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005328 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5329 ARRAY_SIZE(led_useful_qtable));
5330
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005331 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005332 if (!tpacpi_is_led_restricted(i) &&
5333 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005334 rc = tpacpi_init_led(i);
5335 if (rc < 0) {
5336 led_exit();
5337 return rc;
5338 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005339 }
5340 }
5341
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005342#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005343 printk(TPACPI_NOTICE
5344 "warning: userspace override of important "
5345 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005346#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005347 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005348}
5349
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005350#define str_led_status(s) \
5351 ((s) == TPACPI_LED_OFF ? "off" : \
5352 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005353
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005354static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005356 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005357 seq_printf(m, "status:\t\tnot supported\n");
5358 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005359 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005360 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005361
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005362 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005363 /* 570 */
5364 int i, status;
5365 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005366 status = led_get_status(i);
5367 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005368 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005369 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005370 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005371 }
5372 }
5373
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005374 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005375 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378}
5379
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005380static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381{
5382 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005383 int led, rc;
5384 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005385
5386 if (!led_supported)
5387 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
5389 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005390 if (sscanf(cmd, "%d", &led) != 1 || led < 0 || led > 15)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 return -EINVAL;
5392
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005393 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005394 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005396 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005397 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005398 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005399 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005400 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005401 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005402
5403 rc = led_set_status(led, s);
5404 if (rc < 0)
5405 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 }
5407
5408 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005409}
5410
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005411static struct ibm_struct led_driver_data = {
5412 .name = "led",
5413 .read = led_read,
5414 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005415 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005416};
5417
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005418/*************************************************************************
5419 * Beep subdriver
5420 */
5421
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005422TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005423
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005424#define TPACPI_BEEP_Q1 0x0001
5425
5426static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5427 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5428 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5429};
5430
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005431static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005432{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005433 unsigned long quirks;
5434
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005435 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5436
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005437 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005438
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005439 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5440 str_supported(beep_handle != NULL));
5441
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005442 quirks = tpacpi_check_quirks(beep_quirk_table,
5443 ARRAY_SIZE(beep_quirk_table));
5444
5445 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5446
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005447 return (beep_handle)? 0 : 1;
5448}
5449
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005450static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005452 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005453 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005454 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005455 seq_printf(m, "status:\t\tsupported\n");
5456 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460}
5461
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005462static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463{
5464 char *cmd;
5465 int beep_cmd;
5466
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005467 if (!beep_handle)
5468 return -ENODEV;
5469
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005471 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5472 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473 /* beep_cmd set */
5474 } else
5475 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005476 if (tp_features.beep_needs_two_args) {
5477 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5478 beep_cmd, 0))
5479 return -EIO;
5480 } else {
5481 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5482 beep_cmd))
5483 return -EIO;
5484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 }
5486
5487 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005488}
5489
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005490static struct ibm_struct beep_driver_data = {
5491 .name = "beep",
5492 .read = beep_read,
5493 .write = beep_write,
5494};
5495
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005496/*************************************************************************
5497 * Thermal subdriver
5498 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005499
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005500enum thermal_access_mode {
5501 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5502 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5503 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5504 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5505 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5506};
5507
5508enum { /* TPACPI_THERMAL_TPEC_* */
5509 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5510 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5511 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005512
5513 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005514};
5515
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005516
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005517#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5518struct ibm_thermal_sensors_struct {
5519 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5520};
5521
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005522static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005523
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005524/* idx is zero-based */
5525static int thermal_get_sensor(int idx, s32 *value)
5526{
5527 int t;
5528 s8 tmp;
5529 char tmpi[5];
5530
5531 t = TP_EC_THERMAL_TMP0;
5532
5533 switch (thermal_read_mode) {
5534#if TPACPI_MAX_THERMAL_SENSORS >= 16
5535 case TPACPI_THERMAL_TPEC_16:
5536 if (idx >= 8 && idx <= 15) {
5537 t = TP_EC_THERMAL_TMP8;
5538 idx -= 8;
5539 }
5540 /* fallthrough */
5541#endif
5542 case TPACPI_THERMAL_TPEC_8:
5543 if (idx <= 7) {
5544 if (!acpi_ec_read(t + idx, &tmp))
5545 return -EIO;
5546 *value = tmp * 1000;
5547 return 0;
5548 }
5549 break;
5550
5551 case TPACPI_THERMAL_ACPI_UPDT:
5552 if (idx <= 7) {
5553 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5554 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5555 return -EIO;
5556 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5557 return -EIO;
5558 *value = (t - 2732) * 100;
5559 return 0;
5560 }
5561 break;
5562
5563 case TPACPI_THERMAL_ACPI_TMP07:
5564 if (idx <= 7) {
5565 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5566 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5567 return -EIO;
5568 if (t > 127 || t < -127)
5569 t = TP_EC_THERMAL_TMP_NA;
5570 *value = t * 1000;
5571 return 0;
5572 }
5573 break;
5574
5575 case TPACPI_THERMAL_NONE:
5576 default:
5577 return -ENOSYS;
5578 }
5579
5580 return -EINVAL;
5581}
5582
5583static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5584{
5585 int res, i;
5586 int n;
5587
5588 n = 8;
5589 i = 0;
5590
5591 if (!s)
5592 return -EINVAL;
5593
5594 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5595 n = 16;
5596
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005597 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005598 res = thermal_get_sensor(i, &s->temp[i]);
5599 if (res)
5600 return res;
5601 }
5602
5603 return n;
5604}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005605
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005606static void thermal_dump_all_sensors(void)
5607{
5608 int n, i;
5609 struct ibm_thermal_sensors_struct t;
5610
5611 n = thermal_get_sensors(&t);
5612 if (n <= 0)
5613 return;
5614
5615 printk(TPACPI_NOTICE
5616 "temperatures (Celsius):");
5617
5618 for (i = 0; i < n; i++) {
5619 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
5620 printk(KERN_CONT " %d", (int)(t.temp[i] / 1000));
5621 else
5622 printk(KERN_CONT " N/A");
5623 }
5624
5625 printk(KERN_CONT "\n");
5626}
5627
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005628/* sysfs temp##_input -------------------------------------------------- */
5629
5630static ssize_t thermal_temp_input_show(struct device *dev,
5631 struct device_attribute *attr,
5632 char *buf)
5633{
5634 struct sensor_device_attribute *sensor_attr =
5635 to_sensor_dev_attr(attr);
5636 int idx = sensor_attr->index;
5637 s32 value;
5638 int res;
5639
5640 res = thermal_get_sensor(idx, &value);
5641 if (res)
5642 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005643 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005644 return -ENXIO;
5645
5646 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5647}
5648
5649#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005650 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5651 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005652
5653static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5654 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5655 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5656 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5657 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5658 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5659 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5660 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5661 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5662 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5663 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5664 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5665 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5666 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5667 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5668 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5669 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5670};
5671
5672#define THERMAL_ATTRS(X) \
5673 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5674
5675static struct attribute *thermal_temp_input_attr[] = {
5676 THERMAL_ATTRS(8),
5677 THERMAL_ATTRS(9),
5678 THERMAL_ATTRS(10),
5679 THERMAL_ATTRS(11),
5680 THERMAL_ATTRS(12),
5681 THERMAL_ATTRS(13),
5682 THERMAL_ATTRS(14),
5683 THERMAL_ATTRS(15),
5684 THERMAL_ATTRS(0),
5685 THERMAL_ATTRS(1),
5686 THERMAL_ATTRS(2),
5687 THERMAL_ATTRS(3),
5688 THERMAL_ATTRS(4),
5689 THERMAL_ATTRS(5),
5690 THERMAL_ATTRS(6),
5691 THERMAL_ATTRS(7),
5692 NULL
5693};
5694
5695static const struct attribute_group thermal_temp_input16_group = {
5696 .attrs = thermal_temp_input_attr
5697};
5698
5699static const struct attribute_group thermal_temp_input8_group = {
5700 .attrs = &thermal_temp_input_attr[8]
5701};
5702
5703#undef THERMAL_SENSOR_ATTR_TEMP
5704#undef THERMAL_ATTRS
5705
5706/* --------------------------------------------------------------------- */
5707
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005708static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005709{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005710 u8 t, ta1, ta2;
5711 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005712 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005713 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005714
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005715 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5716
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005717 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005718
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005719 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005720 /*
5721 * Direct EC access mode: sensors at registers
5722 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5723 * non-implemented, thermal sensors return 0x80 when
5724 * not available
5725 */
5726
5727 ta1 = ta2 = 0;
5728 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005729 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005730 ta1 |= t;
5731 } else {
5732 ta1 = 0;
5733 break;
5734 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005735 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005736 ta2 |= t;
5737 } else {
5738 ta1 = 0;
5739 break;
5740 }
5741 }
5742 if (ta1 == 0) {
5743 /* This is sheer paranoia, but we handle it anyway */
5744 if (acpi_tmp7) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005745 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005746 "ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005747 "falling back to ACPI TMPx access "
5748 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005749 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005750 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005751 printk(TPACPI_ERR
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005752 "ThinkPad ACPI EC access misbehaving, "
5753 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005754 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005755 }
5756 } else {
5757 thermal_read_mode =
5758 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005759 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005760 }
5761 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005762 if (tpacpi_is_ibm() &&
5763 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005764 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005765 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005766 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005767 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005768 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005769 }
5770 } else {
5771 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005772 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005773 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005774
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005775 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5776 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5777 thermal_read_mode);
5778
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005779 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005780 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005781 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005782 &thermal_temp_input16_group);
5783 if (res)
5784 return res;
5785 break;
5786 case TPACPI_THERMAL_TPEC_8:
5787 case TPACPI_THERMAL_ACPI_TMP07:
5788 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005789 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005790 &thermal_temp_input8_group);
5791 if (res)
5792 return res;
5793 break;
5794 case TPACPI_THERMAL_NONE:
5795 default:
5796 return 1;
5797 }
5798
5799 return 0;
5800}
5801
5802static void thermal_exit(void)
5803{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005804 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005805 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005806 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005807 &thermal_temp_input16_group);
5808 break;
5809 case TPACPI_THERMAL_TPEC_8:
5810 case TPACPI_THERMAL_ACPI_TMP07:
5811 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005812 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08005813 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005814 break;
5815 case TPACPI_THERMAL_NONE:
5816 default:
5817 break;
5818 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005819}
5820
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005821static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005822{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005823 int n, i;
5824 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005825
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005826 n = thermal_get_sensors(&t);
5827 if (unlikely(n < 0))
5828 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005829
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005830 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005831
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005832 if (n > 0) {
5833 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005834 seq_printf(m, "%d ", t.temp[i] / 1000);
5835 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005836 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005837 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005838
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005839 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005840}
5841
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005842static struct ibm_struct thermal_driver_data = {
5843 .name = "thermal",
5844 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005845 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005846};
5847
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005848/*************************************************************************
5849 * EC Dump subdriver
5850 */
5851
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005852static u8 ecdump_regs[256];
5853
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005854static int ecdump_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005855{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005856 int i, j;
5857 u8 v;
5858
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005859 seq_printf(m, "EC "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005860 " +00 +01 +02 +03 +04 +05 +06 +07"
5861 " +08 +09 +0a +0b +0c +0d +0e +0f\n");
5862 for (i = 0; i < 256; i += 16) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005863 seq_printf(m, "EC 0x%02x:", i);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005864 for (j = 0; j < 16; j++) {
5865 if (!acpi_ec_read(i + j, &v))
5866 break;
5867 if (v != ecdump_regs[i + j])
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005868 seq_printf(m, " *%02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005869 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005870 seq_printf(m, " %02x", v);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005871 ecdump_regs[i + j] = v;
5872 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005873 seq_putc(m, '\n');
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005874 if (j != 16)
5875 break;
5876 }
5877
5878 /* These are way too dangerous to advertise openly... */
5879#if 0
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005880 seq_printf(m, "commands:\t0x<offset> 0x<value>"
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005881 " (<offset> is 00-ff, <value> is 00-ff)\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005882 seq_printf(m, "commands:\t0x<offset> <value> "
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005883 " (<offset> is 00-ff, <value> is 0-255)\n");
5884#endif
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005885 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005886}
5887
5888static int ecdump_write(char *buf)
5889{
5890 char *cmd;
5891 int i, v;
5892
5893 while ((cmd = next_cmd(&buf))) {
5894 if (sscanf(cmd, "0x%x 0x%x", &i, &v) == 2) {
5895 /* i and v set */
5896 } else if (sscanf(cmd, "0x%x %u", &i, &v) == 2) {
5897 /* i and v set */
5898 } else
5899 return -EINVAL;
5900 if (i >= 0 && i < 256 && v >= 0 && v < 256) {
5901 if (!acpi_ec_write(i, v))
5902 return -EIO;
5903 } else
5904 return -EINVAL;
5905 }
5906
5907 return 0;
5908}
5909
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005910static struct ibm_struct ecdump_driver_data = {
5911 .name = "ecdump",
5912 .read = ecdump_read,
5913 .write = ecdump_write,
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03005914 .flags.experimental = 1,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005915};
5916
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005917/*************************************************************************
5918 * Backlight/brightness subdriver
5919 */
Holger Macht8acb0252006-10-20 14:30:28 -07005920
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005921#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5922
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005923/*
5924 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5925 * CMOS NVRAM byte 0x5E, bits 0-3.
5926 *
5927 * EC HBRV (0x31) has the following layout
5928 * Bit 7: unknown function
5929 * Bit 6: unknown function
5930 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5931 * Bit 4: must be set to zero to avoid problems
5932 * Bit 3-0: backlight brightness level
5933 *
5934 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005935 *
5936 * WARNING: The X61 has been verified to use HBRV for something else, so
5937 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5938 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005939 */
5940
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005941enum {
5942 TP_EC_BACKLIGHT = 0x31,
5943
5944 /* TP_EC_BACKLIGHT bitmasks */
5945 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5946 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5947 TP_EC_BACKLIGHT_MAPSW = 0x20,
5948};
5949
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005950enum tpacpi_brightness_access_mode {
5951 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5952 TPACPI_BRGHT_MODE_EC, /* EC control */
5953 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5954 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5955 TPACPI_BRGHT_MODE_MAX
5956};
5957
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005958static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005959
5960static enum tpacpi_brightness_access_mode brightness_mode =
5961 TPACPI_BRGHT_MODE_MAX;
5962
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005963static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5964
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005965static struct mutex brightness_mutex;
5966
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005967/* NVRAM brightness access,
5968 * call with brightness_mutex held! */
5969static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005970{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005971 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005972
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005973 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5974 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5975 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
5976 lnvram &= (tp_features.bright_16levels) ? 0x0f : 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005977
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005978 return lnvram;
5979}
5980
5981static void tpacpi_brightness_checkpoint_nvram(void)
5982{
5983 u8 lec = 0;
5984 u8 b_nvram;
5985
5986 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5987 return;
5988
5989 vdbg_printk(TPACPI_DBG_BRGHT,
5990 "trying to checkpoint backlight level to NVRAM...\n");
5991
5992 if (mutex_lock_killable(&brightness_mutex) < 0)
5993 return;
5994
5995 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5996 goto unlock;
5997 lec &= TP_EC_BACKLIGHT_LVLMSK;
5998 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5999
6000 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6001 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6002 /* NVRAM needs update */
6003 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6004 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6005 b_nvram |= lec;
6006 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6007 dbg_printk(TPACPI_DBG_BRGHT,
6008 "updated NVRAM backlight level to %u (0x%02x)\n",
6009 (unsigned int) lec, (unsigned int) b_nvram);
6010 } else
6011 vdbg_printk(TPACPI_DBG_BRGHT,
6012 "NVRAM backlight level already is %u (0x%02x)\n",
6013 (unsigned int) lec, (unsigned int) b_nvram);
6014
6015unlock:
6016 mutex_unlock(&brightness_mutex);
6017}
6018
6019
6020/* call with brightness_mutex held! */
6021static int tpacpi_brightness_get_raw(int *status)
6022{
6023 u8 lec = 0;
6024
6025 switch (brightness_mode) {
6026 case TPACPI_BRGHT_MODE_UCMS_STEP:
6027 *status = tpacpi_brightness_nvram_get();
6028 return 0;
6029 case TPACPI_BRGHT_MODE_EC:
6030 case TPACPI_BRGHT_MODE_ECNVRAM:
6031 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03006032 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006033 *status = lec;
6034 return 0;
6035 default:
6036 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006037 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006038}
6039
6040/* call with brightness_mutex held! */
6041/* do NOT call with illegal backlight level value */
6042static int tpacpi_brightness_set_ec(unsigned int value)
6043{
6044 u8 lec = 0;
6045
6046 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6047 return -EIO;
6048
6049 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6050 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6051 (value & TP_EC_BACKLIGHT_LVLMSK))))
6052 return -EIO;
6053
6054 return 0;
6055}
6056
6057/* call with brightness_mutex held! */
6058static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6059{
6060 int cmos_cmd, inc;
6061 unsigned int current_value, i;
6062
6063 current_value = tpacpi_brightness_nvram_get();
6064
6065 if (value == current_value)
6066 return 0;
6067
6068 cmos_cmd = (value > current_value) ?
6069 TP_CMOS_BRIGHTNESS_UP :
6070 TP_CMOS_BRIGHTNESS_DOWN;
6071 inc = (value > current_value) ? 1 : -1;
6072
6073 for (i = current_value; i != value; i += inc)
6074 if (issue_thinkpad_cmos_command(cmos_cmd))
6075 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006076
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006077 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006078}
6079
6080/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006081static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006082{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006083 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006084
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006085 if (value > ((tp_features.bright_16levels)? 15 : 7) ||
6086 value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006087 return -EINVAL;
6088
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006089 vdbg_printk(TPACPI_DBG_BRGHT,
6090 "set backlight level to %d\n", value);
6091
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006092 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006093 if (res < 0)
6094 return res;
6095
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006096 switch (brightness_mode) {
6097 case TPACPI_BRGHT_MODE_EC:
6098 case TPACPI_BRGHT_MODE_ECNVRAM:
6099 res = tpacpi_brightness_set_ec(value);
6100 break;
6101 case TPACPI_BRGHT_MODE_UCMS_STEP:
6102 res = tpacpi_brightness_set_ucmsstep(value);
6103 break;
6104 default:
6105 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006106 }
6107
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006108 mutex_unlock(&brightness_mutex);
6109 return res;
6110}
6111
6112/* sysfs backlight class ----------------------------------------------- */
6113
6114static int brightness_update_status(struct backlight_device *bd)
6115{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006116 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006117 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6118 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006119 bd->props.brightness : 0;
6120
6121 dbg_printk(TPACPI_DBG_BRGHT,
6122 "backlight: attempt to set level to %d\n",
6123 level);
6124
6125 /* it is the backlight class's job (caller) to handle
6126 * EINTR and other errors properly */
6127 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006128}
Holger Macht8acb0252006-10-20 14:30:28 -07006129
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006130static int brightness_get(struct backlight_device *bd)
6131{
6132 int status, res;
6133
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006134 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006135 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006136 return 0;
6137
6138 res = tpacpi_brightness_get_raw(&status);
6139
6140 mutex_unlock(&brightness_mutex);
6141
6142 if (res < 0)
6143 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006144
6145 return status & TP_EC_BACKLIGHT_LVLMSK;
6146}
6147
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006148static void tpacpi_brightness_notify_change(void)
6149{
6150 backlight_force_update(ibm_backlight_device,
6151 BACKLIGHT_UPDATE_HOTKEY);
6152}
6153
Richard Purdie599a52d2007-02-10 23:07:48 +00006154static struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006155 .get_brightness = brightness_get,
6156 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006157};
6158
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006159/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006160
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006161/*
6162 * These are only useful for models that have only one possibility
6163 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6164 * these quirks.
6165 */
6166#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6167#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6168#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6169
6170static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6171 /* Models with ATI GPUs known to require ECNVRAM mode */
6172 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6173
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006174 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006175 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006176 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006177 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006178 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6179
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006180 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006181 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006182 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6183 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006184
6185 /* Models with Intel GMA900 */
6186 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6187 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6188 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6189};
6190
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006191static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006192{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006193 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006194 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006195 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006196
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006197 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6198
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006199 mutex_init(&brightness_mutex);
6200
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006201 quirks = tpacpi_check_quirks(brightness_quirk_table,
6202 ARRAY_SIZE(brightness_quirk_table));
6203
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006204 /*
6205 * We always attempt to detect acpi support, so as to switch
6206 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6207 * going to publish a backlight interface
6208 */
6209 b = tpacpi_check_std_acpi_brightness_support();
6210 if (b > 0) {
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006211
6212 if (acpi_video_backlight_support()) {
6213 if (brightness_enable > 1) {
6214 printk(TPACPI_NOTICE
6215 "Standard ACPI backlight interface "
6216 "available, not loading native one.\n");
6217 return 1;
6218 } else if (brightness_enable == 1) {
6219 printk(TPACPI_NOTICE
6220 "Backlight control force enabled, even if standard "
6221 "ACPI backlight interface is available\n");
6222 }
6223 } else {
6224 if (brightness_enable > 1) {
6225 printk(TPACPI_NOTICE
6226 "Standard ACPI backlight interface not "
6227 "available, thinkpad_acpi native "
6228 "brightness control enabled\n");
6229 }
Henrique de Moraes Holschuhe11e2112007-10-30 17:46:22 -02006230 }
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02006231 }
6232
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006233 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006234 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006235 "brightness support disabled by "
6236 "module parameter\n");
6237 return 1;
6238 }
6239
6240 if (b > 16) {
6241 printk(TPACPI_ERR
6242 "Unsupported brightness interface, "
6243 "please contact %s\n", TPACPI_MAIL);
6244 return 1;
6245 }
6246 if (b == 16)
6247 tp_features.bright_16levels = 1;
6248
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006249 /*
6250 * Check for module parameter bogosity, note that we
6251 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6252 * able to detect "unspecified"
6253 */
6254 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006255 return -EINVAL;
6256
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006257 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6258 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6259 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006260 if (quirks & TPACPI_BRGHT_Q_EC)
6261 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6262 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006263 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6264
6265 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006266 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006267 brightness_mode);
6268 }
6269
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006270 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006271 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006272 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6273 brightness_mode == TPACPI_BRGHT_MODE_EC))
6274 return -EINVAL;
6275
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006276 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006277 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006278
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006279 if (tp_features.bright_16levels)
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006280 printk(TPACPI_INFO
6281 "detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006282
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006283 memset(&props, 0, sizeof(struct backlight_properties));
6284 props.max_brightness = (tp_features.bright_16levels) ? 15 : 7;
6285 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6286 NULL, NULL,
6287 &ibm_backlight_data,
6288 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006289 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006290 int rc = PTR_ERR(ibm_backlight_device);
6291 ibm_backlight_device = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02006292 printk(TPACPI_ERR "Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006293 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006294 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006295 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6296 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006297
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006298 if (quirks & TPACPI_BRGHT_Q_ASK) {
6299 printk(TPACPI_NOTICE
6300 "brightness: will use unverified default: "
6301 "brightness_mode=%d\n", brightness_mode);
6302 printk(TPACPI_NOTICE
6303 "brightness: please report to %s whether it works well "
6304 "or not on your ThinkPad\n", TPACPI_MAIL);
6305 }
6306
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006307 ibm_backlight_device->props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006308 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006309
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006310 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6311 "brightness: registering brightness hotkeys "
6312 "as change notification\n");
6313 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6314 | TP_ACPI_HKEY_BRGHTUP_MASK
6315 | TP_ACPI_HKEY_BRGHTDWN_MASK);;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006316 return 0;
6317}
6318
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006319static void brightness_suspend(pm_message_t state)
6320{
6321 tpacpi_brightness_checkpoint_nvram();
6322}
6323
6324static void brightness_shutdown(void)
6325{
6326 tpacpi_brightness_checkpoint_nvram();
6327}
6328
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006329static void brightness_exit(void)
6330{
6331 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006332 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006333 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006334 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006335 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006336
6337 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006338}
6339
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006340static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006341{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006342 int level;
6343
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006344 level = brightness_get(NULL);
6345 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006346 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006347 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006348 seq_printf(m, "level:\t\t%d\n", level);
6349 seq_printf(m, "commands:\tup, down\n");
6350 seq_printf(m, "commands:\tlevel <level>"
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006351 " (<level> is 0-%d)\n",
6352 (tp_features.bright_16levels) ? 15 : 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006353 }
6354
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006355 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006356}
6357
6358static int brightness_write(char *buf)
6359{
6360 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006361 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006362 char *cmd;
Henrique de Moraes Holschuha3f104c2007-10-30 17:46:20 -02006363 int max_level = (tp_features.bright_16levels) ? 15 : 7;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006364
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006365 level = brightness_get(NULL);
6366 if (level < 0)
6367 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006368
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006369 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006370 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006371 if (level < max_level)
6372 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006373 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006374 if (level > 0)
6375 level--;
6376 } else if (sscanf(cmd, "level %d", &level) == 1 &&
6377 level >= 0 && level <= max_level) {
6378 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006379 } else
6380 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006381 }
6382
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006383 tpacpi_disclose_usertask("procfs brightness",
6384 "set level to %d\n", level);
6385
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006386 /*
6387 * Now we know what the final level should be, so we try to set it.
6388 * Doing it this way makes the syscall restartable in case of EINTR
6389 */
6390 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006391 if (!rc && ibm_backlight_device)
6392 backlight_force_update(ibm_backlight_device,
6393 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006394 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006395}
6396
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006397static struct ibm_struct brightness_driver_data = {
6398 .name = "brightness",
6399 .read = brightness_read,
6400 .write = brightness_write,
6401 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006402 .suspend = brightness_suspend,
6403 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006404};
6405
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006406/*************************************************************************
6407 * Volume subdriver
6408 */
6409
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006410/*
6411 * IBM ThinkPads have a simple volume controller with MUTE gating.
6412 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6413 *
6414 * Since the *61 series (and probably also the later *60 series), Lenovo
6415 * ThinkPads only implement the MUTE gate.
6416 *
6417 * EC register 0x30
6418 * Bit 6: MUTE (1 mutes sound)
6419 * Bit 3-0: Volume
6420 * Other bits should be zero as far as we know.
6421 *
6422 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6423 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6424 * such as bit 7 which is used to detect repeated presses of MUTE,
6425 * and we leave them unchanged.
6426 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006427
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006428#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6429
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006430#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6431#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6432#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6433
Henrique de Moraes Holschuhead510c2009-12-26 22:52:13 -02006434static int alsa_index = ~((1 << (SNDRV_CARDS - 3)) - 1); /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006435static char *alsa_id = "ThinkPadEC";
6436static int alsa_enable = SNDRV_DEFAULT_ENABLE1;
6437
6438struct tpacpi_alsa_data {
6439 struct snd_card *card;
6440 struct snd_ctl_elem_id *ctl_mute_id;
6441 struct snd_ctl_elem_id *ctl_vol_id;
6442};
6443
6444static struct snd_card *alsa_card;
6445
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006446enum {
6447 TP_EC_AUDIO = 0x30,
6448
6449 /* TP_EC_AUDIO bits */
6450 TP_EC_AUDIO_MUTESW = 6,
6451
6452 /* TP_EC_AUDIO bitmasks */
6453 TP_EC_AUDIO_LVL_MSK = 0x0F,
6454 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6455
6456 /* Maximum volume */
6457 TP_EC_VOLUME_MAX = 14,
6458};
6459
6460enum tpacpi_volume_access_mode {
6461 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6462 TPACPI_VOL_MODE_EC, /* Pure EC control */
6463 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6464 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6465 TPACPI_VOL_MODE_MAX
6466};
6467
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006468enum tpacpi_volume_capabilities {
6469 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6470 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6471 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6472 TPACPI_VOL_CAP_MAX
6473};
6474
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006475static enum tpacpi_volume_access_mode volume_mode =
6476 TPACPI_VOL_MODE_MAX;
6477
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006478static enum tpacpi_volume_capabilities volume_capabilities;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006479static int volume_control_allowed;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006480
6481/*
6482 * Used to syncronize writers to TP_EC_AUDIO and
6483 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6484 */
6485static struct mutex volume_mutex;
6486
6487static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006488{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006489 u8 lec = 0;
6490 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006491 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006492
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006493 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6494 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006495 if (!volume_control_allowed)
6496 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006497
6498 vdbg_printk(TPACPI_DBG_MIXER,
6499 "trying to checkpoint mixer state to NVRAM...\n");
6500
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006501 if (tp_features.mixer_no_level_control)
6502 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6503 else
6504 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6505
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006506 if (mutex_lock_killable(&volume_mutex) < 0)
6507 return;
6508
6509 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6510 goto unlock;
6511 lec &= ec_mask;
6512 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
6513
6514 if (lec != (b_nvram & ec_mask)) {
6515 /* NVRAM needs update */
6516 b_nvram &= ~ec_mask;
6517 b_nvram |= lec;
6518 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
6519 dbg_printk(TPACPI_DBG_MIXER,
6520 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6521 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006522 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006523 vdbg_printk(TPACPI_DBG_MIXER,
6524 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6525 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006526 }
6527
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006528unlock:
6529 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006530}
6531
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006532static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006533{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006534 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006535
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006536 if (!acpi_ec_read(TP_EC_AUDIO, &s))
6537 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006538
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006539 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006540
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006541 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006542
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006543 return 0;
6544}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006545
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006546static int volume_get_status(u8 *status)
6547{
6548 return volume_get_status_ec(status);
6549}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006550
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006551static int volume_set_status_ec(const u8 status)
6552{
6553 if (!acpi_ec_write(TP_EC_AUDIO, status))
6554 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006555
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006556 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
6557
6558 return 0;
6559}
6560
6561static int volume_set_status(const u8 status)
6562{
6563 return volume_set_status_ec(status);
6564}
6565
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006566/* returns < 0 on error, 0 on no change, 1 on change */
6567static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006568{
6569 int rc;
6570 u8 s, n;
6571
6572 if (mutex_lock_killable(&volume_mutex) < 0)
6573 return -EINTR;
6574
6575 rc = volume_get_status_ec(&s);
6576 if (rc)
6577 goto unlock;
6578
6579 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
6580 s & ~TP_EC_AUDIO_MUTESW_MSK;
6581
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006582 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006583 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006584 if (!rc)
6585 rc = 1;
6586 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006587
6588unlock:
6589 mutex_unlock(&volume_mutex);
6590 return rc;
6591}
6592
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006593static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006594{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006595 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006596 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006597 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006598}
6599
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006600static int volume_set_mute(const bool mute)
6601{
6602 int rc;
6603
6604 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
6605 (mute) ? "" : "un");
6606
6607 rc = __volume_set_mute_ec(mute);
6608 return (rc < 0) ? rc : 0;
6609}
6610
6611/* returns < 0 on error, 0 on no change, 1 on change */
6612static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006613{
6614 int rc;
6615 u8 s, n;
6616
6617 if (vol > TP_EC_VOLUME_MAX)
6618 return -EINVAL;
6619
6620 if (mutex_lock_killable(&volume_mutex) < 0)
6621 return -EINTR;
6622
6623 rc = volume_get_status_ec(&s);
6624 if (rc)
6625 goto unlock;
6626
6627 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
6628
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006629 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006630 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006631 if (!rc)
6632 rc = 1;
6633 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006634
6635unlock:
6636 mutex_unlock(&volume_mutex);
6637 return rc;
6638}
6639
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006640static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006641{
6642 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006643 "ALSA: trying to set volume level to %hu\n", vol);
6644 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006645}
6646
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006647static void volume_alsa_notify_change(void)
6648{
6649 struct tpacpi_alsa_data *d;
6650
6651 if (alsa_card && alsa_card->private_data) {
6652 d = alsa_card->private_data;
6653 if (d->ctl_mute_id)
6654 snd_ctl_notify(alsa_card,
6655 SNDRV_CTL_EVENT_MASK_VALUE,
6656 d->ctl_mute_id);
6657 if (d->ctl_vol_id)
6658 snd_ctl_notify(alsa_card,
6659 SNDRV_CTL_EVENT_MASK_VALUE,
6660 d->ctl_vol_id);
6661 }
6662}
6663
6664static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
6665 struct snd_ctl_elem_info *uinfo)
6666{
6667 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
6668 uinfo->count = 1;
6669 uinfo->value.integer.min = 0;
6670 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
6671 return 0;
6672}
6673
6674static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
6675 struct snd_ctl_elem_value *ucontrol)
6676{
6677 u8 s;
6678 int rc;
6679
6680 rc = volume_get_status(&s);
6681 if (rc < 0)
6682 return rc;
6683
6684 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
6685 return 0;
6686}
6687
6688static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
6689 struct snd_ctl_elem_value *ucontrol)
6690{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006691 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006692}
6693
6694#define volume_alsa_mute_info snd_ctl_boolean_mono_info
6695
6696static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
6697 struct snd_ctl_elem_value *ucontrol)
6698{
6699 u8 s;
6700 int rc;
6701
6702 rc = volume_get_status(&s);
6703 if (rc < 0)
6704 return rc;
6705
6706 ucontrol->value.integer.value[0] =
6707 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
6708 return 0;
6709}
6710
6711static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
6712 struct snd_ctl_elem_value *ucontrol)
6713{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006714 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006715}
6716
6717static struct snd_kcontrol_new volume_alsa_control_vol __devinitdata = {
6718 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6719 .name = "Console Playback Volume",
6720 .index = 0,
6721 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6722 .info = volume_alsa_vol_info,
6723 .get = volume_alsa_vol_get,
6724};
6725
6726static struct snd_kcontrol_new volume_alsa_control_mute __devinitdata = {
6727 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6728 .name = "Console Playback Switch",
6729 .index = 0,
6730 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6731 .info = volume_alsa_mute_info,
6732 .get = volume_alsa_mute_get,
6733};
6734
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006735static void volume_suspend(pm_message_t state)
6736{
6737 tpacpi_volume_checkpoint_nvram();
6738}
6739
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006740static void volume_resume(void)
6741{
6742 volume_alsa_notify_change();
6743}
6744
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006745static void volume_shutdown(void)
6746{
6747 tpacpi_volume_checkpoint_nvram();
6748}
6749
6750static void volume_exit(void)
6751{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006752 if (alsa_card) {
6753 snd_card_free(alsa_card);
6754 alsa_card = NULL;
6755 }
6756
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006757 tpacpi_volume_checkpoint_nvram();
6758}
6759
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006760static int __init volume_create_alsa_mixer(void)
6761{
6762 struct snd_card *card;
6763 struct tpacpi_alsa_data *data;
6764 struct snd_kcontrol *ctl_vol;
6765 struct snd_kcontrol *ctl_mute;
6766 int rc;
6767
6768 rc = snd_card_create(alsa_index, alsa_id, THIS_MODULE,
6769 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006770 if (rc < 0 || !card) {
6771 printk(TPACPI_ERR
6772 "Failed to create ALSA card structures: %d\n", rc);
6773 return 1;
6774 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006775
6776 BUG_ON(!card->private_data);
6777 data = card->private_data;
6778 data->card = card;
6779
6780 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
6781 sizeof(card->driver));
6782 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
6783 sizeof(card->shortname));
6784 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
6785 (thinkpad_id.ec_version_str) ?
6786 thinkpad_id.ec_version_str : "(unknown)");
6787 snprintf(card->longname, sizeof(card->longname),
6788 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
6789 (thinkpad_id.ec_version_str) ?
6790 thinkpad_id.ec_version_str : "unknown");
6791
6792 if (volume_control_allowed) {
6793 volume_alsa_control_vol.put = volume_alsa_vol_put;
6794 volume_alsa_control_vol.access =
6795 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6796
6797 volume_alsa_control_mute.put = volume_alsa_mute_put;
6798 volume_alsa_control_mute.access =
6799 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6800 }
6801
6802 if (!tp_features.mixer_no_level_control) {
6803 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
6804 rc = snd_ctl_add(card, ctl_vol);
6805 if (rc < 0) {
6806 printk(TPACPI_ERR
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006807 "Failed to create ALSA volume control: %d\n",
6808 rc);
6809 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006810 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006811 data->ctl_vol_id = &ctl_vol->id;
6812 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006813
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006814 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
6815 rc = snd_ctl_add(card, ctl_mute);
6816 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006817 printk(TPACPI_ERR "Failed to create ALSA mute control: %d\n",
6818 rc);
6819 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006820 }
6821 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006822
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006823 snd_card_set_dev(card, &tpacpi_pdev->dev);
6824 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006825 if (rc < 0) {
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006826 printk(TPACPI_ERR "Failed to register ALSA card: %d\n", rc);
6827 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006828 }
6829
6830 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006831 return 0;
6832
6833err_exit:
6834 snd_card_free(card);
6835 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006836}
6837
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006838#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6839#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6840
6841static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
6842 /* Whitelist volume level on all IBM by default */
6843 { .vendor = PCI_VENDOR_ID_IBM,
6844 .bios = TPACPI_MATCH_ANY,
6845 .ec = TPACPI_MATCH_ANY,
6846 .quirks = TPACPI_VOL_Q_LEVEL },
6847
6848 /* Lenovo models with volume control (needs confirmation) */
6849 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
6850 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
6851 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
6852 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
6853 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
6854 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
6855 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
6856
6857 /* Whitelist mute-only on all Lenovo by default */
6858 { .vendor = PCI_VENDOR_ID_LENOVO,
6859 .bios = TPACPI_MATCH_ANY,
6860 .ec = TPACPI_MATCH_ANY,
6861 .quirks = TPACPI_VOL_Q_MUTEONLY }
6862};
6863
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006864static int __init volume_init(struct ibm_init_struct *iibm)
6865{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006866 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006867 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006868
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006869 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
6870
6871 mutex_init(&volume_mutex);
6872
6873 /*
6874 * Check for module parameter bogosity, note that we
6875 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6876 * able to detect "unspecified"
6877 */
6878 if (volume_mode > TPACPI_VOL_MODE_MAX)
6879 return -EINVAL;
6880
6881 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
6882 printk(TPACPI_ERR
6883 "UCMS step volume mode not implemented, "
6884 "please contact %s\n", TPACPI_MAIL);
6885 return 1;
6886 }
6887
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006888 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
6889 return -EINVAL;
6890
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006891 /*
6892 * The ALSA mixer is our primary interface.
6893 * When disabled, don't install the subdriver at all
6894 */
6895 if (!alsa_enable) {
6896 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6897 "ALSA mixer disabled by parameter, "
6898 "not loading volume subdriver...\n");
6899 return 1;
6900 }
6901
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006902 quirks = tpacpi_check_quirks(volume_quirk_table,
6903 ARRAY_SIZE(volume_quirk_table));
6904
6905 switch (volume_capabilities) {
6906 case TPACPI_VOL_CAP_AUTO:
6907 if (quirks & TPACPI_VOL_Q_MUTEONLY)
6908 tp_features.mixer_no_level_control = 1;
6909 else if (quirks & TPACPI_VOL_Q_LEVEL)
6910 tp_features.mixer_no_level_control = 0;
6911 else
6912 return 1; /* no mixer */
6913 break;
6914 case TPACPI_VOL_CAP_VOLMUTE:
6915 tp_features.mixer_no_level_control = 0;
6916 break;
6917 case TPACPI_VOL_CAP_MUTEONLY:
6918 tp_features.mixer_no_level_control = 1;
6919 break;
6920 default:
6921 return 1;
6922 }
6923
6924 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
6925 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6926 "using user-supplied volume_capabilities=%d\n",
6927 volume_capabilities);
6928
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006929 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
6930 volume_mode == TPACPI_VOL_MODE_MAX) {
6931 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
6932
6933 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6934 "driver auto-selected volume_mode=%d\n",
6935 volume_mode);
6936 } else {
6937 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6938 "using user-supplied volume_mode=%d\n",
6939 volume_mode);
6940 }
6941
6942 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006943 "mute is supported, volume control is %s\n",
6944 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006945
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006946 rc = volume_create_alsa_mixer();
6947 if (rc) {
6948 printk(TPACPI_ERR
6949 "Could not create the ALSA mixer interface\n");
6950 return rc;
6951 }
6952
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006953 printk(TPACPI_INFO
6954 "Console audio control enabled, mode: %s\n",
6955 (volume_control_allowed) ?
6956 "override (read/write)" :
6957 "monitor (read only)");
6958
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006959 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6960 "registering volume hotkeys as change notification\n");
6961 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6962 | TP_ACPI_HKEY_VOLUP_MASK
6963 | TP_ACPI_HKEY_VOLDWN_MASK
6964 | TP_ACPI_HKEY_MUTE_MASK);
6965
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006966 return 0;
6967}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006968
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006969static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006970{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006971 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006972
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006973 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006974 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006975 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006976 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006977 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006978 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006979 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006980 status & TP_EC_AUDIO_LVL_MSK);
6981
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006982 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006983 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006984
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006985 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006986 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006987 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006988 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006989 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006990 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006991 "commands:\tlevel <level>"
6992 " (<level> is 0-%d)\n",
6993 TP_EC_VOLUME_MAX);
6994 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006995 }
6996 }
6997
6998 return 0;
6999}
7000
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007001static int volume_write(char *buf)
7002{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007003 u8 s;
7004 u8 new_level, new_mute;
7005 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007006 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007007 int rc;
7008
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007009 /*
7010 * We do allow volume control at driver startup, so that the
7011 * user can set initial state through the volume=... parameter hack.
7012 */
7013 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7014 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7015 tp_warned.volume_ctrl_forbidden = 1;
7016 printk(TPACPI_NOTICE
7017 "Console audio control in monitor mode, "
7018 "changes are not allowed.\n");
7019 printk(TPACPI_NOTICE
7020 "Use the volume_control=1 module parameter "
7021 "to enable volume control\n");
7022 }
7023 return -EPERM;
7024 }
7025
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007026 rc = volume_get_status(&s);
7027 if (rc < 0)
7028 return rc;
7029
7030 new_level = s & TP_EC_AUDIO_LVL_MSK;
7031 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007032
7033 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007034 if (!tp_features.mixer_no_level_control) {
7035 if (strlencmp(cmd, "up") == 0) {
7036 if (new_mute)
7037 new_mute = 0;
7038 else if (new_level < TP_EC_VOLUME_MAX)
7039 new_level++;
7040 continue;
7041 } else if (strlencmp(cmd, "down") == 0) {
7042 if (new_mute)
7043 new_mute = 0;
7044 else if (new_level > 0)
7045 new_level--;
7046 continue;
7047 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7048 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7049 new_level = l;
7050 continue;
7051 }
7052 }
7053 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007054 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007055 else if (strlencmp(cmd, "unmute") == 0)
7056 new_mute = 0;
7057 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007058 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007059 }
7060
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007061 if (tp_features.mixer_no_level_control) {
7062 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7063 new_mute ? "" : "un");
7064 rc = volume_set_mute(!!new_mute);
7065 } else {
7066 tpacpi_disclose_usertask("procfs volume",
7067 "%smute and set level to %d\n",
7068 new_mute ? "" : "un", new_level);
7069 rc = volume_set_status(new_mute | new_level);
7070 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007071 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007072
7073 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007074}
7075
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007076static struct ibm_struct volume_driver_data = {
7077 .name = "volume",
7078 .read = volume_read,
7079 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007080 .exit = volume_exit,
7081 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007082 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007083 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007084};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007085
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007086#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7087
7088#define alsa_card NULL
7089
7090static void inline volume_alsa_notify_change(void)
7091{
7092}
7093
7094static int __init volume_init(struct ibm_init_struct *iibm)
7095{
7096 printk(TPACPI_INFO
7097 "volume: disabled as there is no ALSA support in this kernel\n");
7098
7099 return 1;
7100}
7101
7102static struct ibm_struct volume_driver_data = {
7103 .name = "volume",
7104};
7105
7106#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7107
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007108/*************************************************************************
7109 * Fan subdriver
7110 */
7111
7112/*
7113 * FAN ACCESS MODES
7114 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007115 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007116 * ACPI GFAN method: returns fan level
7117 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007118 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007119 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007120 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007121 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007122 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7123 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007124 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7125 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007126 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007127 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007128 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7129 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007130 *
7131 * Fan speed changes of any sort (including those caused by the
7132 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007133 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007134 * limited.
7135 *
7136 * Reading is not available if GFAN exists.
7137 * Writing is not available if SFAN exists.
7138 *
7139 * Bits
7140 * 7 automatic mode engaged;
7141 * (default operation mode of the ThinkPad)
7142 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007143 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007144 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007145 * the tachometer while the fan controller ramps up
7146 * the speed (which can take up to a few *minutes*).
7147 * Speeds up fan to 100% duty-cycle, which is far above
7148 * the standard RPM levels. It is not impossible that
7149 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007150 * 5-3 unused in some models. Extra bits for fan level
7151 * in others, but still useless as all values above
7152 * 7 map to the same speed as level 7 in these models.
7153 * 2-0 fan level (0..7 usually)
7154 * 0x00 = stop
7155 * 0x07 = max (set when temperatures critical)
7156 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007157 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007158 *
7159 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
7160 * boot. Apparently the EC does not intialize it, so unless ACPI DSDT
7161 * does so, its initial value is meaningless (0x07).
7162 *
7163 * For firmware bugs, refer to:
7164 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7165 *
7166 * ----
7167 *
7168 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7169 * Main fan tachometer reading (in RPM)
7170 *
7171 * This register is present on all ThinkPads with a new-style EC, and
7172 * it is known not to be present on the A21m/e, and T22, as there is
7173 * something else in offset 0x84 according to the ACPI DSDT. Other
7174 * ThinkPads from this same time period (and earlier) probably lack the
7175 * tachometer as well.
7176 *
Nick Andrew877d0312009-01-26 11:06:57 +01007177 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007178 * was never fixed by IBM to report the EC firmware version string
7179 * probably support the tachometer (like the early X models), so
7180 * detecting it is quite hard. We need more data to know for sure.
7181 *
7182 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7183 * might result.
7184 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007185 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7186 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007187 *
7188 * For firmware bugs, refer to:
7189 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7190 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007191 * ----
7192 *
7193 * ThinkPad EC register 0x31 bit 0 (only on select models)
7194 *
7195 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7196 * show the speed of the main fan. When bit 0 of EC register 0x31
7197 * is one, the tachometer registers show the speed of the auxiliary
7198 * fan.
7199 *
7200 * Fan control seems to affect both fans, regardless of the state
7201 * of this bit.
7202 *
7203 * So far, only the firmware for the X60/X61 non-tablet versions
7204 * seem to support this (firmware TP-7M).
7205 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007206 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007207 * ThinkPad X31, X40, X41. Not available in the X60.
7208 *
7209 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7210 * high speed. ACPI DSDT seems to map these three speeds to levels
7211 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7212 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7213 *
7214 * The speeds are stored on handles
7215 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7216 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007217 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007218 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7219 *
7220 * ACPI DSDT switches which set is in use depending on various
7221 * factors.
7222 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007223 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007224 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7225 * but the ACPI tables just mention level 7.
7226 */
7227
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007228enum { /* Fan control constants */
7229 fan_status_offset = 0x2f, /* EC register 0x2f */
7230 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7231 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007232 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7233 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007234
7235 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7236 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7237
7238 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7239};
7240
7241enum fan_status_access_mode {
7242 TPACPI_FAN_NONE = 0, /* No fan status or control */
7243 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7244 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7245};
7246
7247enum fan_control_access_mode {
7248 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7249 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7250 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7251 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7252};
7253
7254enum fan_control_commands {
7255 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7256 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7257 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7258 * and also watchdog cmd */
7259};
7260
7261static int fan_control_allowed;
7262
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007263static enum fan_status_access_mode fan_status_access_mode;
7264static enum fan_control_access_mode fan_control_access_mode;
7265static enum fan_control_commands fan_control_commands;
7266
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007267static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007268static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007269static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007270static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007271
7272static struct mutex fan_mutex;
7273
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007274static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007275static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007276
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007277TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7278TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007279 "\\FSPD", /* 600e/x, 770e, 770x */
7280 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007281TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007282 "JFNS", /* 770x-JL */
7283 ); /* all others */
7284
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007285/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007286 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7287 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7288 * be in auto mode (0x80).
7289 *
7290 * This is corrected by any write to HFSP either by the driver, or
7291 * by the firmware.
7292 *
7293 * We assume 0x07 really means auto mode while this quirk is active,
7294 * as this is far more likely than the ThinkPad being in level 7,
7295 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007296 *
7297 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7298 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007299 */
7300
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007301static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007302{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007303 if (fan_control_initial_status == 0x07) {
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007304 printk(TPACPI_NOTICE
7305 "fan_init: initial fan status is unknown, "
7306 "assuming it is in auto mode\n");
7307 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007308 }
7309}
7310
7311static void fan_quirk1_handle(u8 *fan_status)
7312{
7313 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7314 if (*fan_status != fan_control_initial_status) {
7315 /* something changed the HFSP regisnter since
7316 * driver init time, so it is not undefined
7317 * anymore */
7318 tp_features.fan_ctrl_status_undef = 0;
7319 } else {
7320 /* Return most likely status. In fact, it
7321 * might be the only possible status */
7322 *fan_status = TP_EC_FAN_AUTO;
7323 }
7324 }
7325}
7326
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007327/* Select main fan on X60/X61, NOOP on others */
7328static bool fan_select_fan1(void)
7329{
7330 if (tp_features.second_fan) {
7331 u8 val;
7332
7333 if (ec_read(fan_select_offset, &val) < 0)
7334 return false;
7335 val &= 0xFEU;
7336 if (ec_write(fan_select_offset, val) < 0)
7337 return false;
7338 }
7339 return true;
7340}
7341
7342/* Select secondary fan on X60/X61 */
7343static bool fan_select_fan2(void)
7344{
7345 u8 val;
7346
7347 if (!tp_features.second_fan)
7348 return false;
7349
7350 if (ec_read(fan_select_offset, &val) < 0)
7351 return false;
7352 val |= 0x01U;
7353 if (ec_write(fan_select_offset, val) < 0)
7354 return false;
7355
7356 return true;
7357}
7358
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007359/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007360 * Call with fan_mutex held
7361 */
7362static void fan_update_desired_level(u8 status)
7363{
7364 if ((status &
7365 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7366 if (status > 7)
7367 fan_control_desired_level = 7;
7368 else
7369 fan_control_desired_level = status;
7370 }
7371}
7372
7373static int fan_get_status(u8 *status)
7374{
7375 u8 s;
7376
7377 /* TODO:
7378 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7379
7380 switch (fan_status_access_mode) {
7381 case TPACPI_FAN_RD_ACPI_GFAN:
7382 /* 570, 600e/x, 770e, 770x */
7383
7384 if (unlikely(!acpi_evalf(gfan_handle, &s, NULL, "d")))
7385 return -EIO;
7386
7387 if (likely(status))
7388 *status = s & 0x07;
7389
7390 break;
7391
7392 case TPACPI_FAN_RD_TPEC:
7393 /* all except 570, 600e/x, 770e, 770x */
7394 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7395 return -EIO;
7396
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007397 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007398 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007399 fan_quirk1_handle(status);
7400 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007401
7402 break;
7403
7404 default:
7405 return -ENXIO;
7406 }
7407
7408 return 0;
7409}
7410
7411static int fan_get_status_safe(u8 *status)
7412{
7413 int rc;
7414 u8 s;
7415
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007416 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007417 return -ERESTARTSYS;
7418 rc = fan_get_status(&s);
7419 if (!rc)
7420 fan_update_desired_level(s);
7421 mutex_unlock(&fan_mutex);
7422
7423 if (status)
7424 *status = s;
7425
7426 return rc;
7427}
7428
7429static int fan_get_speed(unsigned int *speed)
7430{
7431 u8 hi, lo;
7432
7433 switch (fan_status_access_mode) {
7434 case TPACPI_FAN_RD_TPEC:
7435 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007436 if (unlikely(!fan_select_fan1()))
7437 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007438 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7439 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7440 return -EIO;
7441
7442 if (likely(speed))
7443 *speed = (hi << 8) | lo;
7444
7445 break;
7446
7447 default:
7448 return -ENXIO;
7449 }
7450
7451 return 0;
7452}
7453
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007454static int fan2_get_speed(unsigned int *speed)
7455{
7456 u8 hi, lo;
7457 bool rc;
7458
7459 switch (fan_status_access_mode) {
7460 case TPACPI_FAN_RD_TPEC:
7461 /* all except 570, 600e/x, 770e, 770x */
7462 if (unlikely(!fan_select_fan2()))
7463 return -EIO;
7464 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
7465 !acpi_ec_read(fan_rpm_offset + 1, &hi);
7466 fan_select_fan1(); /* play it safe */
7467 if (rc)
7468 return -EIO;
7469
7470 if (likely(speed))
7471 *speed = (hi << 8) | lo;
7472
7473 break;
7474
7475 default:
7476 return -ENXIO;
7477 }
7478
7479 return 0;
7480}
7481
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007482static int fan_set_level(int level)
7483{
7484 if (!fan_control_allowed)
7485 return -EPERM;
7486
7487 switch (fan_control_access_mode) {
7488 case TPACPI_FAN_WR_ACPI_SFAN:
7489 if (level >= 0 && level <= 7) {
7490 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
7491 return -EIO;
7492 } else
7493 return -EINVAL;
7494 break;
7495
7496 case TPACPI_FAN_WR_ACPI_FANS:
7497 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007498 if (!(level & TP_EC_FAN_AUTO) &&
7499 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007500 ((level < 0) || (level > 7)))
7501 return -EINVAL;
7502
7503 /* safety net should the EC not support AUTO
7504 * or FULLSPEED mode bits and just ignore them */
7505 if (level & TP_EC_FAN_FULLSPEED)
7506 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01007507 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007508 level |= 4; /* safety min speed 4 */
7509
7510 if (!acpi_ec_write(fan_status_offset, level))
7511 return -EIO;
7512 else
7513 tp_features.fan_ctrl_status_undef = 0;
7514 break;
7515
7516 default:
7517 return -ENXIO;
7518 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007519
7520 vdbg_printk(TPACPI_DBG_FAN,
7521 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007522 return 0;
7523}
7524
7525static int fan_set_level_safe(int level)
7526{
7527 int rc;
7528
7529 if (!fan_control_allowed)
7530 return -EPERM;
7531
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007532 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007533 return -ERESTARTSYS;
7534
7535 if (level == TPACPI_FAN_LAST_LEVEL)
7536 level = fan_control_desired_level;
7537
7538 rc = fan_set_level(level);
7539 if (!rc)
7540 fan_update_desired_level(level);
7541
7542 mutex_unlock(&fan_mutex);
7543 return rc;
7544}
7545
7546static int fan_set_enable(void)
7547{
7548 u8 s;
7549 int rc;
7550
7551 if (!fan_control_allowed)
7552 return -EPERM;
7553
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007554 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007555 return -ERESTARTSYS;
7556
7557 switch (fan_control_access_mode) {
7558 case TPACPI_FAN_WR_ACPI_FANS:
7559 case TPACPI_FAN_WR_TPEC:
7560 rc = fan_get_status(&s);
7561 if (rc < 0)
7562 break;
7563
7564 /* Don't go out of emergency fan mode */
7565 if (s != 7) {
7566 s &= 0x07;
7567 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
7568 }
7569
7570 if (!acpi_ec_write(fan_status_offset, s))
7571 rc = -EIO;
7572 else {
7573 tp_features.fan_ctrl_status_undef = 0;
7574 rc = 0;
7575 }
7576 break;
7577
7578 case TPACPI_FAN_WR_ACPI_SFAN:
7579 rc = fan_get_status(&s);
7580 if (rc < 0)
7581 break;
7582
7583 s &= 0x07;
7584
7585 /* Set fan to at least level 4 */
7586 s |= 4;
7587
7588 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007589 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007590 else
7591 rc = 0;
7592 break;
7593
7594 default:
7595 rc = -ENXIO;
7596 }
7597
7598 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007599
7600 if (!rc)
7601 vdbg_printk(TPACPI_DBG_FAN,
7602 "fan control: set fan control register to 0x%02x\n",
7603 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007604 return rc;
7605}
7606
7607static int fan_set_disable(void)
7608{
7609 int rc;
7610
7611 if (!fan_control_allowed)
7612 return -EPERM;
7613
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007614 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007615 return -ERESTARTSYS;
7616
7617 rc = 0;
7618 switch (fan_control_access_mode) {
7619 case TPACPI_FAN_WR_ACPI_FANS:
7620 case TPACPI_FAN_WR_TPEC:
7621 if (!acpi_ec_write(fan_status_offset, 0x00))
7622 rc = -EIO;
7623 else {
7624 fan_control_desired_level = 0;
7625 tp_features.fan_ctrl_status_undef = 0;
7626 }
7627 break;
7628
7629 case TPACPI_FAN_WR_ACPI_SFAN:
7630 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
7631 rc = -EIO;
7632 else
7633 fan_control_desired_level = 0;
7634 break;
7635
7636 default:
7637 rc = -ENXIO;
7638 }
7639
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007640 if (!rc)
7641 vdbg_printk(TPACPI_DBG_FAN,
7642 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007643
7644 mutex_unlock(&fan_mutex);
7645 return rc;
7646}
7647
7648static int fan_set_speed(int speed)
7649{
7650 int rc;
7651
7652 if (!fan_control_allowed)
7653 return -EPERM;
7654
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007655 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007656 return -ERESTARTSYS;
7657
7658 rc = 0;
7659 switch (fan_control_access_mode) {
7660 case TPACPI_FAN_WR_ACPI_FANS:
7661 if (speed >= 0 && speed <= 65535) {
7662 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7663 speed, speed, speed))
7664 rc = -EIO;
7665 } else
7666 rc = -EINVAL;
7667 break;
7668
7669 default:
7670 rc = -ENXIO;
7671 }
7672
7673 mutex_unlock(&fan_mutex);
7674 return rc;
7675}
7676
7677static void fan_watchdog_reset(void)
7678{
7679 static int fan_watchdog_active;
7680
7681 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7682 return;
7683
7684 if (fan_watchdog_active)
7685 cancel_delayed_work(&fan_watchdog_task);
7686
7687 if (fan_watchdog_maxinterval > 0 &&
7688 tpacpi_lifecycle != TPACPI_LIFE_EXITING) {
7689 fan_watchdog_active = 1;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007690 if (!queue_delayed_work(tpacpi_wq, &fan_watchdog_task,
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007691 msecs_to_jiffies(fan_watchdog_maxinterval
7692 * 1000))) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007693 printk(TPACPI_ERR
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03007694 "failed to queue the fan watchdog, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007695 "watchdog will not trigger\n");
7696 }
7697 } else
7698 fan_watchdog_active = 0;
7699}
7700
7701static void fan_watchdog_fire(struct work_struct *ignored)
7702{
7703 int rc;
7704
7705 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7706 return;
7707
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007708 printk(TPACPI_NOTICE "fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007709 rc = fan_set_enable();
7710 if (rc < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007711 printk(TPACPI_ERR "fan watchdog: error %d while enabling fan, "
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007712 "will try again later...\n", -rc);
7713 /* reschedule for later */
7714 fan_watchdog_reset();
7715 }
7716}
7717
7718/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007719 * SYSFS fan layout: hwmon compatible (device)
7720 *
7721 * pwm*_enable:
7722 * 0: "disengaged" mode
7723 * 1: manual mode
7724 * 2: native EC "auto" mode (recommended, hardware default)
7725 *
7726 * pwm*: set speed in manual mode, ignored otherwise.
7727 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7728 * interpolation.
7729 *
7730 * fan*_input: tachometer reading, RPM
7731 *
7732 *
7733 * SYSFS fan layout: extensions
7734 *
7735 * fan_watchdog (driver):
7736 * fan watchdog interval in seconds, 0 disables (default), max 120
7737 */
7738
7739/* sysfs fan pwm1_enable ----------------------------------------------- */
7740static ssize_t fan_pwm1_enable_show(struct device *dev,
7741 struct device_attribute *attr,
7742 char *buf)
7743{
7744 int res, mode;
7745 u8 status;
7746
7747 res = fan_get_status_safe(&status);
7748 if (res)
7749 return res;
7750
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007751 if (status & TP_EC_FAN_FULLSPEED) {
7752 mode = 0;
7753 } else if (status & TP_EC_FAN_AUTO) {
7754 mode = 2;
7755 } else
7756 mode = 1;
7757
7758 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7759}
7760
7761static ssize_t fan_pwm1_enable_store(struct device *dev,
7762 struct device_attribute *attr,
7763 const char *buf, size_t count)
7764{
7765 unsigned long t;
7766 int res, level;
7767
7768 if (parse_strtoul(buf, 2, &t))
7769 return -EINVAL;
7770
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007771 tpacpi_disclose_usertask("hwmon pwm1_enable",
7772 "set fan mode to %lu\n", t);
7773
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007774 switch (t) {
7775 case 0:
7776 level = TP_EC_FAN_FULLSPEED;
7777 break;
7778 case 1:
7779 level = TPACPI_FAN_LAST_LEVEL;
7780 break;
7781 case 2:
7782 level = TP_EC_FAN_AUTO;
7783 break;
7784 case 3:
7785 /* reserved for software-controlled auto mode */
7786 return -ENOSYS;
7787 default:
7788 return -EINVAL;
7789 }
7790
7791 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007792 if (res == -ENXIO)
7793 return -EINVAL;
7794 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007795 return res;
7796
7797 fan_watchdog_reset();
7798
7799 return count;
7800}
7801
7802static struct device_attribute dev_attr_fan_pwm1_enable =
7803 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7804 fan_pwm1_enable_show, fan_pwm1_enable_store);
7805
7806/* sysfs fan pwm1 ------------------------------------------------------ */
7807static ssize_t fan_pwm1_show(struct device *dev,
7808 struct device_attribute *attr,
7809 char *buf)
7810{
7811 int res;
7812 u8 status;
7813
7814 res = fan_get_status_safe(&status);
7815 if (res)
7816 return res;
7817
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007818 if ((status &
7819 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7820 status = fan_control_desired_level;
7821
7822 if (status > 7)
7823 status = 7;
7824
7825 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7826}
7827
7828static ssize_t fan_pwm1_store(struct device *dev,
7829 struct device_attribute *attr,
7830 const char *buf, size_t count)
7831{
7832 unsigned long s;
7833 int rc;
7834 u8 status, newlevel;
7835
7836 if (parse_strtoul(buf, 255, &s))
7837 return -EINVAL;
7838
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007839 tpacpi_disclose_usertask("hwmon pwm1",
7840 "set fan speed to %lu\n", s);
7841
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007842 /* scale down from 0-255 to 0-7 */
7843 newlevel = (s >> 5) & 0x07;
7844
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007845 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007846 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007847
7848 rc = fan_get_status(&status);
7849 if (!rc && (status &
7850 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7851 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007852 if (rc == -ENXIO)
7853 rc = -EINVAL;
7854 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007855 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007856 fan_watchdog_reset();
7857 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007858 }
7859
7860 mutex_unlock(&fan_mutex);
7861 return (rc)? rc : count;
7862}
7863
7864static struct device_attribute dev_attr_fan_pwm1 =
7865 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7866 fan_pwm1_show, fan_pwm1_store);
7867
7868/* sysfs fan fan1_input ------------------------------------------------ */
7869static ssize_t fan_fan1_input_show(struct device *dev,
7870 struct device_attribute *attr,
7871 char *buf)
7872{
7873 int res;
7874 unsigned int speed;
7875
7876 res = fan_get_speed(&speed);
7877 if (res < 0)
7878 return res;
7879
7880 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7881}
7882
7883static struct device_attribute dev_attr_fan_fan1_input =
7884 __ATTR(fan1_input, S_IRUGO,
7885 fan_fan1_input_show, NULL);
7886
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007887/* sysfs fan fan2_input ------------------------------------------------ */
7888static ssize_t fan_fan2_input_show(struct device *dev,
7889 struct device_attribute *attr,
7890 char *buf)
7891{
7892 int res;
7893 unsigned int speed;
7894
7895 res = fan2_get_speed(&speed);
7896 if (res < 0)
7897 return res;
7898
7899 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7900}
7901
7902static struct device_attribute dev_attr_fan_fan2_input =
7903 __ATTR(fan2_input, S_IRUGO,
7904 fan_fan2_input_show, NULL);
7905
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007906/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007907static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7908 char *buf)
7909{
7910 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7911}
7912
7913static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7914 const char *buf, size_t count)
7915{
7916 unsigned long t;
7917
7918 if (parse_strtoul(buf, 120, &t))
7919 return -EINVAL;
7920
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007921 if (!fan_control_allowed)
7922 return -EPERM;
7923
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007924 fan_watchdog_maxinterval = t;
7925 fan_watchdog_reset();
7926
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007927 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7928
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007929 return count;
7930}
7931
7932static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7933 fan_fan_watchdog_show, fan_fan_watchdog_store);
7934
7935/* --------------------------------------------------------------------- */
7936static struct attribute *fan_attributes[] = {
7937 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7938 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007939 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007940 NULL
7941};
7942
7943static const struct attribute_group fan_attr_group = {
7944 .attrs = fan_attributes,
7945};
7946
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007947#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7948#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007949
7950#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7951 { .vendor = PCI_VENDOR_ID_IBM, \
7952 .bios = TPACPI_MATCH_ANY, \
7953 .ec = TPID(__id1, __id2), \
7954 .quirks = __quirks }
7955
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007956#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7957 { .vendor = PCI_VENDOR_ID_LENOVO, \
7958 .bios = TPACPI_MATCH_ANY, \
7959 .ec = TPID(__id1, __id2), \
7960 .quirks = __quirks }
7961
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007962static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7963 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7964 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7965 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7966 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007967 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007968};
7969
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007970#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007971#undef TPACPI_FAN_QI
7972
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007973static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007974{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007975 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007976 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007977
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007978 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7979 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007980
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007981 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007982 fan_status_access_mode = TPACPI_FAN_NONE;
7983 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007984 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007985 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007986 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007987 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007988 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007989
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03007990 if (tpacpi_is_ibm()) {
7991 TPACPI_ACPIHANDLE_INIT(fans);
7992 TPACPI_ACPIHANDLE_INIT(gfan);
7993 TPACPI_ACPIHANDLE_INIT(sfan);
7994 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007995
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007996 quirks = tpacpi_check_quirks(fan_quirk_table,
7997 ARRAY_SIZE(fan_quirk_table));
7998
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007999 if (gfan_handle) {
8000 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008001 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008002 } else {
8003 /* all other ThinkPads: note that even old-style
8004 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008005 if (likely(acpi_ec_read(fan_status_offset,
8006 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008007 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008008 if (quirks & TPACPI_FAN_Q1)
8009 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008010 if (quirks & TPACPI_FAN_2FAN) {
8011 tp_features.second_fan = 1;
8012 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8013 "secondary fan support enabled\n");
8014 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008015 } else {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008016 printk(TPACPI_ERR
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008017 "ThinkPad ACPI EC access misbehaving, "
8018 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008019 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008020 }
8021 }
8022
8023 if (sfan_handle) {
8024 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008025 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008026 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008027 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008028 } else {
8029 if (!gfan_handle) {
8030 /* gfan without sfan means no fan control */
8031 /* all other models implement TP EC 0x2f control */
8032
8033 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008034 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008035 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008036 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008037 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008038 TPACPI_FAN_CMD_SPEED |
8039 TPACPI_FAN_CMD_LEVEL |
8040 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008041 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008042 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008043 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008044 TPACPI_FAN_CMD_LEVEL |
8045 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008046 }
8047 }
8048 }
8049
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008050 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8051 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008052 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8053 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8054 fan_status_access_mode, fan_control_access_mode);
8055
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008056 /* fan control master switch */
8057 if (!fan_control_allowed) {
8058 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8059 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008060 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008061 "fan control features disabled by parameter\n");
8062 }
8063
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008064 /* update fan_control_desired_level */
8065 if (fan_status_access_mode != TPACPI_FAN_NONE)
8066 fan_get_status_safe(NULL);
8067
8068 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8069 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008070 if (tp_features.second_fan) {
8071 /* attach second fan tachometer */
8072 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
8073 &dev_attr_fan_fan2_input.attr;
8074 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008075 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008076 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008077 if (rc < 0)
8078 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008079
8080 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8081 &driver_attr_fan_watchdog);
8082 if (rc < 0) {
8083 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8084 &fan_attr_group);
8085 return rc;
8086 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008087 return 0;
8088 } else
8089 return 1;
8090}
8091
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008092static void fan_exit(void)
8093{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008094 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008095 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008096
8097 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008098 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008099 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8100 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008101
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008102 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008103 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008104}
8105
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008106static void fan_suspend(pm_message_t state)
8107{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008108 int rc;
8109
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008110 if (!fan_control_allowed)
8111 return;
8112
8113 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008114 fan_control_resume_level = 0;
8115 rc = fan_get_status_safe(&fan_control_resume_level);
8116 if (rc < 0)
8117 printk(TPACPI_NOTICE
8118 "failed to read fan level for later "
8119 "restore during resume: %d\n", rc);
8120
8121 /* if it is undefined, don't attempt to restore it.
8122 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008123 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008124 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008125}
8126
8127static void fan_resume(void)
8128{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008129 u8 current_level = 7;
8130 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008131 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008132
8133 /* DSDT *always* updates status on resume */
8134 tp_features.fan_ctrl_status_undef = 0;
8135
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008136 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008137 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008138 (fan_get_status_safe(&current_level) < 0))
8139 return;
8140
8141 switch (fan_control_access_mode) {
8142 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008143 /* never decrease fan level */
8144 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008145 break;
8146 case TPACPI_FAN_WR_ACPI_FANS:
8147 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008148 /* never decrease fan level, scale is:
8149 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8150 *
8151 * We expect the firmware to set either 7 or AUTO, but we
8152 * handle FULLSPEED out of paranoia.
8153 *
8154 * So, we can safely only restore FULLSPEED or 7, anything
8155 * else could slow the fan. Restoring AUTO is useless, at
8156 * best that's exactly what the DSDT already set (it is the
8157 * slower it uses).
8158 *
8159 * Always keep in mind that the DSDT *will* have set the
8160 * fans to what the vendor supposes is the best level. We
8161 * muck with it only to speed the fan up.
8162 */
8163 if (fan_control_resume_level != 7 &&
8164 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8165 return;
8166 else
8167 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8168 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008169 break;
8170 default:
8171 return;
8172 }
8173 if (do_set) {
8174 printk(TPACPI_NOTICE
8175 "restoring fan level to 0x%02x\n",
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008176 fan_control_resume_level);
8177 rc = fan_set_level_safe(fan_control_resume_level);
8178 if (rc < 0)
8179 printk(TPACPI_NOTICE
8180 "failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008181 }
8182}
8183
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008184static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008185{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008186 int rc;
8187 u8 status;
8188 unsigned int speed = 0;
8189
8190 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008191 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008192 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008193 rc = fan_get_status_safe(&status);
8194 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008195 return rc;
8196
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008197 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008198 "level:\t\t%d\n",
8199 (status != 0) ? "enabled" : "disabled", status);
8200 break;
8201
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008202 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008203 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008204 rc = fan_get_status_safe(&status);
8205 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008206 return rc;
8207
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008208 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008209 (status != 0) ? "enabled" : "disabled");
8210
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008211 rc = fan_get_speed(&speed);
8212 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008213 return rc;
8214
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008215 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008216
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008217 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008218 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008219 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008220 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008221 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008222 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008223 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008224 break;
8225
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008226 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008227 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008228 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008229 }
8230
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008231 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008232 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008233
8234 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008235 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008236 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008237 break;
8238
8239 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008240 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008241 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008242 break;
8243 }
8244 }
8245
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008246 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008247 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008248 "commands:\twatchdog <timeout> (<timeout> "
8249 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008250
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008251 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008252 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008253 " (<speed> is 0-65535)\n");
8254
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008255 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008256}
8257
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008258static int fan_write_cmd_level(const char *cmd, int *rc)
8259{
8260 int level;
8261
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008262 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008263 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008264 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008265 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008266 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008267 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008268 return 0;
8269
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008270 *rc = fan_set_level_safe(level);
8271 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008272 printk(TPACPI_ERR "level command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008273 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008274 else if (!*rc)
8275 tpacpi_disclose_usertask("procfs fan",
8276 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008277
8278 return 1;
8279}
8280
8281static int fan_write_cmd_enable(const char *cmd, int *rc)
8282{
8283 if (strlencmp(cmd, "enable") != 0)
8284 return 0;
8285
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008286 *rc = fan_set_enable();
8287 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008288 printk(TPACPI_ERR "enable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008289 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008290 else if (!*rc)
8291 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008292
8293 return 1;
8294}
8295
8296static int fan_write_cmd_disable(const char *cmd, int *rc)
8297{
8298 if (strlencmp(cmd, "disable") != 0)
8299 return 0;
8300
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008301 *rc = fan_set_disable();
8302 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008303 printk(TPACPI_ERR "disable command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008304 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008305 else if (!*rc)
8306 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008307
8308 return 1;
8309}
8310
8311static int fan_write_cmd_speed(const char *cmd, int *rc)
8312{
8313 int speed;
8314
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008315 /* TODO:
8316 * Support speed <low> <medium> <high> ? */
8317
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008318 if (sscanf(cmd, "speed %d", &speed) != 1)
8319 return 0;
8320
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008321 *rc = fan_set_speed(speed);
8322 if (*rc == -ENXIO)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008323 printk(TPACPI_ERR "speed command accepted for unsupported "
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008324 "access mode %d", fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008325 else if (!*rc)
8326 tpacpi_disclose_usertask("procfs fan",
8327 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008328
8329 return 1;
8330}
8331
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008332static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8333{
8334 int interval;
8335
8336 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8337 return 0;
8338
8339 if (interval < 0 || interval > 120)
8340 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008341 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008342 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008343 tpacpi_disclose_usertask("procfs fan",
8344 "set watchdog timer to %d\n",
8345 interval);
8346 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008347
8348 return 1;
8349}
8350
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008351static int fan_write(char *buf)
8352{
8353 char *cmd;
8354 int rc = 0;
8355
8356 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008357 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008358 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008359 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008360 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008361 fan_write_cmd_disable(cmd, &rc) ||
8362 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008363 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008364 fan_write_cmd_speed(cmd, &rc))
8365 )
8366 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008367 else if (!rc)
8368 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008369 }
8370
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008371 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008372}
8373
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008374static struct ibm_struct fan_driver_data = {
8375 .name = "fan",
8376 .read = fan_read,
8377 .write = fan_write,
8378 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008379 .suspend = fan_suspend,
8380 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008381};
8382
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008383/****************************************************************************
8384 ****************************************************************************
8385 *
8386 * Infrastructure
8387 *
8388 ****************************************************************************
8389 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008391/*
8392 * HKEY event callout for other subdrivers go here
8393 * (yes, it is ugly, but it is quick, safe, and gets the job done
8394 */
8395static void tpacpi_driver_event(const unsigned int hkey_event)
8396{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00008397 if (ibm_backlight_device) {
8398 switch (hkey_event) {
8399 case TP_HKEY_EV_BRGHT_UP:
8400 case TP_HKEY_EV_BRGHT_DOWN:
8401 tpacpi_brightness_notify_change();
8402 }
8403 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008404 if (alsa_card) {
8405 switch (hkey_event) {
8406 case TP_HKEY_EV_VOL_UP:
8407 case TP_HKEY_EV_VOL_DOWN:
8408 case TP_HKEY_EV_VOL_MUTE:
8409 volume_alsa_notify_change();
8410 }
8411 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008412}
8413
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008414static void hotkey_driver_event(const unsigned int scancode)
8415{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03008416 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008417}
8418
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008419/* sysfs name ---------------------------------------------------------- */
8420static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
8421 struct device_attribute *attr,
8422 char *buf)
8423{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008424 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008425}
8426
8427static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
8428 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
8429
8430/* --------------------------------------------------------------------- */
8431
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008432/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03008433static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008434
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008435/*
8436 * Module and infrastructure proble, init and exit handling
8437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008439static int force_load;
8440
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008441#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008442static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008443{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008444 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008445
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008446 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008447}
8448#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8449
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008450static void ibm_exit(struct ibm_struct *ibm)
8451{
8452 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
8453
8454 list_del_init(&ibm->all_drivers);
8455
8456 if (ibm->flags.acpi_notify_installed) {
8457 dbg_printk(TPACPI_DBG_EXIT,
8458 "%s: acpi_remove_notify_handler\n", ibm->name);
8459 BUG_ON(!ibm->acpi);
8460 acpi_remove_notify_handler(*ibm->acpi->handle,
8461 ibm->acpi->type,
8462 dispatch_acpi_notify);
8463 ibm->flags.acpi_notify_installed = 0;
8464 ibm->flags.acpi_notify_installed = 0;
8465 }
8466
8467 if (ibm->flags.proc_created) {
8468 dbg_printk(TPACPI_DBG_EXIT,
8469 "%s: remove_proc_entry\n", ibm->name);
8470 remove_proc_entry(ibm->name, proc_dir);
8471 ibm->flags.proc_created = 0;
8472 }
8473
8474 if (ibm->flags.acpi_driver_registered) {
8475 dbg_printk(TPACPI_DBG_EXIT,
8476 "%s: acpi_bus_unregister_driver\n", ibm->name);
8477 BUG_ON(!ibm->acpi);
8478 acpi_bus_unregister_driver(ibm->acpi->driver);
8479 kfree(ibm->acpi->driver);
8480 ibm->acpi->driver = NULL;
8481 ibm->flags.acpi_driver_registered = 0;
8482 }
8483
8484 if (ibm->flags.init_called && ibm->exit) {
8485 ibm->exit();
8486 ibm->flags.init_called = 0;
8487 }
8488
8489 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
8490}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008491
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008492static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008493{
8494 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008495 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496 struct proc_dir_entry *entry;
8497
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008498 BUG_ON(ibm == NULL);
8499
8500 INIT_LIST_HEAD(&ibm->all_drivers);
8501
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008502 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503 return 0;
8504
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008505 dbg_printk(TPACPI_DBG_INIT,
8506 "probing for %s\n", ibm->name);
8507
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008508 if (iibm->init) {
8509 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008510 if (ret > 0)
8511 return 0; /* probe failed */
8512 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008513 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008514
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008515 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008516 }
8517
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008518 if (ibm->acpi) {
8519 if (ibm->acpi->hid) {
8520 ret = register_tpacpi_subdriver(ibm);
8521 if (ret)
8522 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008523 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008524
8525 if (ibm->acpi->notify) {
8526 ret = setup_acpi_notify(ibm);
8527 if (ret == -ENODEV) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008528 printk(TPACPI_NOTICE "disabling subdriver %s\n",
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008529 ibm->name);
8530 ret = 0;
8531 goto err_out;
8532 }
8533 if (ret < 0)
8534 goto err_out;
8535 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008536 }
8537
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008538 dbg_printk(TPACPI_DBG_INIT,
8539 "%s installed\n", ibm->name);
8540
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008541 if (ibm->read) {
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008542 mode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008543
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008544 if (!mode)
8545 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008546 if (ibm->write)
8547 mode |= S_IWUSR;
8548 entry = proc_create_data(ibm->name, mode, proc_dir,
8549 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008550 if (!entry) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008551 printk(TPACPI_ERR "unable to create proc entry %s\n",
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008552 ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008553 ret = -ENODEV;
8554 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008555 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008556 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008559 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
8560
Linus Torvalds1da177e2005-04-16 15:20:36 -07008561 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008562
8563err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008564 dbg_printk(TPACPI_DBG_INIT,
8565 "%s: at error exit path with result %d\n",
8566 ibm->name, ret);
8567
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008568 ibm_exit(ibm);
8569 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008570}
8571
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008572/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008574static bool __pure __init tpacpi_is_fw_digit(const char c)
8575{
8576 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
8577}
8578
8579/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8580static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
8581 const char t)
8582{
8583 return s && strlen(s) >= 8 &&
8584 tpacpi_is_fw_digit(s[0]) &&
8585 tpacpi_is_fw_digit(s[1]) &&
8586 s[2] == t && s[3] == 'T' &&
8587 tpacpi_is_fw_digit(s[4]) &&
8588 tpacpi_is_fw_digit(s[5]) &&
8589 s[6] == 'W' && s[7] == 'W';
8590}
8591
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008592/* returns 0 - probe ok, or < 0 - probe error.
8593 * Probe ok doesn't mean thinkpad found.
8594 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8595static int __must_check __init get_thinkpad_model_data(
8596 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008597{
Jeff Garzik18552562007-10-03 15:15:40 -04008598 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008599 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008600 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008601
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008602 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008603 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008604
8605 memset(tp, 0, sizeof(*tp));
8606
8607 if (dmi_name_in_vendors("IBM"))
8608 tp->vendor = PCI_VENDOR_ID_IBM;
8609 else if (dmi_name_in_vendors("LENOVO"))
8610 tp->vendor = PCI_VENDOR_ID_LENOVO;
8611 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008612 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008613
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008614 s = dmi_get_system_info(DMI_BIOS_VERSION);
8615 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
8616 if (s && !tp->bios_version_str)
8617 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008618
8619 /* Really ancient ThinkPad 240X will fail this, which is fine */
8620 if (!tpacpi_is_valid_fw_id(tp->bios_version_str, 'E'))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008621 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008622
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008623 tp->bios_model = tp->bios_version_str[0]
8624 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008625 tp->bios_release = (tp->bios_version_str[4] << 8)
8626 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008627
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008628 /*
8629 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8630 * X32 or newer, all Z series; Some models must have an
8631 * up-to-date BIOS or they will not be detected.
8632 *
8633 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8634 */
8635 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008636 if (sscanf(dev->name,
8637 "IBM ThinkPad Embedded Controller -[%17c",
8638 ec_fw_string) == 1) {
8639 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
8640 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008641
8642 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008643 if (!tp->ec_version_str)
8644 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008645
8646 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
8647 tp->ec_model = ec_fw_string[0]
8648 | (ec_fw_string[1] << 8);
8649 tp->ec_release = (ec_fw_string[4] << 8)
8650 | ec_fw_string[5];
8651 } else {
8652 printk(TPACPI_NOTICE
8653 "ThinkPad firmware release %s "
8654 "doesn't match the known patterns\n",
8655 ec_fw_string);
8656 printk(TPACPI_NOTICE
8657 "please report this to %s\n",
8658 TPACPI_MAIL);
8659 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008660 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008661 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008662 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008663
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008664 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
8665 if (s && !strnicmp(s, "ThinkPad", 8)) {
8666 tp->model_str = kstrdup(s, GFP_KERNEL);
8667 if (!tp->model_str)
8668 return -ENOMEM;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008669 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008670
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008671 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8672 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8673 if (s && !tp->nummodel_str)
8674 return -ENOMEM;
8675
8676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008677}
8678
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008679static int __init probe_for_thinkpad(void)
8680{
8681 int is_thinkpad;
8682
8683 if (acpi_disabled)
8684 return -ENODEV;
8685
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008686 /* It would be dangerous to run the driver in this case */
8687 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8688 return -ENODEV;
8689
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008690 /*
8691 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008692 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008693 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008694 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8695 (thinkpad_id.ec_model != 0) ||
8696 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008697
8698 /* ec is required because many other handles are relative to it */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008699 TPACPI_ACPIHANDLE_INIT(ec);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008700 if (!ec_handle) {
8701 if (is_thinkpad)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008702 printk(TPACPI_ERR
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008703 "Not yet supported ThinkPad detected!\n");
8704 return -ENODEV;
8705 }
8706
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008707 if (!is_thinkpad && !force_load)
8708 return -ENODEV;
8709
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008710 return 0;
8711}
8712
8713
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008714/* Module init, exit, parameters */
8715
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008716static struct ibm_init_struct ibms_init[] __initdata = {
8717 {
8718 .init = thinkpad_acpi_driver_init,
8719 .data = &thinkpad_acpi_driver_data,
8720 },
8721 {
8722 .init = hotkey_init,
8723 .data = &hotkey_driver_data,
8724 },
8725 {
8726 .init = bluetooth_init,
8727 .data = &bluetooth_driver_data,
8728 },
8729 {
8730 .init = wan_init,
8731 .data = &wan_driver_data,
8732 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008733 {
8734 .init = uwb_init,
8735 .data = &uwb_driver_data,
8736 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008737#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008738 {
8739 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008740 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008741 .data = &video_driver_data,
8742 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008743#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008744 {
8745 .init = light_init,
8746 .data = &light_driver_data,
8747 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008748 {
8749 .init = cmos_init,
8750 .data = &cmos_driver_data,
8751 },
8752 {
8753 .init = led_init,
8754 .data = &led_driver_data,
8755 },
8756 {
8757 .init = beep_init,
8758 .data = &beep_driver_data,
8759 },
8760 {
8761 .init = thermal_init,
8762 .data = &thermal_driver_data,
8763 },
8764 {
8765 .data = &ecdump_driver_data,
8766 },
8767 {
8768 .init = brightness_init,
8769 .data = &brightness_driver_data,
8770 },
8771 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008772 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008773 .data = &volume_driver_data,
8774 },
8775 {
8776 .init = fan_init,
8777 .data = &fan_driver_data,
8778 },
8779};
8780
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008781static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8782{
8783 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008784 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008785
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008786 if (!kp || !kp->name || !val)
8787 return -EINVAL;
8788
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008789 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8790 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008791 WARN_ON(ibm == NULL);
8792
8793 if (!ibm || !ibm->name)
8794 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008795
8796 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8797 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008798 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008799 strcpy(ibms_init[i].param, val);
8800 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008801 return 0;
8802 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008803 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008804
8805 return -EINVAL;
8806}
8807
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008808module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008809MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008810 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008811
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008812module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008813MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008814
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008815module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008816MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008817 "Attempts to load the driver even on a "
8818 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008819
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008820module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008821MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008822 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008823
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008824module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008825MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008826 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008827 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008828
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008829module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008830MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008831 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008832
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008833module_param(hotkey_report_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008834MODULE_PARM_DESC(hotkey_report_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008835 "used for backwards compatibility with userspace, "
8836 "see documentation");
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008837
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008838#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008839module_param_named(volume_mode, volume_mode, uint, 0444);
8840MODULE_PARM_DESC(volume_mode,
8841 "Selects volume control strategy: "
8842 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
8843
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02008844module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
8845MODULE_PARM_DESC(volume_capabilities,
8846 "Selects the mixer capabilites: "
8847 "0=auto, 1=volume and mute, 2=mute only");
8848
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02008849module_param_named(volume_control, volume_control_allowed, bool, 0444);
8850MODULE_PARM_DESC(volume_control,
8851 "Enables software override for the console audio "
8852 "control when true");
8853
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008854/* ALSA module API parameters */
8855module_param_named(index, alsa_index, int, 0444);
8856MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
8857module_param_named(id, alsa_id, charp, 0444);
8858MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
8859module_param_named(enable, alsa_enable, bool, 0444);
8860MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008861#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008862
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008863#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008864 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008865 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008866 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008867
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008868TPACPI_PARAM(hotkey);
8869TPACPI_PARAM(bluetooth);
8870TPACPI_PARAM(video);
8871TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008872TPACPI_PARAM(cmos);
8873TPACPI_PARAM(led);
8874TPACPI_PARAM(beep);
8875TPACPI_PARAM(ecdump);
8876TPACPI_PARAM(brightness);
8877TPACPI_PARAM(volume);
8878TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008879
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008880#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008881module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008882MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8883module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8884MODULE_PARM_DESC(wlsw_state,
8885 "Initial state of the emulated WLSW switch");
8886
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008887module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008888MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8889module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8890MODULE_PARM_DESC(bluetooth_state,
8891 "Initial state of the emulated bluetooth switch");
8892
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008893module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008894MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8895module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8896MODULE_PARM_DESC(wwan_state,
8897 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008898
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008899module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008900MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8901module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8902MODULE_PARM_DESC(uwb_state,
8903 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008904#endif
8905
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008906static void thinkpad_acpi_module_exit(void)
8907{
8908 struct ibm_struct *ibm, *itmp;
8909
8910 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8911
8912 list_for_each_entry_safe_reverse(ibm, itmp,
8913 &tpacpi_all_drivers,
8914 all_drivers) {
8915 ibm_exit(ibm);
8916 }
8917
8918 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
8919
8920 if (tpacpi_inputdev) {
8921 if (tp_features.input_device_registered)
8922 input_unregister_device(tpacpi_inputdev);
8923 else
8924 input_free_device(tpacpi_inputdev);
8925 }
8926
8927 if (tpacpi_hwmon)
8928 hwmon_device_unregister(tpacpi_hwmon);
8929
8930 if (tp_features.sensors_pdev_attrs_registered)
8931 device_remove_file(&tpacpi_sensors_pdev->dev,
8932 &dev_attr_thinkpad_acpi_pdev_name);
8933 if (tpacpi_sensors_pdev)
8934 platform_device_unregister(tpacpi_sensors_pdev);
8935 if (tpacpi_pdev)
8936 platform_device_unregister(tpacpi_pdev);
8937
8938 if (tp_features.sensors_pdrv_attrs_registered)
8939 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
8940 if (tp_features.platform_drv_attrs_registered)
8941 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
8942
8943 if (tp_features.sensors_pdrv_registered)
8944 platform_driver_unregister(&tpacpi_hwmon_pdriver);
8945
8946 if (tp_features.platform_drv_registered)
8947 platform_driver_unregister(&tpacpi_pdriver);
8948
8949 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008950 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008951
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008952 if (tpacpi_wq)
8953 destroy_workqueue(tpacpi_wq);
8954
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008955 kfree(thinkpad_id.bios_version_str);
8956 kfree(thinkpad_id.ec_version_str);
8957 kfree(thinkpad_id.model_str);
8958}
8959
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008960
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03008961static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962{
8963 int ret, i;
8964
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03008965 tpacpi_lifecycle = TPACPI_LIFE_INIT;
8966
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03008967 /* Parameter checking */
8968 if (hotkey_report_mode > 2)
8969 return -EINVAL;
8970
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008971 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008972
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008973 ret = get_thinkpad_model_data(&thinkpad_id);
8974 if (ret) {
8975 printk(TPACPI_ERR
8976 "unable to get DMI data: %d\n", ret);
8977 thinkpad_acpi_module_exit();
8978 return ret;
8979 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008980 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008981 if (ret) {
8982 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008983 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008985
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03008986 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008987
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008988 TPACPI_ACPIHANDLE_INIT(ecrd);
8989 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008991 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
8992 if (!tpacpi_wq) {
8993 thinkpad_acpi_module_exit();
8994 return -ENOMEM;
8995 }
8996
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008997 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008998 if (!proc_dir) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008999 printk(TPACPI_ERR
9000 "unable to create proc dir " TPACPI_PROC_DIR);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009001 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009002 return -ENODEV;
9003 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009004
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009005 ret = platform_driver_register(&tpacpi_pdriver);
9006 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009007 printk(TPACPI_ERR
9008 "unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009009 thinkpad_acpi_module_exit();
9010 return ret;
9011 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009012 tp_features.platform_drv_registered = 1;
9013
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009014 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9015 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009016 printk(TPACPI_ERR
9017 "unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009018 thinkpad_acpi_module_exit();
9019 return ret;
9020 }
9021 tp_features.sensors_pdrv_registered = 1;
9022
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009023 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009024 if (!ret) {
9025 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009026 ret = tpacpi_create_driver_attributes(
9027 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009028 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009029 if (ret) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009030 printk(TPACPI_ERR
9031 "unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009032 thinkpad_acpi_module_exit();
9033 return ret;
9034 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009035 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009036
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009037
9038 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009039 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009040 NULL, 0);
9041 if (IS_ERR(tpacpi_pdev)) {
9042 ret = PTR_ERR(tpacpi_pdev);
9043 tpacpi_pdev = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009044 printk(TPACPI_ERR "unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009045 thinkpad_acpi_module_exit();
9046 return ret;
9047 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009048 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009049 TPACPI_HWMON_DRVR_NAME,
9050 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009051 if (IS_ERR(tpacpi_sensors_pdev)) {
9052 ret = PTR_ERR(tpacpi_sensors_pdev);
9053 tpacpi_sensors_pdev = NULL;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009054 printk(TPACPI_ERR
9055 "unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009056 thinkpad_acpi_module_exit();
9057 return ret;
9058 }
9059 ret = device_create_file(&tpacpi_sensors_pdev->dev,
9060 &dev_attr_thinkpad_acpi_pdev_name);
9061 if (ret) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009062 printk(TPACPI_ERR
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009063 "unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009064 thinkpad_acpi_module_exit();
9065 return ret;
9066 }
9067 tp_features.sensors_pdev_attrs_registered = 1;
9068 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009069 if (IS_ERR(tpacpi_hwmon)) {
9070 ret = PTR_ERR(tpacpi_hwmon);
9071 tpacpi_hwmon = NULL;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009072 printk(TPACPI_ERR "unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009073 thinkpad_acpi_module_exit();
9074 return ret;
9075 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009076 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009077 tpacpi_inputdev = input_allocate_device();
9078 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009079 printk(TPACPI_ERR "unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009080 thinkpad_acpi_module_exit();
9081 return -ENOMEM;
9082 } else {
9083 /* Prepare input device, but don't register */
9084 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009085 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009086 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009087 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009088 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9089 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009090 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009091 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009092 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9093 ret = ibm_init(&ibms_init[i]);
9094 if (ret >= 0 && *ibms_init[i].param)
9095 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009096 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009097 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009098 return ret;
9099 }
9100 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009101
9102 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9103
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009104 ret = input_register_device(tpacpi_inputdev);
9105 if (ret < 0) {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009106 printk(TPACPI_ERR "unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009107 thinkpad_acpi_module_exit();
9108 return ret;
9109 } else {
9110 tp_features.input_device_registered = 1;
9111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009112
9113 return 0;
9114}
9115
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009116MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9117
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009118/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009119 * This will autoload the driver in almost every ThinkPad
9120 * in widespread use.
9121 *
9122 * Only _VERY_ old models, like the 240, 240x and 570 lack
9123 * the HKEY event interface.
9124 */
9125MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9126
9127/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009128 * DMI matching for module autoloading
9129 *
9130 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9131 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9132 *
9133 * Only models listed in thinkwiki will be supported, so add yours
9134 * if it is not there yet.
9135 */
9136#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009137 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009138
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009139/* Ancient thinkpad BIOSes have to be identified by
9140 * BIOS type or model number, and there are far less
9141 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009142IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009143
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009144MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9145MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009146MODULE_DESCRIPTION(TPACPI_DESC);
9147MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009148MODULE_LICENSE("GPL");
9149
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009150module_init(thinkpad_acpi_module_init);
9151module_exit(thinkpad_acpi_module_exit);