blob: d0f2a5330096afeda57360d75e1baba6aaf7f642 [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
Joe Perches0978e012011-04-04 10:06:25 -070024#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25
David Henningsson420f9732013-10-16 23:10:31 +020026#define TPACPI_VERSION "0.25"
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -020027#define TPACPI_SYSFS_VERSION 0x020700
Borislav Deianov78f81cc2005-08-17 00:00:00 -040028
29/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * Changelog:
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020031 * 2007-10-20 changelog trimmed down
32 *
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030033 * 2007-03-27 0.14 renamed to thinkpad_acpi and moved to
34 * drivers/misc.
Henrique de Moraes Holschuhf9ff43a2006-11-25 16:37:38 -020035 *
36 * 2006-11-22 0.13 new maintainer
37 * changelog now lives in git commit history, and will
38 * not be updated further in-file.
Henrique de Moraes Holschuh837ca6d2007-03-23 17:33:54 -030039 *
Borislav Deianov78f81cc2005-08-17 00:00:00 -040040 * 2005-03-17 0.11 support for 600e, 770x
41 * thanks to Jamie Lentin <lentinj@dial.pipex.com>
Henrique de Moraes Holschuh4b45cc02008-01-08 13:02:46 -020042 *
43 * 2005-01-16 0.9 use MODULE_VERSION
Borislav Deianov78f81cc2005-08-17 00:00:00 -040044 * thanks to Henrik Brix Andersen <brix@gentoo.org>
45 * fix parameter passing on module loading
46 * thanks to Rusty Russell <rusty@rustcorp.com.au>
47 * thanks to Jim Radford <radford@blackbean.org>
48 * 2004-11-08 0.8 fix init error case, don't return from a macro
49 * thanks to Chris Wright <chrisw@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
51
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020052#include <linux/kernel.h>
53#include <linux/module.h>
54#include <linux/init.h>
55#include <linux/types.h>
56#include <linux/string.h>
57#include <linux/list.h>
58#include <linux/mutex.h>
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +000059#include <linux/sched.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020060#include <linux/kthread.h>
61#include <linux/freezer.h>
62#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020064#include <linux/nvram.h>
65#include <linux/proc_fs.h>
Alexey Dobriyan887965e2009-12-15 21:51:12 -020066#include <linux/seq_file.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020067#include <linux/sysfs.h>
68#include <linux/backlight.h>
69#include <linux/fb.h>
70#include <linux/platform_device.h>
71#include <linux/hwmon.h>
72#include <linux/hwmon-sysfs.h>
73#include <linux/input.h>
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030074#include <linux/leds.h>
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -030075#include <linux/rfkill.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020076#include <linux/dmi.h>
77#include <linux/jiffies.h>
78#include <linux/workqueue.h>
Lv Zheng8b484632013-12-03 08:49:16 +080079#include <linux/acpi.h>
80#include <linux/pci_ids.h>
81#include <linux/thinkpad_acpi.h>
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -020082#include <sound/core.h>
83#include <sound/control.h>
84#include <sound/initval.h>
Lv Zheng8b484632013-12-03 08:49:16 +080085#include <asm/uaccess.h>
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020086
87/* ThinkPad CMOS commands */
88#define TP_CMOS_VOLUME_DOWN 0
89#define TP_CMOS_VOLUME_UP 1
90#define TP_CMOS_VOLUME_MUTE 2
91#define TP_CMOS_BRIGHTNESS_UP 4
92#define TP_CMOS_BRIGHTNESS_DOWN 5
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -030093#define TP_CMOS_THINKLIGHT_ON 12
94#define TP_CMOS_THINKLIGHT_OFF 13
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -020095
96/* NVRAM Addresses */
97enum tp_nvram_addr {
98 TP_NVRAM_ADDR_HK2 = 0x57,
99 TP_NVRAM_ADDR_THINKLIGHT = 0x58,
100 TP_NVRAM_ADDR_VIDEO = 0x59,
101 TP_NVRAM_ADDR_BRIGHTNESS = 0x5e,
102 TP_NVRAM_ADDR_MIXER = 0x60,
103};
104
105/* NVRAM bit masks */
106enum {
107 TP_NVRAM_MASK_HKT_THINKPAD = 0x08,
108 TP_NVRAM_MASK_HKT_ZOOM = 0x20,
109 TP_NVRAM_MASK_HKT_DISPLAY = 0x40,
110 TP_NVRAM_MASK_HKT_HIBERNATE = 0x80,
111 TP_NVRAM_MASK_THINKLIGHT = 0x10,
112 TP_NVRAM_MASK_HKT_DISPEXPND = 0x30,
113 TP_NVRAM_MASK_HKT_BRIGHTNESS = 0x20,
114 TP_NVRAM_MASK_LEVEL_BRIGHTNESS = 0x0f,
115 TP_NVRAM_POS_LEVEL_BRIGHTNESS = 0,
116 TP_NVRAM_MASK_MUTE = 0x40,
117 TP_NVRAM_MASK_HKT_VOLUME = 0x80,
118 TP_NVRAM_MASK_LEVEL_VOLUME = 0x0f,
119 TP_NVRAM_POS_LEVEL_VOLUME = 0,
120};
121
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -0300122/* Misc NVRAM-related */
123enum {
124 TP_NVRAM_LEVEL_VOLUME_MAX = 14,
125};
126
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200127/* ACPI HIDs */
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -0400128#define TPACPI_ACPI_IBM_HKEY_HID "IBM0068"
129#define TPACPI_ACPI_LENOVO_HKEY_HID "LEN0068"
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300130#define TPACPI_ACPI_EC_HID "PNP0C09"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200131
132/* Input IDs */
133#define TPACPI_HKEY_INPUT_PRODUCT 0x5054 /* "TP" */
134#define TPACPI_HKEY_INPUT_VERSION 0x4101
135
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -0200136/* ACPI \WGSV commands */
137enum {
138 TP_ACPI_WGSV_GET_STATE = 0x01, /* Get state information */
139 TP_ACPI_WGSV_PWR_ON_ON_RESUME = 0x02, /* Resume WWAN powered on */
140 TP_ACPI_WGSV_PWR_OFF_ON_RESUME = 0x03, /* Resume WWAN powered off */
141 TP_ACPI_WGSV_SAVE_STATE = 0x04, /* Save state for S4/S5 */
142};
143
144/* TP_ACPI_WGSV_GET_STATE bits */
145enum {
146 TP_ACPI_WGSV_STATE_WWANEXIST = 0x0001, /* WWAN hw available */
147 TP_ACPI_WGSV_STATE_WWANPWR = 0x0002, /* WWAN radio enabled */
148 TP_ACPI_WGSV_STATE_WWANPWRRES = 0x0004, /* WWAN state at resume */
149 TP_ACPI_WGSV_STATE_WWANBIOSOFF = 0x0008, /* WWAN disabled in BIOS */
150 TP_ACPI_WGSV_STATE_BLTHEXIST = 0x0001, /* BLTH hw available */
151 TP_ACPI_WGSV_STATE_BLTHPWR = 0x0002, /* BLTH radio enabled */
152 TP_ACPI_WGSV_STATE_BLTHPWRRES = 0x0004, /* BLTH state at resume */
153 TP_ACPI_WGSV_STATE_BLTHBIOSOFF = 0x0008, /* BLTH disabled in BIOS */
154 TP_ACPI_WGSV_STATE_UWBEXIST = 0x0010, /* UWB hw available */
155 TP_ACPI_WGSV_STATE_UWBPWR = 0x0020, /* UWB radio enabled */
156};
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200157
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300158/* HKEY events */
159enum tpacpi_hkey_event_t {
160 /* Hotkey-related */
161 TP_HKEY_EV_HOTKEY_BASE = 0x1001, /* first hotkey (FN+F1) */
162 TP_HKEY_EV_BRGHT_UP = 0x1010, /* Brightness up */
163 TP_HKEY_EV_BRGHT_DOWN = 0x1011, /* Brightness down */
164 TP_HKEY_EV_VOL_UP = 0x1015, /* Volume up or unmute */
165 TP_HKEY_EV_VOL_DOWN = 0x1016, /* Volume down or unmute */
166 TP_HKEY_EV_VOL_MUTE = 0x1017, /* Mixer output mute */
167
168 /* Reasons for waking up from S3/S4 */
169 TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304, /* undock requested, S3 */
170 TP_HKEY_EV_WKUP_S4_UNDOCK = 0x2404, /* undock requested, S4 */
171 TP_HKEY_EV_WKUP_S3_BAYEJ = 0x2305, /* bay ejection req, S3 */
172 TP_HKEY_EV_WKUP_S4_BAYEJ = 0x2405, /* bay ejection req, S4 */
173 TP_HKEY_EV_WKUP_S3_BATLOW = 0x2313, /* battery empty, S3 */
174 TP_HKEY_EV_WKUP_S4_BATLOW = 0x2413, /* battery empty, S4 */
175
176 /* Auto-sleep after eject request */
177 TP_HKEY_EV_BAYEJ_ACK = 0x3003, /* bay ejection complete */
178 TP_HKEY_EV_UNDOCK_ACK = 0x4003, /* undock complete */
179
180 /* Misc bay events */
181 TP_HKEY_EV_OPTDRV_EJ = 0x3006, /* opt. drive tray ejected */
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -0300182 TP_HKEY_EV_HOTPLUG_DOCK = 0x4010, /* docked into hotplug dock
183 or port replicator */
184 TP_HKEY_EV_HOTPLUG_UNDOCK = 0x4011, /* undocked from hotplug
185 dock or port replicator */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300186
187 /* User-interface events */
188 TP_HKEY_EV_LID_CLOSE = 0x5001, /* laptop lid closed */
189 TP_HKEY_EV_LID_OPEN = 0x5002, /* laptop lid opened */
190 TP_HKEY_EV_TABLET_TABLET = 0x5009, /* tablet swivel up */
191 TP_HKEY_EV_TABLET_NOTEBOOK = 0x500a, /* tablet swivel down */
192 TP_HKEY_EV_PEN_INSERTED = 0x500b, /* tablet pen inserted */
193 TP_HKEY_EV_PEN_REMOVED = 0x500c, /* tablet pen removed */
194 TP_HKEY_EV_BRGHT_CHANGED = 0x5010, /* backlight control event */
195
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300196 /* Key-related user-interface events */
197 TP_HKEY_EV_KEY_NUMLOCK = 0x6000, /* NumLock key pressed */
198 TP_HKEY_EV_KEY_FN = 0x6005, /* Fn key pressed? E420 */
199
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300200 /* Thermal events */
201 TP_HKEY_EV_ALARM_BAT_HOT = 0x6011, /* battery too hot */
202 TP_HKEY_EV_ALARM_BAT_XHOT = 0x6012, /* battery critically hot */
203 TP_HKEY_EV_ALARM_SENSOR_HOT = 0x6021, /* sensor too hot */
204 TP_HKEY_EV_ALARM_SENSOR_XHOT = 0x6022, /* sensor critically hot */
205 TP_HKEY_EV_THM_TABLE_CHANGED = 0x6030, /* thermal table changed */
206
Richard Hartmann6f62bc32012-12-29 22:51:49 +0100207 /* AC-related events */
208 TP_HKEY_EV_AC_CHANGED = 0x6040, /* AC status changed */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -0300209
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -0300210 /* Misc */
211 TP_HKEY_EV_RFKILL_CHANGED = 0x7000, /* rfkill switch changed */
212};
213
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200214/****************************************************************************
215 * Main driver
216 */
217
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200218#define TPACPI_NAME "thinkpad"
219#define TPACPI_DESC "ThinkPad ACPI Extras"
220#define TPACPI_FILE TPACPI_NAME "_acpi"
221#define TPACPI_URL "http://ibm-acpi.sf.net/"
222#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200223
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200224#define TPACPI_PROC_DIR "ibm"
225#define TPACPI_ACPI_EVENT_PREFIX "ibm"
226#define TPACPI_DRVR_NAME TPACPI_FILE
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300227#define TPACPI_DRVR_SHORTNAME "tpacpi"
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200228#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200229
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300230#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300231#define TPACPI_WORKQUEUE_NAME "ktpacpid"
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -0300232
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200233#define TPACPI_MAX_ACPI_ARGS 3
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200234
Henrique de Moraes Holschuh7ff8d622009-04-04 04:25:46 +0000235/* Debugging printk groups */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200236#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000237#define TPACPI_DBG_DISCLOSETASK 0x8000
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200238#define TPACPI_DBG_INIT 0x0001
239#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +0000240#define TPACPI_DBG_RFKILL 0x0004
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +0000241#define TPACPI_DBG_HKEY 0x0008
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +0000242#define TPACPI_DBG_FAN 0x0010
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +0000243#define TPACPI_DBG_BRGHT 0x0020
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -0200244#define TPACPI_DBG_MIXER 0x0040
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200245
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200246#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
247#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
248#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200249
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200250
251/****************************************************************************
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200252 * Driver-wide structs and misc. variables
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200253 */
254
255struct ibm_struct;
256
257struct tp_acpi_drv_struct {
258 const struct acpi_device_id *hid;
259 struct acpi_driver *driver;
260
261 void (*notify) (struct ibm_struct *, u32);
262 acpi_handle *handle;
263 u32 type;
264 struct acpi_device *device;
265};
266
267struct ibm_struct {
268 char *name;
269
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200270 int (*read) (struct seq_file *);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200271 int (*write) (char *);
272 void (*exit) (void);
273 void (*resume) (void);
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200274 void (*suspend) (void);
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200275 void (*shutdown) (void);
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200276
277 struct list_head all_drivers;
278
279 struct tp_acpi_drv_struct *acpi;
280
281 struct {
282 u8 acpi_driver_registered:1;
283 u8 acpi_notify_installed:1;
284 u8 proc_created:1;
285 u8 init_called:1;
286 u8 experimental:1;
287 } flags;
288};
289
290struct ibm_init_struct {
291 char param[32];
292
293 int (*init) (struct ibm_init_struct *);
Al Virod161a132011-07-24 03:36:29 -0400294 umode_t base_procfs_mode;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200295 struct ibm_struct *data;
296};
297
298static struct {
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200299 u32 bluetooth:1;
300 u32 hotkey:1;
301 u32 hotkey_mask:1;
302 u32 hotkey_wlsw:1;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -0200303 u32 hotkey_tablet:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200304 u32 light:1;
305 u32 light_status:1;
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -0300306 u32 bright_acpimode:1;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300307 u32 bright_unkfw:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200308 u32 wan:1;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200309 u32 uwb:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200310 u32 fan_ctrl_status_undef:1;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -0300311 u32 second_fan:1;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -0300312 u32 beep_needs_two_args:1;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200313 u32 mixer_no_level_control:1;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200314 u32 input_device_registered:1;
315 u32 platform_drv_registered:1;
316 u32 platform_drv_attrs_registered:1;
317 u32 sensors_pdrv_registered:1;
318 u32 sensors_pdrv_attrs_registered:1;
319 u32 sensors_pdev_attrs_registered:1;
320 u32 hotkey_poll_active:1;
321} tp_features;
322
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300323static struct {
324 u16 hotkey_mask_ff:1;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -0200325 u16 volume_ctrl_forbidden:1;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -0300326} tp_warned;
327
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200328struct thinkpad_id_data {
329 unsigned int vendor; /* ThinkPad vendor:
330 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
331
332 char *bios_version_str; /* Something like 1ZET51WW (1.03z) */
333 char *ec_version_str; /* Something like 1ZHT51WW-1.04a */
334
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300335 u16 bios_model; /* 1Y = 0x5931, 0 = unknown */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200336 u16 ec_model;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -0300337 u16 bios_release; /* 1ZETK1WW = 0x314b, 0 = unknown */
338 u16 ec_release;
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200339
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -0300340 char *model_str; /* ThinkPad T43 */
341 char *nummodel_str; /* 9384A9C for a 9384-A9C model */
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200342};
Henrique de Moraes Holschuh0c780392008-01-08 13:02:43 -0200343static struct thinkpad_id_data thinkpad_id;
344
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300345static enum {
346 TPACPI_LIFE_INIT = 0,
347 TPACPI_LIFE_RUNNING,
348 TPACPI_LIFE_EXITING,
349} tpacpi_lifecycle;
350
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200351static int experimental;
352static u32 dbg_level;
353
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -0300354static struct workqueue_struct *tpacpi_wq;
355
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000356enum led_status_t {
357 TPACPI_LED_OFF = 0,
358 TPACPI_LED_ON,
359 TPACPI_LED_BLINK,
360};
361
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300362/* Special LED class that can defer work */
363struct tpacpi_led_classdev {
364 struct led_classdev led_classdev;
365 struct work_struct work;
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +0000366 enum led_status_t new_state;
Adam Leeedf2d772013-06-08 16:51:15 +0800367 int led;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -0300368};
369
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -0300370/* brightness level capabilities */
371static unsigned int bright_maxlvl; /* 0 = unknown */
372
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200373#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
374static int dbg_wlswemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030375static bool tpacpi_wlsw_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200376static int dbg_bluetoothemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030377static bool tpacpi_bluetooth_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200378static int dbg_wwanemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030379static bool tpacpi_wwan_emulstate;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -0200380static int dbg_uwbemul;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030381static bool tpacpi_uwb_emulstate;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -0200382#endif
383
384
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000385/*************************************************************************
386 * Debugging helpers
387 */
388
Joe Perches0978e012011-04-04 10:06:25 -0700389#define dbg_printk(a_dbg_level, format, arg...) \
390do { \
391 if (dbg_level & (a_dbg_level)) \
392 printk(KERN_DEBUG pr_fmt("%s: " format), \
393 __func__, ##arg); \
394} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000395
396#ifdef CONFIG_THINKPAD_ACPI_DEBUG
397#define vdbg_printk dbg_printk
398static const char *str_supported(int is_supported);
399#else
Joe Perches0978e012011-04-04 10:06:25 -0700400static inline const char *str_supported(int is_supported) { return ""; }
401#define vdbg_printk(a_dbg_level, format, arg...) \
402 no_printk(format, ##arg)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000403#endif
404
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000405static void tpacpi_log_usertask(const char * const what)
406{
Joe Perches0978e012011-04-04 10:06:25 -0700407 printk(KERN_DEBUG pr_fmt("%s: access by process with PID %d\n"),
408 what, task_tgid_vnr(current));
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +0000409}
410
Joe Perches0978e012011-04-04 10:06:25 -0700411#define tpacpi_disclose_usertask(what, format, arg...) \
412do { \
413 if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) && \
414 (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) { \
415 printk(KERN_DEBUG pr_fmt("%s: PID %d: " format), \
416 what, task_tgid_vnr(current), ## arg); \
417 } \
418} while (0)
Henrique de Moraes Holschuh3dcc2c32009-04-04 04:25:45 +0000419
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300420/*
421 * Quirk handling helpers
422 *
423 * ThinkPad IDs and versions seen in the field so far
424 * are two-characters from the set [0-9A-Z], i.e. base 36.
425 *
426 * We use values well outside that range as specials.
427 */
428
429#define TPACPI_MATCH_ANY 0xffffU
430#define TPACPI_MATCH_UNKNOWN 0U
431
432/* TPID('1', 'Y') == 0x5931 */
433#define TPID(__c1, __c2) (((__c2) << 8) | (__c1))
434
435#define TPACPI_Q_IBM(__id1, __id2, __quirk) \
436 { .vendor = PCI_VENDOR_ID_IBM, \
437 .bios = TPID(__id1, __id2), \
438 .ec = TPACPI_MATCH_ANY, \
439 .quirks = (__quirk) }
440
441#define TPACPI_Q_LNV(__id1, __id2, __quirk) \
442 { .vendor = PCI_VENDOR_ID_LENOVO, \
443 .bios = TPID(__id1, __id2), \
444 .ec = TPACPI_MATCH_ANY, \
445 .quirks = (__quirk) }
446
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -0200447#define TPACPI_QEC_LNV(__id1, __id2, __quirk) \
448 { .vendor = PCI_VENDOR_ID_LENOVO, \
449 .bios = TPACPI_MATCH_ANY, \
450 .ec = TPID(__id1, __id2), \
451 .quirks = (__quirk) }
452
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300453struct tpacpi_quirk {
454 unsigned int vendor;
455 u16 bios;
456 u16 ec;
457 unsigned long quirks;
458};
459
460/**
461 * tpacpi_check_quirks() - search BIOS/EC version on a list
462 * @qlist: array of &struct tpacpi_quirk
463 * @qlist_size: number of elements in @qlist
464 *
465 * Iterates over a quirks list until one is found that matches the
466 * ThinkPad's vendor, BIOS and EC model.
467 *
468 * Returns 0 if nothing matches, otherwise returns the quirks field of
469 * the matching &struct tpacpi_quirk entry.
470 *
471 * The match criteria is: vendor, ec and bios much match.
472 */
473static unsigned long __init tpacpi_check_quirks(
474 const struct tpacpi_quirk *qlist,
475 unsigned int qlist_size)
476{
477 while (qlist_size) {
478 if ((qlist->vendor == thinkpad_id.vendor ||
479 qlist->vendor == TPACPI_MATCH_ANY) &&
480 (qlist->bios == thinkpad_id.bios_model ||
481 qlist->bios == TPACPI_MATCH_ANY) &&
482 (qlist->ec == thinkpad_id.ec_model ||
483 qlist->ec == TPACPI_MATCH_ANY))
484 return qlist->quirks;
485
486 qlist_size--;
487 qlist++;
488 }
489 return 0;
490}
491
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -0300492static inline bool __pure __init tpacpi_is_lenovo(void)
493{
494 return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
495}
496
497static inline bool __pure __init tpacpi_is_ibm(void)
498{
499 return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
500}
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -0300501
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300502/****************************************************************************
503 ****************************************************************************
504 *
505 * ACPI Helpers and device model
506 *
507 ****************************************************************************
508 ****************************************************************************/
509
510/*************************************************************************
511 * ACPI basic handles
512 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300514static acpi_handle root_handle;
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300515static acpi_handle ec_handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200517#define TPACPI_HANDLE(object, parent, paths...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 static acpi_handle object##_handle; \
Andi Kleen3bd01892012-10-04 17:12:01 -0700519 static const acpi_handle * const object##_parent __initconst = \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300520 &parent##_handle; \
521 static char *object##_paths[] __initdata = { paths }
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 Holschuh56b6aeb2007-03-23 17:33:57 -0300537/*************************************************************************
538 * ACPI helpers
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -0200539 */
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541static int acpi_evalf(acpi_handle handle,
Dan Carpentereceeb432012-09-01 12:54:07 -0700542 int *res, char *method, char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 char *fmt0 = fmt;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400545 struct acpi_object_list params;
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200546 union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400547 struct acpi_buffer result, *resultp;
548 union acpi_object out_obj;
549 acpi_status status;
550 va_list ap;
551 char res_type;
552 int success;
553 int quiet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if (!*fmt) {
Joe Perches0978e012011-04-04 10:06:25 -0700556 pr_err("acpi_evalf() called with empty format\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return 0;
558 }
559
560 if (*fmt == 'q') {
561 quiet = 1;
562 fmt++;
563 } else
564 quiet = 0;
565
566 res_type = *(fmt++);
567
568 params.count = 0;
569 params.pointer = &in_objs[0];
570
571 va_start(ap, fmt);
572 while (*fmt) {
573 char c = *(fmt++);
574 switch (c) {
575 case 'd': /* int */
576 in_objs[params.count].integer.value = va_arg(ap, int);
577 in_objs[params.count++].type = ACPI_TYPE_INTEGER;
578 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400579 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 default:
Joe Perches0978e012011-04-04 10:06:25 -0700581 pr_err("acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 "with invalid format character '%c'\n", c);
Jesper Juhl21365852010-12-24 19:56:28 +0100583 va_end(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return 0;
585 }
586 }
587 va_end(ap);
588
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400589 if (res_type != 'v') {
590 result.length = sizeof(out_obj);
591 result.pointer = &out_obj;
592 resultp = &result;
593 } else
594 resultp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400596 status = acpi_evaluate_object(handle, method, &params, resultp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 switch (res_type) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400599 case 'd': /* int */
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300600 success = (status == AE_OK &&
601 out_obj.type == ACPI_TYPE_INTEGER);
602 if (success && res)
Dan Carpentereceeb432012-09-01 12:54:07 -0700603 *res = out_obj.integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400605 case 'v': /* void */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 success = status == AE_OK;
607 break;
Borislav Deianov78f81cc2005-08-17 00:00:00 -0400608 /* add more types as needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 default:
Joe Perches0978e012011-04-04 10:06:25 -0700610 pr_err("acpi_evalf() called "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 "with invalid format character '%c'\n", res_type);
612 return 0;
613 }
614
615 if (!success && !quiet)
Joe Perches0978e012011-04-04 10:06:25 -0700616 pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
Henrique de Moraes Holschuh263f4a32010-05-16 19:45:45 -0300617 method, fmt0, acpi_format_exception(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 return success;
620}
621
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200622static int acpi_ec_read(int i, u8 *p)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300623{
624 int v;
625
626 if (ecrd_handle) {
627 if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
628 return 0;
629 *p = v;
630 } else {
631 if (ec_read(i, p) < 0)
632 return 0;
633 }
634
635 return 1;
636}
637
638static int acpi_ec_write(int i, u8 v)
639{
640 if (ecwr_handle) {
641 if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
642 return 0;
643 } else {
644 if (ec_write(i, v) < 0)
645 return 0;
646 }
647
648 return 1;
649}
650
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -0300651static int issue_thinkpad_cmos_command(int cmos_cmd)
652{
653 if (!cmos_handle)
654 return -ENXIO;
655
656 if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
657 return -EIO;
658
659 return 0;
660}
661
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300662/*************************************************************************
663 * ACPI device model
664 */
665
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -0200666#define TPACPI_ACPIHANDLE_INIT(object) \
667 drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300668 object##_paths, ARRAY_SIZE(object##_paths))
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -0200669
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300670static void __init drv_acpi_handle_init(const char *name,
671 acpi_handle *handle, const acpi_handle parent,
672 char **paths, const int num_paths)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300673{
674 int i;
675 acpi_status status;
676
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300677 vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
678 name);
679
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300680 for (i = 0; i < num_paths; i++) {
681 status = acpi_get_handle(parent, paths[i], handle);
682 if (ACPI_SUCCESS(status)) {
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300683 dbg_printk(TPACPI_DBG_INIT,
684 "Found ACPI handle %s for %s\n",
Henrique de Moraes Holschuhef07a5ab2010-05-16 19:45:54 -0300685 paths[i], name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300686 return;
687 }
688 }
689
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300690 vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
691 name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300692 *handle = NULL;
693}
694
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300695static acpi_status __init tpacpi_acpi_handle_locate_callback(acpi_handle handle,
696 u32 level, void *context, void **return_value)
697{
Aaron Lu46445b62013-10-11 21:27:46 +0800698 struct acpi_device *dev;
699 if (!strcmp(context, "video")) {
700 if (acpi_bus_get_device(handle, &dev))
701 return AE_OK;
702 if (strcmp(ACPI_VIDEO_HID, acpi_device_hid(dev)))
703 return AE_OK;
704 }
705
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300706 *(acpi_handle *)return_value = handle;
707
708 return AE_CTRL_TERMINATE;
709}
710
711static void __init tpacpi_acpi_handle_locate(const char *name,
712 const char *hid,
713 acpi_handle *handle)
714{
715 acpi_status status;
716 acpi_handle device_found;
717
Aaron Lu46445b62013-10-11 21:27:46 +0800718 BUG_ON(!name || !handle);
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300719 vdbg_printk(TPACPI_DBG_INIT,
720 "trying to locate ACPI handle for %s, using HID %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +0800721 name, hid ? hid : "NULL");
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -0300722
723 memset(&device_found, 0, sizeof(device_found));
724 status = acpi_get_devices(hid, tpacpi_acpi_handle_locate_callback,
725 (void *)name, &device_found);
726
727 *handle = NULL;
728
729 if (ACPI_SUCCESS(status)) {
730 *handle = device_found;
731 dbg_printk(TPACPI_DBG_INIT,
732 "Found ACPI handle for %s\n", name);
733 } else {
734 vdbg_printk(TPACPI_DBG_INIT,
735 "Could not locate an ACPI handle for %s: %s\n",
736 name, acpi_format_exception(status));
737 }
738}
739
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300740static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300741{
742 struct ibm_struct *ibm = data;
743
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -0300744 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
745 return;
746
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300747 if (!ibm || !ibm->acpi || !ibm->acpi->notify)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300748 return;
749
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300750 ibm->acpi->notify(ibm, event);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300751}
752
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300753static int __init setup_acpi_notify(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300754{
755 acpi_status status;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300756 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300757
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300758 BUG_ON(!ibm->acpi);
759
760 if (!*ibm->acpi->handle)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300761 return 0;
762
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300763 vdbg_printk(TPACPI_DBG_INIT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300764 "setting up ACPI notify for %s\n", ibm->name);
765
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300766 rc = acpi_bus_get_device(*ibm->acpi->handle, &ibm->acpi->device);
767 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700768 pr_err("acpi_bus_get_device(%s) failed: %d\n", ibm->name, rc);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300769 return -ENODEV;
770 }
771
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700772 ibm->acpi->device->driver_data = ibm;
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300773 sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200774 TPACPI_ACPI_EVENT_PREFIX,
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300775 ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300776
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300777 status = acpi_install_notify_handler(*ibm->acpi->handle,
778 ibm->acpi->type, dispatch_acpi_notify, ibm);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300779 if (ACPI_FAILURE(status)) {
780 if (status == AE_ALREADY_EXISTS) {
Joe Perches0978e012011-04-04 10:06:25 -0700781 pr_notice("another device driver is already "
782 "handling %s events\n", ibm->name);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300783 } else {
Joe Perches0978e012011-04-04 10:06:25 -0700784 pr_err("acpi_install_notify_handler(%s) failed: %s\n",
Henrique de Moraes Holschuh72f19922010-05-16 19:45:48 -0300785 ibm->name, acpi_format_exception(status));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300786 }
787 return -ENODEV;
788 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300789 ibm->flags.acpi_notify_installed = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300790 return 0;
791}
792
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300793static int __init tpacpi_device_add(struct acpi_device *device)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300794{
795 return 0;
796}
797
Henrique de Moraes Holschuh67001212007-04-21 11:08:25 -0300798static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300799{
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300800 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300801
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -0300802 dbg_printk(TPACPI_DBG_INIT,
803 "registering %s as an ACPI driver\n", ibm->name);
804
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300805 BUG_ON(!ibm->acpi);
806
807 ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
808 if (!ibm->acpi->driver) {
Joe Perches0978e012011-04-04 10:06:25 -0700809 pr_err("failed to allocate memory for ibm->acpi->driver\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300810 return -ENOMEM;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300811 }
812
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200813 sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300814 ibm->acpi->driver->ids = ibm->acpi->hid;
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200815
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300816 ibm->acpi->driver->ops.add = &tpacpi_device_add;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300817
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300818 rc = acpi_bus_register_driver(ibm->acpi->driver);
819 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -0700820 pr_err("acpi_bus_register_driver(%s) failed: %d\n",
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200821 ibm->name, rc);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300822 kfree(ibm->acpi->driver);
823 ibm->acpi->driver = NULL;
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300824 } else if (!rc)
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -0300825 ibm->flags.acpi_driver_registered = 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300826
Henrique de Moraes Holschuh5ae930e2007-04-27 22:00:14 -0300827 return rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300828}
829
830
831/****************************************************************************
832 ****************************************************************************
833 *
834 * Procfs Helpers
835 *
836 ****************************************************************************
837 ****************************************************************************/
838
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200839static int dispatch_proc_show(struct seq_file *m, void *v)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300840{
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200841 struct ibm_struct *ibm = m->private;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300842
843 if (!ibm || !ibm->read)
844 return -EINVAL;
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200845 return ibm->read(m);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300846}
847
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200848static int dispatch_proc_open(struct inode *inode, struct file *file)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300849{
Al Virod9dda782013-03-31 18:16:14 -0400850 return single_open(file, dispatch_proc_show, PDE_DATA(inode));
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200851}
852
853static ssize_t dispatch_proc_write(struct file *file,
854 const char __user *userbuf,
855 size_t count, loff_t *pos)
856{
Al Virod9dda782013-03-31 18:16:14 -0400857 struct ibm_struct *ibm = PDE_DATA(file_inode(file));
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300858 char *kernbuf;
859 int ret;
860
861 if (!ibm || !ibm->write)
862 return -EINVAL;
Michael Buesch5b05d462009-08-01 12:04:19 -0300863 if (count > PAGE_SIZE - 2)
864 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300865
866 kernbuf = kmalloc(count + 2, GFP_KERNEL);
867 if (!kernbuf)
868 return -ENOMEM;
869
870 if (copy_from_user(kernbuf, userbuf, count)) {
871 kfree(kernbuf);
872 return -EFAULT;
873 }
874
875 kernbuf[count] = 0;
876 strcat(kernbuf, ",");
877 ret = ibm->write(kernbuf);
878 if (ret == 0)
879 ret = count;
880
881 kfree(kernbuf);
882
883 return ret;
884}
885
Alexey Dobriyan887965e2009-12-15 21:51:12 -0200886static const struct file_operations dispatch_proc_fops = {
887 .owner = THIS_MODULE,
888 .open = dispatch_proc_open,
889 .read = seq_read,
890 .llseek = seq_lseek,
891 .release = single_release,
892 .write = dispatch_proc_write,
893};
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895static char *next_cmd(char **cmds)
896{
897 char *start = *cmds;
898 char *end;
899
900 while ((end = strchr(start, ',')) && end == start)
901 start = end + 1;
902
903 if (!end)
904 return NULL;
905
906 *end = 0;
907 *cmds = end + 1;
908 return start;
909}
910
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -0300911
912/****************************************************************************
913 ****************************************************************************
914 *
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300915 * Device model: input, hwmon and platform
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300916 *
917 ****************************************************************************
918 ****************************************************************************/
919
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -0300920static struct platform_device *tpacpi_pdev;
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300921static struct platform_device *tpacpi_sensors_pdev;
Tony Jones1beeffe2007-08-20 13:46:20 -0700922static struct device *tpacpi_hwmon;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -0300923static struct input_dev *tpacpi_inputdev;
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -0300924static struct mutex tpacpi_inputdev_send_mutex;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200925static LIST_HEAD(tpacpi_all_drivers);
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300926
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200927#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200928static int tpacpi_suspend_handler(struct device *dev)
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200929{
930 struct ibm_struct *ibm, *itmp;
931
932 list_for_each_entry_safe(ibm, itmp,
933 &tpacpi_all_drivers,
934 all_drivers) {
935 if (ibm->suspend)
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +0200936 (ibm->suspend)();
Henrique de Moraes Holschuh083f1762008-01-08 13:02:50 -0200937 }
938
939 return 0;
940}
941
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200942static int tpacpi_resume_handler(struct device *dev)
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300943{
944 struct ibm_struct *ibm, *itmp;
945
946 list_for_each_entry_safe(ibm, itmp,
947 &tpacpi_all_drivers,
948 all_drivers) {
949 if (ibm->resume)
950 (ibm->resume)();
951 }
952
953 return 0;
954}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200955#endif
Henrique de Moraes Holschuhe295e852007-07-18 23:45:37 -0300956
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200957static SIMPLE_DEV_PM_OPS(tpacpi_pm,
958 tpacpi_suspend_handler, tpacpi_resume_handler);
959
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200960static void tpacpi_shutdown_handler(struct platform_device *pdev)
961{
962 struct ibm_struct *ibm, *itmp;
963
964 list_for_each_entry_safe(ibm, itmp,
965 &tpacpi_all_drivers,
966 all_drivers) {
967 if (ibm->shutdown)
968 (ibm->shutdown)();
969 }
970}
971
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300972static struct platform_driver tpacpi_pdriver = {
973 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200974 .name = TPACPI_DRVR_NAME,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300975 .owner = THIS_MODULE,
Rafael J. Wysocki4959a782012-06-27 23:19:01 +0200976 .pm = &tpacpi_pm,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300977 },
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -0200978 .shutdown = tpacpi_shutdown_handler,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300979};
980
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300981static struct platform_driver tpacpi_hwmon_pdriver = {
982 .driver = {
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -0200983 .name = TPACPI_HWMON_DRVR_NAME,
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -0300984 .owner = THIS_MODULE,
985 },
986};
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -0300987
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -0300988/*************************************************************************
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300989 * sysfs support helpers
990 */
991
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -0200992struct attribute_set {
993 unsigned int members, max_members;
994 struct attribute_group group;
995};
996
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -0300997struct attribute_set_obj {
998 struct attribute_set s;
999 struct attribute *a;
1000} __attribute__((packed));
1001
1002static struct attribute_set *create_attr_set(unsigned int max_members,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001003 const char *name)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001004{
1005 struct attribute_set_obj *sobj;
1006
1007 if (max_members == 0)
1008 return NULL;
1009
1010 /* Allocates space for implicit NULL at the end too */
1011 sobj = kzalloc(sizeof(struct attribute_set_obj) +
1012 max_members * sizeof(struct attribute *),
1013 GFP_KERNEL);
1014 if (!sobj)
1015 return NULL;
1016 sobj->s.max_members = max_members;
1017 sobj->s.group.attrs = &sobj->a;
1018 sobj->s.group.name = name;
1019
1020 return &sobj->s;
1021}
1022
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001023#define destroy_attr_set(_set) \
1024 kfree(_set);
1025
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001026/* not multi-threaded safe, use it in a single thread per set */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001027static int add_to_attr_set(struct attribute_set *s, struct attribute *attr)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001028{
1029 if (!s || !attr)
1030 return -EINVAL;
1031
1032 if (s->members >= s->max_members)
1033 return -ENOMEM;
1034
1035 s->group.attrs[s->members] = attr;
1036 s->members++;
1037
1038 return 0;
1039}
1040
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001041static int add_many_to_attr_set(struct attribute_set *s,
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001042 struct attribute **attr,
1043 unsigned int count)
1044{
1045 int i, res;
1046
1047 for (i = 0; i < count; i++) {
1048 res = add_to_attr_set(s, attr[i]);
1049 if (res)
1050 return res;
1051 }
1052
1053 return 0;
1054}
1055
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001056static void delete_attr_set(struct attribute_set *s, struct kobject *kobj)
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001057{
1058 sysfs_remove_group(kobj, &s->group);
1059 destroy_attr_set(s);
1060}
1061
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001062#define register_attr_set_with_sysfs(_attr_set, _kobj) \
1063 sysfs_create_group(_kobj, &_attr_set->group)
1064
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001065static int parse_strtoul(const char *buf,
1066 unsigned long max, unsigned long *value)
1067{
1068 char *endp;
1069
André Goddard Rosae7d28602009-12-14 18:01:06 -08001070 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
1071 endp = skip_spaces(endp);
Henrique de Moraes Holschuh72523742007-04-24 11:48:14 -03001072 if (*endp || *value > max)
1073 return -EINVAL;
1074
1075 return 0;
1076}
1077
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001078static void tpacpi_disable_brightness_delay(void)
1079{
1080 if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
Joe Perches0978e012011-04-04 10:06:25 -07001081 pr_notice("ACPI backlight control delay disabled\n");
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03001082}
1083
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001084static void printk_deprecated_attribute(const char * const what,
1085 const char * const details)
1086{
1087 tpacpi_log_usertask("deprecated sysfs attribute");
Joe Perches0978e012011-04-04 10:06:25 -07001088 pr_warn("WARNING: sysfs attribute %s is deprecated and "
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001089 "will be removed. %s\n",
1090 what, details);
1091}
1092
Johannes Berg19d337d2009-06-02 13:01:37 +02001093/*************************************************************************
1094 * rfkill and radio control support helpers
1095 */
1096
1097/*
1098 * ThinkPad-ACPI firmware handling model:
1099 *
1100 * WLSW (master wireless switch) is event-driven, and is common to all
1101 * firmware-controlled radios. It cannot be controlled, just monitored,
1102 * as expected. It overrides all radio state in firmware
1103 *
1104 * The kernel, a masked-off hotkey, and WLSW can change the radio state
1105 * (TODO: verify how WLSW interacts with the returned radio state).
1106 *
1107 * The only time there are shadow radio state changes, is when
1108 * masked-off hotkeys are used.
1109 */
1110
1111/*
1112 * Internal driver API for radio state:
1113 *
1114 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
1115 * bool: true means radio blocked (off)
1116 */
1117enum tpacpi_rfkill_state {
1118 TPACPI_RFK_RADIO_OFF = 0,
1119 TPACPI_RFK_RADIO_ON
1120};
1121
1122/* rfkill switches */
1123enum tpacpi_rfk_id {
1124 TPACPI_RFK_BLUETOOTH_SW_ID = 0,
1125 TPACPI_RFK_WWAN_SW_ID,
1126 TPACPI_RFK_UWB_SW_ID,
1127 TPACPI_RFK_SW_MAX
1128};
1129
1130static const char *tpacpi_rfkill_names[] = {
1131 [TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
1132 [TPACPI_RFK_WWAN_SW_ID] = "wwan",
1133 [TPACPI_RFK_UWB_SW_ID] = "uwb",
1134 [TPACPI_RFK_SW_MAX] = NULL
1135};
1136
1137/* ThinkPad-ACPI rfkill subdriver */
1138struct tpacpi_rfk {
1139 struct rfkill *rfkill;
1140 enum tpacpi_rfk_id id;
1141 const struct tpacpi_rfk_ops *ops;
1142};
1143
1144struct tpacpi_rfk_ops {
1145 /* firmware interface */
1146 int (*get_status)(void);
1147 int (*set_status)(const enum tpacpi_rfkill_state);
1148};
1149
1150static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
1151
1152/* Query FW and update rfkill sw state for a given rfkill switch */
1153static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
1154{
1155 int status;
1156
1157 if (!tp_rfk)
1158 return -ENODEV;
1159
1160 status = (tp_rfk->ops->get_status)();
1161 if (status < 0)
1162 return status;
1163
1164 rfkill_set_sw_state(tp_rfk->rfkill,
1165 (status == TPACPI_RFK_RADIO_OFF));
1166
1167 return status;
1168}
1169
1170/* Query FW and update rfkill sw state for all rfkill switches */
1171static void tpacpi_rfk_update_swstate_all(void)
1172{
1173 unsigned int i;
1174
1175 for (i = 0; i < TPACPI_RFK_SW_MAX; i++)
1176 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[i]);
1177}
1178
1179/*
1180 * Sync the HW-blocking state of all rfkill switches,
1181 * do notice it causes the rfkill core to schedule uevents
1182 */
1183static void tpacpi_rfk_update_hwblock_state(bool blocked)
1184{
1185 unsigned int i;
1186 struct tpacpi_rfk *tp_rfk;
1187
1188 for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
1189 tp_rfk = tpacpi_rfkill_switches[i];
1190 if (tp_rfk) {
1191 if (rfkill_set_hw_state(tp_rfk->rfkill,
1192 blocked)) {
1193 /* ignore -- we track sw block */
1194 }
1195 }
1196 }
1197}
1198
1199/* Call to get the WLSW state from the firmware */
1200static int hotkey_get_wlsw(void);
1201
1202/* Call to query WLSW state and update all rfkill switches */
1203static bool tpacpi_rfk_check_hwblock_state(void)
1204{
1205 int res = hotkey_get_wlsw();
1206 int hw_blocked;
1207
1208 /* When unknown or unsupported, we have to assume it is unblocked */
1209 if (res < 0)
1210 return false;
1211
1212 hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
1213 tpacpi_rfk_update_hwblock_state(hw_blocked);
1214
1215 return hw_blocked;
1216}
1217
1218static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
1219{
1220 struct tpacpi_rfk *tp_rfk = data;
1221 int res;
1222
1223 dbg_printk(TPACPI_DBG_RFKILL,
1224 "request to change radio state to %s\n",
1225 blocked ? "blocked" : "unblocked");
1226
1227 /* try to set radio state */
1228 res = (tp_rfk->ops->set_status)(blocked ?
1229 TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
1230
1231 /* and update the rfkill core with whatever the FW really did */
1232 tpacpi_rfk_update_swstate(tp_rfk);
1233
1234 return (res < 0) ? res : 0;
1235}
1236
1237static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
1238 .set_block = tpacpi_rfk_hook_set_block,
1239};
1240
1241static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
1242 const struct tpacpi_rfk_ops *tp_rfkops,
1243 const enum rfkill_type rfktype,
1244 const char *name,
1245 const bool set_default)
1246{
1247 struct tpacpi_rfk *atp_rfk;
1248 int res;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001249 bool sw_state = false;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001250 bool hw_state;
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001251 int sw_status;
Johannes Berg19d337d2009-06-02 13:01:37 +02001252
1253 BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
1254
Johannes Berg19d337d2009-06-02 13:01:37 +02001255 atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
1256 if (atp_rfk)
1257 atp_rfk->rfkill = rfkill_alloc(name,
1258 &tpacpi_pdev->dev,
1259 rfktype,
1260 &tpacpi_rfk_rfkill_ops,
1261 atp_rfk);
1262 if (!atp_rfk || !atp_rfk->rfkill) {
Joe Perches0978e012011-04-04 10:06:25 -07001263 pr_err("failed to allocate memory for rfkill class\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001264 kfree(atp_rfk);
1265 return -ENOMEM;
1266 }
1267
1268 atp_rfk->id = id;
1269 atp_rfk->ops = tp_rfkops;
1270
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001271 sw_status = (tp_rfkops->get_status)();
1272 if (sw_status < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001273 pr_err("failed to read initial state for %s, error %d\n",
1274 name, sw_status);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001275 } else {
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001276 sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001277 if (set_default) {
1278 /* try to keep the initial state, since we ask the
1279 * firmware to preserve it across S5 in NVRAM */
Alan Jenkins06d5caf2009-06-16 15:39:51 +01001280 rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
Alan Jenkinsb3fa1322009-06-08 13:27:27 +01001281 }
1282 }
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001283 hw_state = tpacpi_rfk_check_hwblock_state();
1284 rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
Johannes Berg19d337d2009-06-02 13:01:37 +02001285
1286 res = rfkill_register(atp_rfk->rfkill);
1287 if (res < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07001288 pr_err("failed to register %s rfkill switch: %d\n", name, res);
Johannes Berg19d337d2009-06-02 13:01:37 +02001289 rfkill_destroy(atp_rfk->rfkill);
1290 kfree(atp_rfk);
1291 return res;
1292 }
1293
1294 tpacpi_rfkill_switches[id] = atp_rfk;
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001295
Joe Perches0978e012011-04-04 10:06:25 -07001296 pr_info("rfkill switch %s: radio is %sblocked\n",
Henrique de Moraes Holschuh5451a922009-12-15 21:51:07 -02001297 name, (sw_state || hw_state) ? "" : "un");
Johannes Berg19d337d2009-06-02 13:01:37 +02001298 return 0;
1299}
1300
1301static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
1302{
1303 struct tpacpi_rfk *tp_rfk;
1304
1305 BUG_ON(id >= TPACPI_RFK_SW_MAX);
1306
1307 tp_rfk = tpacpi_rfkill_switches[id];
1308 if (tp_rfk) {
1309 rfkill_unregister(tp_rfk->rfkill);
Corentin Chary5f0dadb2009-09-14 12:43:52 +02001310 rfkill_destroy(tp_rfk->rfkill);
Johannes Berg19d337d2009-06-02 13:01:37 +02001311 tpacpi_rfkill_switches[id] = NULL;
1312 kfree(tp_rfk);
1313 }
1314}
1315
Henrique de Moraes Holschuh73a94d82009-04-04 04:25:47 +00001316static void printk_deprecated_rfkill_attribute(const char * const what)
1317{
1318 printk_deprecated_attribute(what,
1319 "Please switch to generic rfkill before year 2010");
1320}
1321
Johannes Berg19d337d2009-06-02 13:01:37 +02001322/* sysfs <radio> enable ------------------------------------------------ */
1323static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
1324 struct device_attribute *attr,
1325 char *buf)
1326{
1327 int status;
1328
1329 printk_deprecated_rfkill_attribute(attr->attr.name);
1330
1331 /* This is in the ABI... */
1332 if (tpacpi_rfk_check_hwblock_state()) {
1333 status = TPACPI_RFK_RADIO_OFF;
1334 } else {
1335 status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1336 if (status < 0)
1337 return status;
1338 }
1339
1340 return snprintf(buf, PAGE_SIZE, "%d\n",
1341 (status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
1342}
1343
1344static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
1345 struct device_attribute *attr,
1346 const char *buf, size_t count)
1347{
1348 unsigned long t;
1349 int res;
1350
1351 printk_deprecated_rfkill_attribute(attr->attr.name);
1352
1353 if (parse_strtoul(buf, 1, &t))
1354 return -EINVAL;
1355
1356 tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
1357
1358 /* This is in the ABI... */
1359 if (tpacpi_rfk_check_hwblock_state() && !!t)
1360 return -EPERM;
1361
1362 res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
1363 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
1364 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1365
1366 return (res < 0) ? res : count;
1367}
1368
1369/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001370static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
Johannes Berg19d337d2009-06-02 13:01:37 +02001371{
Johannes Berg19d337d2009-06-02 13:01:37 +02001372 if (id >= TPACPI_RFK_SW_MAX)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001373 seq_printf(m, "status:\t\tnot supported\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001374 else {
1375 int status;
1376
1377 /* This is in the ABI... */
1378 if (tpacpi_rfk_check_hwblock_state()) {
1379 status = TPACPI_RFK_RADIO_OFF;
1380 } else {
1381 status = tpacpi_rfk_update_swstate(
1382 tpacpi_rfkill_switches[id]);
1383 if (status < 0)
1384 return status;
1385 }
1386
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001387 seq_printf(m, "status:\t\t%s\n",
Johannes Berg19d337d2009-06-02 13:01:37 +02001388 (status == TPACPI_RFK_RADIO_ON) ?
1389 "enabled" : "disabled");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001390 seq_printf(m, "commands:\tenable, disable\n");
Johannes Berg19d337d2009-06-02 13:01:37 +02001391 }
1392
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001393 return 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001394}
1395
1396static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
1397{
1398 char *cmd;
1399 int status = -1;
1400 int res = 0;
1401
1402 if (id >= TPACPI_RFK_SW_MAX)
1403 return -ENODEV;
1404
1405 while ((cmd = next_cmd(&buf))) {
1406 if (strlencmp(cmd, "enable") == 0)
1407 status = TPACPI_RFK_RADIO_ON;
1408 else if (strlencmp(cmd, "disable") == 0)
1409 status = TPACPI_RFK_RADIO_OFF;
1410 else
1411 return -EINVAL;
1412 }
1413
1414 if (status != -1) {
1415 tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
1416 (status == TPACPI_RFK_RADIO_ON) ?
1417 "enable" : "disable",
1418 tpacpi_rfkill_names[id]);
1419 res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
1420 tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
1421 }
1422
1423 return res;
1424}
1425
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001426/*************************************************************************
1427 * thinkpad-acpi driver attributes
1428 */
1429
1430/* interface_version --------------------------------------------------- */
1431static ssize_t tpacpi_driver_interface_version_show(
1432 struct device_driver *drv,
1433 char *buf)
1434{
1435 return snprintf(buf, PAGE_SIZE, "0x%08x\n", TPACPI_SYSFS_VERSION);
1436}
1437
1438static DRIVER_ATTR(interface_version, S_IRUGO,
1439 tpacpi_driver_interface_version_show, NULL);
1440
1441/* debug_level --------------------------------------------------------- */
1442static ssize_t tpacpi_driver_debug_show(struct device_driver *drv,
1443 char *buf)
1444{
1445 return snprintf(buf, PAGE_SIZE, "0x%04x\n", dbg_level);
1446}
1447
1448static ssize_t tpacpi_driver_debug_store(struct device_driver *drv,
1449 const char *buf, size_t count)
1450{
1451 unsigned long t;
1452
1453 if (parse_strtoul(buf, 0xffff, &t))
1454 return -EINVAL;
1455
1456 dbg_level = t;
1457
1458 return count;
1459}
1460
1461static DRIVER_ATTR(debug_level, S_IWUSR | S_IRUGO,
1462 tpacpi_driver_debug_show, tpacpi_driver_debug_store);
1463
1464/* version ------------------------------------------------------------- */
1465static ssize_t tpacpi_driver_version_show(struct device_driver *drv,
1466 char *buf)
1467{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001468 return snprintf(buf, PAGE_SIZE, "%s v%s\n",
1469 TPACPI_DESC, TPACPI_VERSION);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001470}
1471
1472static DRIVER_ATTR(version, S_IRUGO,
1473 tpacpi_driver_version_show, NULL);
1474
1475/* --------------------------------------------------------------------- */
1476
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001477#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1478
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001479/* wlsw_emulstate ------------------------------------------------------ */
1480static ssize_t tpacpi_driver_wlsw_emulstate_show(struct device_driver *drv,
1481 char *buf)
1482{
1483 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wlsw_emulstate);
1484}
1485
1486static ssize_t tpacpi_driver_wlsw_emulstate_store(struct device_driver *drv,
1487 const char *buf, size_t count)
1488{
1489 unsigned long t;
1490
1491 if (parse_strtoul(buf, 1, &t))
1492 return -EINVAL;
1493
Johannes Berg19d337d2009-06-02 13:01:37 +02001494 if (tpacpi_wlsw_emulstate != !!t) {
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001495 tpacpi_wlsw_emulstate = !!t;
Johannes Berg19d337d2009-06-02 13:01:37 +02001496 tpacpi_rfk_update_hwblock_state(!t); /* negative logic */
1497 }
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001498
1499 return count;
1500}
1501
1502static DRIVER_ATTR(wlsw_emulstate, S_IWUSR | S_IRUGO,
1503 tpacpi_driver_wlsw_emulstate_show,
1504 tpacpi_driver_wlsw_emulstate_store);
1505
1506/* bluetooth_emulstate ------------------------------------------------- */
1507static ssize_t tpacpi_driver_bluetooth_emulstate_show(
1508 struct device_driver *drv,
1509 char *buf)
1510{
1511 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_bluetooth_emulstate);
1512}
1513
1514static ssize_t tpacpi_driver_bluetooth_emulstate_store(
1515 struct device_driver *drv,
1516 const char *buf, size_t count)
1517{
1518 unsigned long t;
1519
1520 if (parse_strtoul(buf, 1, &t))
1521 return -EINVAL;
1522
1523 tpacpi_bluetooth_emulstate = !!t;
1524
1525 return count;
1526}
1527
1528static DRIVER_ATTR(bluetooth_emulstate, S_IWUSR | S_IRUGO,
1529 tpacpi_driver_bluetooth_emulstate_show,
1530 tpacpi_driver_bluetooth_emulstate_store);
1531
1532/* wwan_emulstate ------------------------------------------------- */
1533static ssize_t tpacpi_driver_wwan_emulstate_show(
1534 struct device_driver *drv,
1535 char *buf)
1536{
1537 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_wwan_emulstate);
1538}
1539
1540static ssize_t tpacpi_driver_wwan_emulstate_store(
1541 struct device_driver *drv,
1542 const char *buf, size_t count)
1543{
1544 unsigned long t;
1545
1546 if (parse_strtoul(buf, 1, &t))
1547 return -EINVAL;
1548
1549 tpacpi_wwan_emulstate = !!t;
1550
1551 return count;
1552}
1553
1554static DRIVER_ATTR(wwan_emulstate, S_IWUSR | S_IRUGO,
1555 tpacpi_driver_wwan_emulstate_show,
1556 tpacpi_driver_wwan_emulstate_store);
1557
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001558/* uwb_emulstate ------------------------------------------------- */
1559static ssize_t tpacpi_driver_uwb_emulstate_show(
1560 struct device_driver *drv,
1561 char *buf)
1562{
1563 return snprintf(buf, PAGE_SIZE, "%d\n", !!tpacpi_uwb_emulstate);
1564}
1565
1566static ssize_t tpacpi_driver_uwb_emulstate_store(
1567 struct device_driver *drv,
1568 const char *buf, size_t count)
1569{
1570 unsigned long t;
1571
1572 if (parse_strtoul(buf, 1, &t))
1573 return -EINVAL;
1574
1575 tpacpi_uwb_emulstate = !!t;
1576
1577 return count;
1578}
1579
1580static DRIVER_ATTR(uwb_emulstate, S_IWUSR | S_IRUGO,
1581 tpacpi_driver_uwb_emulstate_show,
1582 tpacpi_driver_uwb_emulstate_store);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001583#endif
1584
1585/* --------------------------------------------------------------------- */
1586
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001587static struct driver_attribute *tpacpi_driver_attributes[] = {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001588 &driver_attr_debug_level, &driver_attr_version,
1589 &driver_attr_interface_version,
1590};
1591
1592static int __init tpacpi_create_driver_attributes(struct device_driver *drv)
1593{
1594 int i, res;
1595
1596 i = 0;
1597 res = 0;
1598 while (!res && i < ARRAY_SIZE(tpacpi_driver_attributes)) {
1599 res = driver_create_file(drv, tpacpi_driver_attributes[i]);
1600 i++;
1601 }
1602
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001603#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
1604 if (!res && dbg_wlswemul)
1605 res = driver_create_file(drv, &driver_attr_wlsw_emulstate);
1606 if (!res && dbg_bluetoothemul)
1607 res = driver_create_file(drv, &driver_attr_bluetooth_emulstate);
1608 if (!res && dbg_wwanemul)
1609 res = driver_create_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001610 if (!res && dbg_uwbemul)
1611 res = driver_create_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001612#endif
1613
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001614 return res;
1615}
1616
1617static void tpacpi_remove_driver_attributes(struct device_driver *drv)
1618{
1619 int i;
1620
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02001621 for (i = 0; i < ARRAY_SIZE(tpacpi_driver_attributes); i++)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001622 driver_remove_file(drv, tpacpi_driver_attributes[i]);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001623
1624#ifdef THINKPAD_ACPI_DEBUGFACILITIES
1625 driver_remove_file(drv, &driver_attr_wlsw_emulstate);
1626 driver_remove_file(drv, &driver_attr_bluetooth_emulstate);
1627 driver_remove_file(drv, &driver_attr_wwan_emulstate);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02001628 driver_remove_file(drv, &driver_attr_uwb_emulstate);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02001629#endif
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02001630}
1631
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001632/*************************************************************************
1633 * Firmware Data
1634 */
1635
1636/*
1637 * Table of recommended minimum BIOS versions
1638 *
1639 * Reasons for listing:
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001640 * 1. Stable BIOS, listed because the unknown amount of
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001641 * bugs and bad ACPI behaviour on older versions
1642 *
1643 * 2. BIOS or EC fw with known bugs that trigger on Linux
1644 *
1645 * 3. BIOS with known reduced functionality in older versions
1646 *
1647 * We recommend the latest BIOS and EC version.
1648 * We only support the latest BIOS and EC fw version as a rule.
1649 *
1650 * Sources: IBM ThinkPad Public Web Documents (update changelogs),
1651 * Information from users in ThinkWiki
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001652 *
1653 * WARNING: we use this table also to detect that the machine is
1654 * a ThinkPad in some cases, so don't remove entries lightly.
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001655 */
1656
1657#define TPV_Q(__v, __id1, __id2, __bv1, __bv2) \
1658 { .vendor = (__v), \
1659 .bios = TPID(__id1, __id2), \
1660 .ec = TPACPI_MATCH_ANY, \
1661 .quirks = TPACPI_MATCH_ANY << 16 \
1662 | (__bv1) << 8 | (__bv2) }
1663
1664#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001665 __eid, __ev1, __ev2) \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001666 { .vendor = (__v), \
1667 .bios = TPID(__bid1, __bid2), \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001668 .ec = __eid, \
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001669 .quirks = (__ev1) << 24 | (__ev2) << 16 \
1670 | (__bv1) << 8 | (__bv2) }
1671
1672#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
1673 TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
1674
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001675/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001676#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1677 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001678 __bv1, __bv2, TPID(__id1, __id2), \
1679 __ev1, __ev2), \
1680 TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \
1681 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1682 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001683
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001684/* Outdated IBM BIOSes often lack the EC id string */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001685#define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \
1686 __eid1, __eid2, __ev1, __ev2) \
1687 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001688 __bv1, __bv2, TPID(__eid1, __eid2), \
1689 __ev1, __ev2), \
1690 TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \
1691 __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \
1692 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001693
1694#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
1695 TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
1696
1697#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
1698 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001699 __bv1, __bv2, TPID(__id1, __id2), \
1700 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001701
1702#define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \
1703 __eid1, __eid2, __ev1, __ev2) \
1704 TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \
Henrique de Moraes Holschuh275014a2009-11-17 14:07:22 -08001705 __bv1, __bv2, TPID(__eid1, __eid2), \
1706 __ev1, __ev2)
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001707
1708static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
1709 /* Numeric models ------------------ */
1710 /* FW MODEL BIOS VERS */
1711 TPV_QI0('I', 'M', '6', '5'), /* 570 */
1712 TPV_QI0('I', 'U', '2', '6'), /* 570E */
1713 TPV_QI0('I', 'B', '5', '4'), /* 600 */
1714 TPV_QI0('I', 'H', '4', '7'), /* 600E */
1715 TPV_QI0('I', 'N', '3', '6'), /* 600E */
1716 TPV_QI0('I', 'T', '5', '5'), /* 600X */
1717 TPV_QI0('I', 'D', '4', '8'), /* 770, 770E, 770ED */
1718 TPV_QI0('I', 'I', '4', '2'), /* 770X */
1719 TPV_QI0('I', 'O', '2', '3'), /* 770Z */
1720
1721 /* A-series ------------------------- */
1722 /* FW MODEL BIOS VERS EC VERS */
1723 TPV_QI0('I', 'W', '5', '9'), /* A20m */
1724 TPV_QI0('I', 'V', '6', '9'), /* A20p */
1725 TPV_QI0('1', '0', '2', '6'), /* A21e, A22e */
1726 TPV_QI0('K', 'U', '3', '6'), /* A21e */
1727 TPV_QI0('K', 'X', '3', '6'), /* A21m, A22m */
1728 TPV_QI0('K', 'Y', '3', '8'), /* A21p, A22p */
1729 TPV_QI0('1', 'B', '1', '7'), /* A22e */
1730 TPV_QI0('1', '3', '2', '0'), /* A22m */
1731 TPV_QI0('1', 'E', '7', '3'), /* A30/p (0) */
1732 TPV_QI1('1', 'G', '4', '1', '1', '7'), /* A31/p (0) */
1733 TPV_QI1('1', 'N', '1', '6', '0', '7'), /* A31/p (0) */
1734
1735 /* G-series ------------------------- */
1736 /* FW MODEL BIOS VERS */
1737 TPV_QI0('1', 'T', 'A', '6'), /* G40 */
1738 TPV_QI0('1', 'X', '5', '7'), /* G41 */
1739
1740 /* R-series, T-series --------------- */
1741 /* FW MODEL BIOS VERS EC VERS */
1742 TPV_QI0('1', 'C', 'F', '0'), /* R30 */
1743 TPV_QI0('1', 'F', 'F', '1'), /* R31 */
1744 TPV_QI0('1', 'M', '9', '7'), /* R32 */
1745 TPV_QI0('1', 'O', '6', '1'), /* R40 */
1746 TPV_QI0('1', 'P', '6', '5'), /* R40 */
1747 TPV_QI0('1', 'S', '7', '0'), /* R40e */
1748 TPV_QI1('1', 'R', 'D', 'R', '7', '1'), /* R50/p, R51,
1749 T40/p, T41/p, T42/p (1) */
1750 TPV_QI1('1', 'V', '7', '1', '2', '8'), /* R50e, R51 (1) */
1751 TPV_QI1('7', '8', '7', '1', '0', '6'), /* R51e (1) */
1752 TPV_QI1('7', '6', '6', '9', '1', '6'), /* R52 (1) */
1753 TPV_QI1('7', '0', '6', '9', '2', '8'), /* R52, T43 (1) */
1754
1755 TPV_QI0('I', 'Y', '6', '1'), /* T20 */
1756 TPV_QI0('K', 'Z', '3', '4'), /* T21 */
1757 TPV_QI0('1', '6', '3', '2'), /* T22 */
1758 TPV_QI1('1', 'A', '6', '4', '2', '3'), /* T23 (0) */
1759 TPV_QI1('1', 'I', '7', '1', '2', '0'), /* T30 (0) */
1760 TPV_QI1('1', 'Y', '6', '5', '2', '9'), /* T43/p (1) */
1761
1762 TPV_QL1('7', '9', 'E', '3', '5', '0'), /* T60/p */
1763 TPV_QL1('7', 'C', 'D', '2', '2', '2'), /* R60, R60i */
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001764 TPV_QL1('7', 'E', 'D', '0', '1', '5'), /* R60e, R60i */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001765
1766 /* BIOS FW BIOS VERS EC FW EC VERS */
1767 TPV_QI2('1', 'W', '9', '0', '1', 'V', '2', '8'), /* R50e (1) */
1768 TPV_QL2('7', 'I', '3', '4', '7', '9', '5', '0'), /* T60/p wide */
1769
1770 /* X-series ------------------------- */
1771 /* FW MODEL BIOS VERS EC VERS */
1772 TPV_QI0('I', 'Z', '9', 'D'), /* X20, X21 */
1773 TPV_QI0('1', 'D', '7', '0'), /* X22, X23, X24 */
1774 TPV_QI1('1', 'K', '4', '8', '1', '8'), /* X30 (0) */
1775 TPV_QI1('1', 'Q', '9', '7', '2', '3'), /* X31, X32 (0) */
1776 TPV_QI1('1', 'U', 'D', '3', 'B', '2'), /* X40 (0) */
1777 TPV_QI1('7', '4', '6', '4', '2', '7'), /* X41 (0) */
1778 TPV_QI1('7', '5', '6', '0', '2', '0'), /* X41t (0) */
1779
Henrique de Moraes Holschuh90765c62009-12-09 01:36:23 +00001780 TPV_QL1('7', 'B', 'D', '7', '4', '0'), /* X60/s */
1781 TPV_QL1('7', 'J', '3', '0', '1', '3'), /* X60t */
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001782
1783 /* (0) - older versions lack DMI EC fw string and functionality */
1784 /* (1) - older versions known to lack functionality */
1785};
1786
1787#undef TPV_QL1
1788#undef TPV_QL0
1789#undef TPV_QI2
1790#undef TPV_QI1
1791#undef TPV_QI0
1792#undef TPV_Q_X
1793#undef TPV_Q
1794
1795static void __init tpacpi_check_outdated_fw(void)
1796{
1797 unsigned long fwvers;
1798 u16 ec_version, bios_version;
1799
1800 fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
1801 ARRAY_SIZE(tpacpi_bios_version_qtable));
1802
1803 if (!fwvers)
1804 return;
1805
1806 bios_version = fwvers & 0xffffU;
1807 ec_version = (fwvers >> 16) & 0xffffU;
1808
1809 /* note that unknown versions are set to 0x0000 and we use that */
1810 if ((bios_version > thinkpad_id.bios_release) ||
1811 (ec_version > thinkpad_id.ec_release &&
1812 ec_version != TPACPI_MATCH_ANY)) {
1813 /*
1814 * The changelogs would let us track down the exact
1815 * reason, but it is just too much of a pain to track
1816 * it. We only list BIOSes that are either really
1817 * broken, or really stable to begin with, so it is
1818 * best if the user upgrades the firmware anyway.
1819 */
Joe Perches0978e012011-04-04 10:06:25 -07001820 pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
1821 pr_warn("WARNING: This firmware may be missing critical bug "
Henrique de Moraes Holschuh600a99f2009-09-12 15:22:12 -03001822 "fixes and/or important features\n");
1823 }
1824}
1825
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03001826static bool __init tpacpi_is_fw_known(void)
1827{
1828 return tpacpi_check_quirks(tpacpi_bios_version_qtable,
1829 ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
1830}
1831
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03001832/****************************************************************************
1833 ****************************************************************************
1834 *
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001835 * Subdrivers
1836 *
1837 ****************************************************************************
1838 ****************************************************************************/
1839
1840/*************************************************************************
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03001841 * thinkpad-acpi metadata subdriver
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001842 */
1843
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001844static int thinkpad_acpi_driver_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02001846 seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
1847 seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
1848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03001851static struct ibm_struct thinkpad_acpi_driver_data = {
1852 .name = "driver",
1853 .read = thinkpad_acpi_driver_read,
1854};
1855
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03001856/*************************************************************************
1857 * Hotkey subdriver
1858 */
1859
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001860/*
1861 * ThinkPad firmware event model
1862 *
1863 * The ThinkPad firmware has two main event interfaces: normal ACPI
1864 * notifications (which follow the ACPI standard), and a private event
1865 * interface.
1866 *
1867 * The private event interface also issues events for the hotkeys. As
1868 * the driver gained features, the event handling code ended up being
1869 * built around the hotkey subdriver. This will need to be refactored
1870 * to a more formal event API eventually.
1871 *
1872 * Some "hotkeys" are actually supposed to be used as event reports,
1873 * such as "brightness has changed", "volume has changed", depending on
1874 * the ThinkPad model and how the firmware is operating.
1875 *
1876 * Unlike other classes, hotkey-class events have mask/unmask control on
1877 * non-ancient firmware. However, how it behaves changes a lot with the
1878 * firmware model and version.
1879 */
1880
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001881enum { /* hot key scan codes (derived from ACPI DSDT) */
1882 TP_ACPI_HOTKEYSCAN_FNF1 = 0,
1883 TP_ACPI_HOTKEYSCAN_FNF2,
1884 TP_ACPI_HOTKEYSCAN_FNF3,
1885 TP_ACPI_HOTKEYSCAN_FNF4,
1886 TP_ACPI_HOTKEYSCAN_FNF5,
1887 TP_ACPI_HOTKEYSCAN_FNF6,
1888 TP_ACPI_HOTKEYSCAN_FNF7,
1889 TP_ACPI_HOTKEYSCAN_FNF8,
1890 TP_ACPI_HOTKEYSCAN_FNF9,
1891 TP_ACPI_HOTKEYSCAN_FNF10,
1892 TP_ACPI_HOTKEYSCAN_FNF11,
1893 TP_ACPI_HOTKEYSCAN_FNF12,
1894 TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
1895 TP_ACPI_HOTKEYSCAN_FNINSERT,
1896 TP_ACPI_HOTKEYSCAN_FNDELETE,
1897 TP_ACPI_HOTKEYSCAN_FNHOME,
1898 TP_ACPI_HOTKEYSCAN_FNEND,
1899 TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1900 TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
1901 TP_ACPI_HOTKEYSCAN_FNSPACE,
1902 TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1903 TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1904 TP_ACPI_HOTKEYSCAN_MUTE,
1905 TP_ACPI_HOTKEYSCAN_THINKPAD,
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03001906 TP_ACPI_HOTKEYSCAN_UNK1,
1907 TP_ACPI_HOTKEYSCAN_UNK2,
1908 TP_ACPI_HOTKEYSCAN_UNK3,
1909 TP_ACPI_HOTKEYSCAN_UNK4,
1910 TP_ACPI_HOTKEYSCAN_UNK5,
1911 TP_ACPI_HOTKEYSCAN_UNK6,
1912 TP_ACPI_HOTKEYSCAN_UNK7,
1913 TP_ACPI_HOTKEYSCAN_UNK8,
1914
1915 /* Hotkey keymap size */
1916 TPACPI_HOTKEY_MAP_LEN
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02001917};
1918
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001919enum { /* Keys/events available through NVRAM polling */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001920 TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
1921 TPACPI_HKEY_NVRAM_GOOD_MASK = 0x00fb8000U,
1922};
1923
1924enum { /* Positions of some of the keys in hotkey masks */
1925 TP_ACPI_HKEY_DISPSWTCH_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF7,
1926 TP_ACPI_HKEY_DISPXPAND_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF8,
1927 TP_ACPI_HKEY_HIBERNATE_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNF12,
1928 TP_ACPI_HKEY_BRGHTUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
1929 TP_ACPI_HKEY_BRGHTDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNEND,
1930 TP_ACPI_HKEY_THNKLGHT_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
1931 TP_ACPI_HKEY_ZOOM_MASK = 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
1932 TP_ACPI_HKEY_VOLUP_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
1933 TP_ACPI_HKEY_VOLDWN_MASK = 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
1934 TP_ACPI_HKEY_MUTE_MASK = 1 << TP_ACPI_HOTKEYSCAN_MUTE,
1935 TP_ACPI_HKEY_THINKPAD_MASK = 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
1936};
1937
1938enum { /* NVRAM to ACPI HKEY group map */
1939 TP_NVRAM_HKEY_GROUP_HK2 = TP_ACPI_HKEY_THINKPAD_MASK |
1940 TP_ACPI_HKEY_ZOOM_MASK |
1941 TP_ACPI_HKEY_DISPSWTCH_MASK |
1942 TP_ACPI_HKEY_HIBERNATE_MASK,
1943 TP_NVRAM_HKEY_GROUP_BRIGHTNESS = TP_ACPI_HKEY_BRGHTUP_MASK |
1944 TP_ACPI_HKEY_BRGHTDWN_MASK,
1945 TP_NVRAM_HKEY_GROUP_VOLUME = TP_ACPI_HKEY_VOLUP_MASK |
1946 TP_ACPI_HKEY_VOLDWN_MASK |
1947 TP_ACPI_HKEY_MUTE_MASK,
1948};
1949
1950#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
1951struct tp_nvram_state {
1952 u16 thinkpad_toggle:1;
1953 u16 zoom_toggle:1;
1954 u16 display_toggle:1;
1955 u16 thinklight_toggle:1;
1956 u16 hibernate_toggle:1;
1957 u16 displayexp_toggle:1;
1958 u16 display_state:1;
1959 u16 brightness_toggle:1;
1960 u16 volume_toggle:1;
1961 u16 mute:1;
1962
1963 u8 brightness_level;
1964 u8 volume_level;
1965};
1966
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001967/* kthread for the hotkey poller */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001968static struct task_struct *tpacpi_hotkey_task;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001969
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001970/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001971 * Acquire mutex to write poller control variables as an
1972 * atomic block.
1973 *
1974 * Increment hotkey_config_change when changing them if you
1975 * want the kthread to forget old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001976 *
1977 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1978 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02001979static struct mutex hotkey_thread_data_mutex;
1980static unsigned int hotkey_config_change;
1981
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001982/*
1983 * hotkey poller control variables
1984 *
1985 * Must be atomic or readers will also need to acquire mutex
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03001986 *
1987 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
1988 * should be used only when the changes need to be taken as
1989 * a block, OR when one needs to force the kthread to forget
1990 * old state.
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03001991 */
1992static u32 hotkey_source_mask; /* bit mask 0=ACPI,1=NVRAM */
1993static unsigned int hotkey_poll_freq = 10; /* Hz */
1994
1995#define HOTKEY_CONFIG_CRITICAL_START \
1996 do { \
1997 mutex_lock(&hotkey_thread_data_mutex); \
1998 hotkey_config_change++; \
1999 } while (0);
2000#define HOTKEY_CONFIG_CRITICAL_END \
2001 mutex_unlock(&hotkey_thread_data_mutex);
2002
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002003#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2004
2005#define hotkey_source_mask 0U
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002006#define HOTKEY_CONFIG_CRITICAL_START
2007#define HOTKEY_CONFIG_CRITICAL_END
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002008
2009#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2010
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02002011static struct mutex hotkey_mutex;
2012
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002013static enum { /* Reasons for waking up */
2014 TP_ACPI_WAKEUP_NONE = 0, /* None or unknown */
2015 TP_ACPI_WAKEUP_BAYEJ, /* Bay ejection request */
2016 TP_ACPI_WAKEUP_UNDOCK, /* Undock request */
2017} hotkey_wakeup_reason;
2018
2019static int hotkey_autosleep_ack;
2020
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002021static u32 hotkey_orig_mask; /* events the BIOS had enabled */
2022static u32 hotkey_all_mask; /* all events supported in fw */
2023static u32 hotkey_reserved_mask; /* events better left disabled */
2024static u32 hotkey_driver_mask; /* events needed by the driver */
2025static u32 hotkey_user_mask; /* events visible to userspace */
2026static u32 hotkey_acpi_mask; /* events enabled in firmware */
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03002027
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03002028static u16 *hotkey_keycode_map;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04002029
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03002030static struct attribute_set *hotkey_dev_attributes;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002031
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002032static void tpacpi_driver_event(const unsigned int hkey_event);
2033static void hotkey_driver_event(const unsigned int scancode);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002034static void hotkey_poll_setup(const bool may_warn);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002035
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002036/* HKEY.MHKG() return bits */
2037#define TP_HOTKEY_TABLET_MASK (1 << 3)
2038
Johannes Berg19d337d2009-06-02 13:01:37 +02002039static int hotkey_get_wlsw(void)
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002040{
Johannes Berg19d337d2009-06-02 13:01:37 +02002041 int status;
2042
2043 if (!tp_features.hotkey_wlsw)
2044 return -ENODEV;
2045
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002046#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Johannes Berg19d337d2009-06-02 13:01:37 +02002047 if (dbg_wlswemul)
2048 return (tpacpi_wlsw_emulstate) ?
2049 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02002050#endif
Johannes Berg19d337d2009-06-02 13:01:37 +02002051
2052 if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002053 return -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +02002054
2055 return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002056}
2057
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002058static int hotkey_get_tablet_mode(int *status)
2059{
2060 int s;
2061
2062 if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
2063 return -EIO;
2064
Henrique de Moraes Holschuhcee47f52008-03-04 14:29:21 -08002065 *status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
2066 return 0;
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002067}
2068
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002069/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002070 * Reads current event mask from firmware, and updates
2071 * hotkey_acpi_mask accordingly. Also resets any bits
2072 * from hotkey_user_mask that are unavailable to be
2073 * delivered (shadow requirement of the userspace ABI).
2074 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002075 * Call with hotkey_mutex held
2076 */
2077static int hotkey_mask_get(void)
2078{
2079 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002080 u32 m = 0;
2081
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002082 if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002083 return -EIO;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002084
2085 hotkey_acpi_mask = m;
2086 } else {
2087 /* no mask support doesn't mean no event support... */
2088 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002089 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002090
2091 /* sync userspace-visible mask */
2092 hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002093
2094 return 0;
2095}
2096
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002097void static hotkey_mask_warn_incomplete_mask(void)
2098{
2099 /* log only what the user can fix... */
2100 const u32 wantedmask = hotkey_driver_mask &
2101 ~(hotkey_acpi_mask | hotkey_source_mask) &
2102 (hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
2103
2104 if (wantedmask)
Joe Perches0978e012011-04-04 10:06:25 -07002105 pr_notice("required events 0x%08x not enabled!\n", wantedmask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002106}
2107
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002108/*
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002109 * Set the firmware mask when supported
2110 *
2111 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
2112 *
2113 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
2114 *
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002115 * Call with hotkey_mutex held
2116 */
2117static int hotkey_mask_set(u32 mask)
2118{
2119 int i;
2120 int rc = 0;
2121
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002122 const u32 fwmask = mask & ~hotkey_source_mask;
Henrique de Moraes Holschuh92889022008-04-26 01:02:18 -03002123
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002124 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002125 for (i = 0; i < 32; i++) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002126 if (!acpi_evalf(hkey_handle,
2127 NULL, "MHKM", "vdd", i + 1,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002128 !!(mask & (1 << i)))) {
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002129 rc = -EIO;
2130 break;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002131 }
2132 }
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002133 }
2134
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002135 /*
2136 * We *must* make an inconditional call to hotkey_mask_get to
2137 * refresh hotkey_acpi_mask and update hotkey_user_mask
2138 *
2139 * Take the opportunity to also log when we cannot _enable_
2140 * a given event.
2141 */
2142 if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
Joe Perches0978e012011-04-04 10:06:25 -07002143 pr_notice("asked for hotkey mask 0x%08x, but "
2144 "firmware forced it to 0x%08x\n",
2145 fwmask, hotkey_acpi_mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002146 }
2147
Henrique de Moraes Holschuh6b30eb72009-12-09 01:36:25 +00002148 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
2149 hotkey_mask_warn_incomplete_mask();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002150
2151 return rc;
2152}
2153
2154/*
2155 * Sets hotkey_user_mask and tries to set the firmware mask
2156 *
2157 * Call with hotkey_mutex held
2158 */
2159static int hotkey_user_mask_set(const u32 mask)
2160{
2161 int rc;
2162
2163 /* Give people a chance to notice they are doing something that
2164 * is bound to go boom on their users sooner or later */
2165 if (!tp_warned.hotkey_mask_ff &&
2166 (mask == 0xffff || mask == 0xffffff ||
2167 mask == 0xffffffff)) {
2168 tp_warned.hotkey_mask_ff = 1;
Joe Perches0978e012011-04-04 10:06:25 -07002169 pr_notice("setting the hotkey mask to 0x%08x is likely "
2170 "not the best way to go about it\n", mask);
2171 pr_notice("please consider using the driver defaults, "
2172 "and refer to up-to-date thinkpad-acpi "
2173 "documentation\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002174 }
2175
2176 /* Try to enable what the user asked for, plus whatever we need.
2177 * this syncs everything but won't enable bits in hotkey_user_mask */
2178 rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
2179
2180 /* Enable the available bits in hotkey_user_mask */
2181 hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
2182
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002183 return rc;
2184}
2185
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002186/*
2187 * Sets the driver hotkey mask.
2188 *
2189 * Can be called even if the hotkey subdriver is inactive
2190 */
2191static int tpacpi_hotkey_driver_mask_set(const u32 mask)
2192{
2193 int rc;
2194
2195 /* Do the right thing if hotkey_init has not been called yet */
2196 if (!tp_features.hotkey) {
2197 hotkey_driver_mask = mask;
2198 return 0;
2199 }
2200
2201 mutex_lock(&hotkey_mutex);
2202
2203 HOTKEY_CONFIG_CRITICAL_START
2204 hotkey_driver_mask = mask;
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002205#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002206 hotkey_source_mask |= (mask & ~hotkey_all_mask);
Henrique de Moraes Holschuhb684a362009-09-26 21:42:49 -03002207#endif
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002208 HOTKEY_CONFIG_CRITICAL_END
2209
2210 rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
2211 ~hotkey_source_mask);
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002212 hotkey_poll_setup(true);
2213
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002214 mutex_unlock(&hotkey_mutex);
2215
2216 return rc;
2217}
2218
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002219static int hotkey_status_get(int *status)
2220{
2221 if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
2222 return -EIO;
2223
2224 return 0;
2225}
2226
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002227static int hotkey_status_set(bool enable)
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002228{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002229 if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002230 return -EIO;
2231
2232 return 0;
2233}
2234
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002235static void tpacpi_input_send_tabletsw(void)
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002236{
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002237 int state;
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002238
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002239 if (tp_features.hotkey_tablet &&
2240 !hotkey_get_tablet_mode(&state)) {
2241 mutex_lock(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002242
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002243 input_report_switch(tpacpi_inputdev,
2244 SW_TABLET_MODE, !!state);
2245 input_sync(tpacpi_inputdev);
2246
2247 mutex_unlock(&tpacpi_inputdev_send_mutex);
2248 }
Henrique de Moraes Holschuhb3ec6f92008-02-16 02:17:55 -02002249}
2250
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002251/* Do NOT call without validating scancode first */
2252static void tpacpi_input_send_key(const unsigned int scancode)
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002253{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002254 const unsigned int keycode = hotkey_keycode_map[scancode];
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002255
2256 if (keycode != KEY_RESERVED) {
2257 mutex_lock(&tpacpi_inputdev_send_mutex);
2258
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002259 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002260 input_report_key(tpacpi_inputdev, keycode, 1);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002261 input_sync(tpacpi_inputdev);
2262
Seth Forshee5ffba7e2011-01-14 15:54:39 -06002263 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002264 input_report_key(tpacpi_inputdev, keycode, 0);
Henrique de Moraes Holschuhb7c8c202008-01-08 13:02:40 -02002265 input_sync(tpacpi_inputdev);
2266
2267 mutex_unlock(&tpacpi_inputdev_send_mutex);
2268 }
2269}
2270
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002271/* Do NOT call without validating scancode first */
2272static void tpacpi_input_send_key_masked(const unsigned int scancode)
2273{
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03002274 hotkey_driver_event(scancode);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002275 if (hotkey_user_mask & (1 << scancode))
2276 tpacpi_input_send_key(scancode);
2277}
2278
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002279#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2280static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
2281
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002282/* Do NOT call without validating scancode first */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002283static void tpacpi_hotkey_send_key(unsigned int scancode)
2284{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002285 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002286}
2287
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002288static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002289{
2290 u8 d;
2291
2292 if (m & TP_NVRAM_HKEY_GROUP_HK2) {
2293 d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
2294 n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
2295 n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
2296 n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
2297 n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
2298 }
2299 if (m & TP_ACPI_HKEY_THNKLGHT_MASK) {
2300 d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
2301 n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
2302 }
2303 if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
2304 d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
2305 n->displayexp_toggle =
2306 !!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
2307 }
2308 if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
2309 d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
2310 n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
2311 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
2312 n->brightness_toggle =
2313 !!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
2314 }
2315 if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
2316 d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
2317 n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
2318 >> TP_NVRAM_POS_LEVEL_VOLUME;
2319 n->mute = !!(d & TP_NVRAM_MASK_MUTE);
2320 n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
2321 }
2322}
2323
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002324static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
2325 struct tp_nvram_state *newn,
2326 const u32 event_mask)
2327{
2328
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002329#define TPACPI_COMPARE_KEY(__scancode, __member) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002330 do { \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002331 if ((event_mask & (1 << __scancode)) && \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002332 oldn->__member != newn->__member) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002333 tpacpi_hotkey_send_key(__scancode); \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02002334 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002335
2336#define TPACPI_MAY_SEND_KEY(__scancode) \
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002337 do { \
2338 if (event_mask & (1 << __scancode)) \
2339 tpacpi_hotkey_send_key(__scancode); \
2340 } while (0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002341
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002342 void issue_volchange(const unsigned int oldvol,
2343 const unsigned int newvol)
2344 {
2345 unsigned int i = oldvol;
2346
2347 while (i > newvol) {
2348 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
2349 i--;
2350 }
2351 while (i < newvol) {
2352 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
2353 i++;
2354 }
2355 }
2356
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002357 void issue_brightnesschange(const unsigned int oldbrt,
2358 const unsigned int newbrt)
2359 {
2360 unsigned int i = oldbrt;
2361
2362 while (i > newbrt) {
2363 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
2364 i--;
2365 }
2366 while (i < newbrt) {
2367 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
2368 i++;
2369 }
2370 }
2371
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002372 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
2373 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
2374 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
2375 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
2376
2377 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
2378
2379 TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
2380
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002381 /*
2382 * Handle volume
2383 *
2384 * This code is supposed to duplicate the IBM firmware behaviour:
2385 * - Pressing MUTE issues mute hotkey message, even when already mute
2386 * - Pressing Volume up/down issues volume up/down hotkey messages,
Lucas De Marchic8440332011-03-17 17:18:22 -03002387 * even when already at maximum or minimum volume
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002388 * - The act of unmuting issues volume up/down notification,
2389 * depending which key was used to unmute
2390 *
2391 * We are constrained to what the NVRAM can tell us, which is not much
2392 * and certainly not enough if more than one volume hotkey was pressed
2393 * since the last poll cycle.
2394 *
2395 * Just to make our life interesting, some newer Lenovo ThinkPads have
2396 * bugs in the BIOS and may fail to update volume_toggle properly.
2397 */
2398 if (newn->mute) {
2399 /* muted */
2400 if (!oldn->mute ||
2401 oldn->volume_toggle != newn->volume_toggle ||
2402 oldn->volume_level != newn->volume_level) {
2403 /* recently muted, or repeated mute keypress, or
2404 * multiple presses ending in mute */
2405 issue_volchange(oldn->volume_level, newn->volume_level);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002406 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
2407 }
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002408 } else {
2409 /* unmute */
2410 if (oldn->mute) {
2411 /* recently unmuted, issue 'unmute' keypress */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002412 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002413 }
2414 if (oldn->volume_level != newn->volume_level) {
2415 issue_volchange(oldn->volume_level, newn->volume_level);
2416 } else if (oldn->volume_toggle != newn->volume_toggle) {
2417 /* repeated vol up/down keypress at end of scale ? */
2418 if (newn->volume_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002419 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
Henrique de Moraes Holschuh5d756db2010-05-16 19:45:28 -03002420 else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
2421 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002422 }
2423 }
2424
2425 /* handle brightness */
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002426 if (oldn->brightness_level != newn->brightness_level) {
2427 issue_brightnesschange(oldn->brightness_level,
2428 newn->brightness_level);
2429 } else if (oldn->brightness_toggle != newn->brightness_toggle) {
2430 /* repeated key presses that didn't change state */
2431 if (newn->brightness_level == 0)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002432 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuh28999022010-05-16 19:45:36 -03002433 else if (newn->brightness_level >= bright_maxlvl
2434 && !tp_features.bright_unkfw)
2435 TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002436 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002437
2438#undef TPACPI_COMPARE_KEY
2439#undef TPACPI_MAY_SEND_KEY
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002440}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002441
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002442/*
2443 * Polling driver
2444 *
2445 * We track all events in hotkey_source_mask all the time, since
2446 * most of them are edge-based. We only issue those requested by
2447 * hotkey_user_mask or hotkey_driver_mask, though.
2448 */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002449static int hotkey_kthread(void *data)
2450{
2451 struct tp_nvram_state s[2];
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002452 u32 poll_mask, event_mask;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002453 unsigned int si, so;
2454 unsigned long t;
Tejun Heo8a32c442011-11-21 12:32:23 -08002455 unsigned int change_detector;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002456 unsigned int poll_freq;
Tejun Heo8a32c442011-11-21 12:32:23 -08002457 bool was_frozen;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002458
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002459 if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
2460 goto exit;
2461
2462 set_freezable();
2463
2464 so = 0;
2465 si = 1;
2466 t = 0;
2467
2468 /* Initial state for compares */
2469 mutex_lock(&hotkey_thread_data_mutex);
2470 change_detector = hotkey_config_change;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002471 poll_mask = hotkey_source_mask;
2472 event_mask = hotkey_source_mask &
2473 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002474 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002475 mutex_unlock(&hotkey_thread_data_mutex);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002476 hotkey_read_nvram(&s[so], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002477
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002478 while (!kthread_should_stop()) {
2479 if (t == 0) {
2480 if (likely(poll_freq))
2481 t = 1000/poll_freq;
2482 else
2483 t = 100; /* should never happen... */
2484 }
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002485 t = msleep_interruptible(t);
Tejun Heo8a32c442011-11-21 12:32:23 -08002486 if (unlikely(kthread_freezable_should_stop(&was_frozen)))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002487 break;
Tejun Heo8a32c442011-11-21 12:32:23 -08002488
2489 if (t > 0 && !was_frozen)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002490 continue;
2491
2492 mutex_lock(&hotkey_thread_data_mutex);
Tejun Heo8a32c442011-11-21 12:32:23 -08002493 if (was_frozen || hotkey_config_change != change_detector) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002494 /* forget old state on thaw or config change */
2495 si = so;
2496 t = 0;
2497 change_detector = hotkey_config_change;
2498 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002499 poll_mask = hotkey_source_mask;
2500 event_mask = hotkey_source_mask &
2501 (hotkey_driver_mask | hotkey_user_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002502 poll_freq = hotkey_poll_freq;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002503 mutex_unlock(&hotkey_thread_data_mutex);
2504
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002505 if (likely(poll_mask)) {
2506 hotkey_read_nvram(&s[si], poll_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002507 if (likely(si != so)) {
2508 hotkey_compare_and_issue_event(&s[so], &s[si],
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002509 event_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002510 }
2511 }
2512
2513 so = si;
2514 si ^= 1;
2515 }
2516
2517exit:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002518 return 0;
2519}
2520
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002521/* call with hotkey_mutex held */
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002522static void hotkey_poll_stop_sync(void)
2523{
2524 if (tpacpi_hotkey_task) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002525 kthread_stop(tpacpi_hotkey_task);
2526 tpacpi_hotkey_task = NULL;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002527 }
2528}
2529
2530/* call with hotkey_mutex held */
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002531static void hotkey_poll_setup(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002532{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002533 const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
2534 const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002535
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002536 if (hotkey_poll_freq > 0 &&
2537 (poll_driver_mask ||
2538 (poll_user_mask && tpacpi_inputdev->users > 0))) {
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002539 if (!tpacpi_hotkey_task) {
2540 tpacpi_hotkey_task = kthread_run(hotkey_kthread,
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03002541 NULL, TPACPI_NVRAM_KTHREAD_NAME);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002542 if (IS_ERR(tpacpi_hotkey_task)) {
2543 tpacpi_hotkey_task = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07002544 pr_err("could not create kernel thread "
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002545 "for hotkey polling\n");
2546 }
2547 }
2548 } else {
2549 hotkey_poll_stop_sync();
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002550 if (may_warn && (poll_driver_mask || poll_user_mask) &&
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002551 hotkey_poll_freq == 0) {
Joe Perches0978e012011-04-04 10:06:25 -07002552 pr_notice("hot keys 0x%08x and/or events 0x%08x "
2553 "require polling, which is currently "
2554 "disabled\n",
2555 poll_user_mask, poll_driver_mask);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002556 }
2557 }
2558}
2559
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002560static void hotkey_poll_setup_safe(const bool may_warn)
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002561{
2562 mutex_lock(&hotkey_mutex);
2563 hotkey_poll_setup(may_warn);
2564 mutex_unlock(&hotkey_mutex);
2565}
2566
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002567/* call with hotkey_mutex held */
2568static void hotkey_poll_set_freq(unsigned int freq)
2569{
2570 if (!freq)
2571 hotkey_poll_stop_sync();
2572
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002573 hotkey_poll_freq = freq;
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002574}
2575
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002576#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2577
Henrique de Moraes Holschuh7f0cf712010-02-25 21:29:00 -03002578static void hotkey_poll_setup(const bool __unused)
2579{
2580}
2581
2582static void hotkey_poll_setup_safe(const bool __unused)
Henrique de Moraes Holschuh1bc6b9c2008-02-16 02:17:52 -02002583{
2584}
2585
2586#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2587
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002588static int hotkey_inputdev_open(struct input_dev *dev)
2589{
2590 switch (tpacpi_lifecycle) {
2591 case TPACPI_LIFE_INIT:
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002592 case TPACPI_LIFE_RUNNING:
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002593 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002594 return 0;
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002595 case TPACPI_LIFE_EXITING:
2596 return -EBUSY;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002597 }
2598
2599 /* Should only happen if tpacpi_lifecycle is corrupt */
2600 BUG();
2601 return -EBUSY;
2602}
2603
2604static void hotkey_inputdev_close(struct input_dev *dev)
2605{
2606 /* disable hotkey polling when possible */
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03002607 if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002608 !(hotkey_source_mask & hotkey_driver_mask))
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002609 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002610}
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002611
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002612/* sysfs hotkey enable ------------------------------------------------- */
2613static ssize_t hotkey_enable_show(struct device *dev,
2614 struct device_attribute *attr,
2615 char *buf)
2616{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002617 int res, status;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002618
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002619 printk_deprecated_attribute("hotkey_enable",
2620 "Hotkey reporting is always enabled");
2621
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002622 res = hotkey_status_get(&status);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002623 if (res)
2624 return res;
2625
2626 return snprintf(buf, PAGE_SIZE, "%d\n", status);
2627}
2628
2629static ssize_t hotkey_enable_store(struct device *dev,
2630 struct device_attribute *attr,
2631 const char *buf, size_t count)
2632{
2633 unsigned long t;
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002634
2635 printk_deprecated_attribute("hotkey_enable",
2636 "Hotkeys can be disabled through hotkey_mask");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002637
2638 if (parse_strtoul(buf, 1, &t))
2639 return -EINVAL;
2640
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002641 if (t == 0)
2642 return -EPERM;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002643
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002644 return count;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002645}
2646
2647static struct device_attribute dev_attr_hotkey_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002648 __ATTR(hotkey_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002649 hotkey_enable_show, hotkey_enable_store);
2650
2651/* sysfs hotkey mask --------------------------------------------------- */
2652static ssize_t hotkey_mask_show(struct device *dev,
2653 struct device_attribute *attr,
2654 char *buf)
2655{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002656 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_user_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002657}
2658
2659static ssize_t hotkey_mask_store(struct device *dev,
2660 struct device_attribute *attr,
2661 const char *buf, size_t count)
2662{
2663 unsigned long t;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002664 int res;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002665
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002666 if (parse_strtoul(buf, 0xffffffffUL, &t))
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002667 return -EINVAL;
2668
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002669 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002670 return -ERESTARTSYS;
2671
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002672 res = hotkey_user_mask_set(t);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002673
2674#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002675 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002676#endif
2677
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02002678 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002679
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002680 tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
2681
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002682 return (res) ? res : count;
2683}
2684
2685static struct device_attribute dev_attr_hotkey_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002686 __ATTR(hotkey_mask, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002687 hotkey_mask_show, hotkey_mask_store);
2688
2689/* sysfs hotkey bios_enabled ------------------------------------------- */
2690static ssize_t hotkey_bios_enabled_show(struct device *dev,
2691 struct device_attribute *attr,
2692 char *buf)
2693{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00002694 return sprintf(buf, "0\n");
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002695}
2696
2697static struct device_attribute dev_attr_hotkey_bios_enabled =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002698 __ATTR(hotkey_bios_enabled, S_IRUGO, hotkey_bios_enabled_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002699
2700/* sysfs hotkey bios_mask ---------------------------------------------- */
2701static ssize_t hotkey_bios_mask_show(struct device *dev,
2702 struct device_attribute *attr,
2703 char *buf)
2704{
Henrique de Moraes Holschuh06777be2009-09-12 15:22:15 -03002705 printk_deprecated_attribute("hotkey_bios_mask",
2706 "This attribute is useless.");
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03002707 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_orig_mask);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002708}
2709
2710static struct device_attribute dev_attr_hotkey_bios_mask =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03002711 __ATTR(hotkey_bios_mask, S_IRUGO, hotkey_bios_mask_show, NULL);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002712
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002713/* sysfs hotkey all_mask ----------------------------------------------- */
2714static ssize_t hotkey_all_mask_show(struct device *dev,
2715 struct device_attribute *attr,
2716 char *buf)
2717{
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002718 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
2719 hotkey_all_mask | hotkey_source_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002720}
2721
2722static struct device_attribute dev_attr_hotkey_all_mask =
2723 __ATTR(hotkey_all_mask, S_IRUGO, hotkey_all_mask_show, NULL);
2724
2725/* sysfs hotkey recommended_mask --------------------------------------- */
2726static ssize_t hotkey_recommended_mask_show(struct device *dev,
2727 struct device_attribute *attr,
2728 char *buf)
2729{
2730 return snprintf(buf, PAGE_SIZE, "0x%08x\n",
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002731 (hotkey_all_mask | hotkey_source_mask)
2732 & ~hotkey_reserved_mask);
Henrique de Moraes Holschuh9b010de2007-07-18 23:45:30 -03002733}
2734
2735static struct device_attribute dev_attr_hotkey_recommended_mask =
2736 __ATTR(hotkey_recommended_mask, S_IRUGO,
2737 hotkey_recommended_mask_show, NULL);
2738
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002739#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
2740
2741/* sysfs hotkey hotkey_source_mask ------------------------------------- */
2742static ssize_t hotkey_source_mask_show(struct device *dev,
2743 struct device_attribute *attr,
2744 char *buf)
2745{
2746 return snprintf(buf, PAGE_SIZE, "0x%08x\n", hotkey_source_mask);
2747}
2748
2749static ssize_t hotkey_source_mask_store(struct device *dev,
2750 struct device_attribute *attr,
2751 const char *buf, size_t count)
2752{
2753 unsigned long t;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002754 u32 r_ev;
2755 int rc;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002756
2757 if (parse_strtoul(buf, 0xffffffffUL, &t) ||
2758 ((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
2759 return -EINVAL;
2760
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002761 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002762 return -ERESTARTSYS;
2763
2764 HOTKEY_CONFIG_CRITICAL_START
2765 hotkey_source_mask = t;
2766 HOTKEY_CONFIG_CRITICAL_END
2767
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002768 rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
2769 ~hotkey_source_mask);
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002770 hotkey_poll_setup(true);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002771
2772 /* check if events needed by the driver got disabled */
2773 r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
2774 & ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002775
2776 mutex_unlock(&hotkey_mutex);
2777
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002778 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07002779 pr_err("hotkey_source_mask: "
2780 "failed to update the firmware event mask!\n");
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002781
2782 if (r_ev)
Joe Perches0978e012011-04-04 10:06:25 -07002783 pr_notice("hotkey_source_mask: "
2784 "some important events were disabled: 0x%04x\n",
2785 r_ev);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002786
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002787 tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
2788
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002789 return (rc < 0) ? rc : count;
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002790}
2791
2792static struct device_attribute dev_attr_hotkey_source_mask =
2793 __ATTR(hotkey_source_mask, S_IWUSR | S_IRUGO,
2794 hotkey_source_mask_show, hotkey_source_mask_store);
2795
2796/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
2797static ssize_t hotkey_poll_freq_show(struct device *dev,
2798 struct device_attribute *attr,
2799 char *buf)
2800{
2801 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_poll_freq);
2802}
2803
2804static ssize_t hotkey_poll_freq_store(struct device *dev,
2805 struct device_attribute *attr,
2806 const char *buf, size_t count)
2807{
2808 unsigned long t;
2809
2810 if (parse_strtoul(buf, 25, &t))
2811 return -EINVAL;
2812
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02002813 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002814 return -ERESTARTSYS;
2815
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002816 hotkey_poll_set_freq(t);
2817 hotkey_poll_setup(true);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002818
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002819 mutex_unlock(&hotkey_mutex);
2820
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00002821 tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
2822
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002823 return count;
2824}
2825
2826static struct device_attribute dev_attr_hotkey_poll_freq =
2827 __ATTR(hotkey_poll_freq, S_IWUSR | S_IRUGO,
2828 hotkey_poll_freq_show, hotkey_poll_freq_store);
2829
2830#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
2831
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002832/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002833static ssize_t hotkey_radio_sw_show(struct device *dev,
2834 struct device_attribute *attr,
2835 char *buf)
2836{
Johannes Berg19d337d2009-06-02 13:01:37 +02002837 int res;
2838 res = hotkey_get_wlsw();
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002839 if (res < 0)
2840 return res;
2841
Johannes Berg19d337d2009-06-02 13:01:37 +02002842 /* Opportunistic update */
2843 tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
2844
2845 return snprintf(buf, PAGE_SIZE, "%d\n",
2846 (res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03002847}
2848
2849static struct device_attribute dev_attr_hotkey_radio_sw =
2850 __ATTR(hotkey_radio_sw, S_IRUGO, hotkey_radio_sw_show, NULL);
2851
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002852static void hotkey_radio_sw_notify_change(void)
2853{
2854 if (tp_features.hotkey_wlsw)
2855 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2856 "hotkey_radio_sw");
2857}
2858
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02002859/* sysfs hotkey tablet mode (pollable) --------------------------------- */
2860static ssize_t hotkey_tablet_mode_show(struct device *dev,
2861 struct device_attribute *attr,
2862 char *buf)
2863{
2864 int res, s;
2865 res = hotkey_get_tablet_mode(&s);
2866 if (res < 0)
2867 return res;
2868
2869 return snprintf(buf, PAGE_SIZE, "%d\n", !!s);
2870}
2871
2872static struct device_attribute dev_attr_hotkey_tablet_mode =
2873 __ATTR(hotkey_tablet_mode, S_IRUGO, hotkey_tablet_mode_show, NULL);
2874
2875static void hotkey_tablet_mode_notify_change(void)
2876{
2877 if (tp_features.hotkey_tablet)
2878 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2879 "hotkey_tablet_mode");
2880}
2881
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002882/* sysfs wakeup reason (pollable) -------------------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002883static ssize_t hotkey_wakeup_reason_show(struct device *dev,
2884 struct device_attribute *attr,
2885 char *buf)
2886{
2887 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_wakeup_reason);
2888}
2889
2890static struct device_attribute dev_attr_hotkey_wakeup_reason =
2891 __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
2892
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002893static void hotkey_wakeup_reason_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002894{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002895 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2896 "wakeup_reason");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002897}
2898
2899/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02002900static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
2901 struct device_attribute *attr,
2902 char *buf)
2903{
2904 return snprintf(buf, PAGE_SIZE, "%d\n", hotkey_autosleep_ack);
2905}
2906
2907static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete =
2908 __ATTR(wakeup_hotunplug_complete, S_IRUGO,
2909 hotkey_wakeup_hotunplug_complete_show, NULL);
2910
Adrian Bunk1d5a2b52008-02-13 23:30:06 +02002911static void hotkey_wakeup_hotunplug_complete_notify_change(void)
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002912{
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002913 sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
2914 "wakeup_hotunplug_complete");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02002915}
2916
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03002917/* --------------------------------------------------------------------- */
2918
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002919static struct attribute *hotkey_attributes[] __initdata = {
2920 &dev_attr_hotkey_enable.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002921 &dev_attr_hotkey_bios_enabled.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002922 &dev_attr_hotkey_bios_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002923 &dev_attr_hotkey_wakeup_reason.attr,
2924 &dev_attr_hotkey_wakeup_hotunplug_complete.attr,
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002925 &dev_attr_hotkey_mask.attr,
2926 &dev_attr_hotkey_all_mask.attr,
2927 &dev_attr_hotkey_recommended_mask.attr,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002928#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02002929 &dev_attr_hotkey_source_mask.attr,
2930 &dev_attr_hotkey_poll_freq.attr,
2931#endif
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03002932};
2933
Johannes Berg19d337d2009-06-02 13:01:37 +02002934/*
2935 * Sync both the hw and sw blocking state of all switches
2936 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002937static void tpacpi_send_radiosw_update(void)
2938{
2939 int wlsw;
2940
Johannes Berg19d337d2009-06-02 13:01:37 +02002941 /*
2942 * We must sync all rfkill controllers *before* issuing any
2943 * rfkill input events, or we will race the rfkill core input
2944 * handler.
2945 *
Lucas De Marchic8440332011-03-17 17:18:22 -03002946 * tpacpi_inputdev_send_mutex works as a synchronization point
Johannes Berg19d337d2009-06-02 13:01:37 +02002947 * for the above.
2948 *
2949 * We optimize to avoid numerous calls to hotkey_get_wlsw.
2950 */
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03002951
Johannes Berg19d337d2009-06-02 13:01:37 +02002952 wlsw = hotkey_get_wlsw();
2953
2954 /* Sync hw blocking state first if it is hw-blocked */
2955 if (wlsw == TPACPI_RFK_RADIO_OFF)
2956 tpacpi_rfk_update_hwblock_state(true);
2957
2958 /* Sync sw blocking state */
2959 tpacpi_rfk_update_swstate_all();
2960
2961 /* Sync hw blocking state last if it is hw-unblocked */
2962 if (wlsw == TPACPI_RFK_RADIO_ON)
2963 tpacpi_rfk_update_hwblock_state(false);
2964
2965 /* Issue rfkill input event for WLSW switch */
2966 if (!(wlsw < 0)) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002967 mutex_lock(&tpacpi_inputdev_send_mutex);
2968
2969 input_report_switch(tpacpi_inputdev,
Johannes Berg19d337d2009-06-02 13:01:37 +02002970 SW_RFKILL_ALL, (wlsw > 0));
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002971 input_sync(tpacpi_inputdev);
2972
2973 mutex_unlock(&tpacpi_inputdev_send_mutex);
2974 }
Johannes Berg19d337d2009-06-02 13:01:37 +02002975
2976 /*
2977 * this can be unconditional, as we will poll state again
2978 * if userspace uses the notify to read data
2979 */
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03002980 hotkey_radio_sw_notify_change();
2981}
2982
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002983static void hotkey_exit(void)
2984{
2985#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002986 mutex_lock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002987 hotkey_poll_stop_sync();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03002988 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03002989#endif
2990
2991 if (hotkey_dev_attributes)
2992 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
2993
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03002994 dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03002995 "restoring original HKEY status and mask\n");
2996 /* yes, there is a bitwise or below, we want the
2997 * functions to be called even if one of them fail */
2998 if (((tp_features.hotkey_mask &&
2999 hotkey_mask_set(hotkey_orig_mask)) |
3000 hotkey_status_set(false)) != 0)
Joe Perches0978e012011-04-04 10:06:25 -07003001 pr_err("failed to restore hot key mask "
Henrique de Moraes Holschuh4be73002009-09-20 14:09:23 -03003002 "to BIOS defaults\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003003}
3004
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003005static void __init hotkey_unmap(const unsigned int scancode)
3006{
3007 if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
3008 clear_bit(hotkey_keycode_map[scancode],
3009 tpacpi_inputdev->keybit);
3010 hotkey_keycode_map[scancode] = KEY_RESERVED;
3011 }
3012}
3013
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003014/*
3015 * HKEY quirks:
3016 * TPACPI_HK_Q_INIMASK: Supports FN+F3,FN+F4,FN+F12
3017 */
3018
3019#define TPACPI_HK_Q_INIMASK 0x0001
3020
3021static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
3022 TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
3023 TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
3024 TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
3025 TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
3026 TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
3027 TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
3028 TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
3029 TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
3030 TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
3031 TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
3032 TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
3033 TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
3034 TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
3035 TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
3036 TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
3037 TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
3038 TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
3039 TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
3040 TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
3041};
3042
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003043typedef u16 tpacpi_keymap_entry_t;
3044typedef tpacpi_keymap_entry_t tpacpi_keymap_t[TPACPI_HOTKEY_MAP_LEN];
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003045
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003046static int __init hotkey_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003047{
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003048 /* Requirements for changing the default keymaps:
3049 *
3050 * 1. Many of the keys are mapped to KEY_RESERVED for very
3051 * good reasons. Do not change them unless you have deep
3052 * knowledge on the IBM and Lenovo ThinkPad firmware for
3053 * the various ThinkPad models. The driver behaves
3054 * differently for KEY_RESERVED: such keys have their
3055 * hot key mask *unset* in mask_recommended, and also
3056 * in the initial hot key mask programmed into the
3057 * firmware at driver load time, which means the firm-
3058 * ware may react very differently if you change them to
3059 * something else;
3060 *
3061 * 2. You must be subscribed to the linux-thinkpad and
3062 * ibm-acpi-devel mailing lists, and you should read the
3063 * list archives since 2007 if you want to change the
3064 * keymaps. This requirement exists so that you will
3065 * know the past history of problems with the thinkpad-
3066 * acpi driver keymaps, and also that you will be
3067 * listening to any bug reports;
3068 *
3069 * 3. Do not send thinkpad-acpi specific patches directly to
3070 * for merging, *ever*. Send them to the linux-acpi
3071 * mailinglist for comments. Merging is to be done only
3072 * through acpi-test and the ACPI maintainer.
3073 *
3074 * If the above is too much to ask, don't change the keymap.
3075 * Ask the thinkpad-acpi maintainer to do it, instead.
3076 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003077
3078 enum keymap_index {
3079 TPACPI_KEYMAP_IBM_GENERIC = 0,
3080 TPACPI_KEYMAP_LENOVO_GENERIC,
3081 };
3082
3083 static const tpacpi_keymap_t tpacpi_keymaps[] __initconst = {
3084 /* Generic keymap for IBM ThinkPads */
3085 [TPACPI_KEYMAP_IBM_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003086 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003087 KEY_FN_F1, KEY_BATTERY, KEY_COFFEE, KEY_SLEEP,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003088 KEY_WLAN, KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
3089 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003090
3091 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003092 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3093 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3094 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003095
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003096 /* brightness: firmware always reacts to them */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003097 KEY_RESERVED, /* 0x0F: FN+HOME (brightness up) */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003098 KEY_RESERVED, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003099
3100 /* Thinklight: firmware always react to it */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003101 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003102
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003103 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3104 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003105
3106 /* Volume: firmware always react to it and reprograms
3107 * the built-in *extra* mixer. Never map it to control
3108 * another mixer by default. */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003109 KEY_RESERVED, /* 0x14: VOLUME UP */
3110 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3111 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003112
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003113 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003114
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003115 /* (assignments unknown, please report if found) */
3116 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
3117 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003118 },
3119
3120 /* Generic keymap for Lenovo ThinkPads */
3121 [TPACPI_KEYMAP_LENOVO_GENERIC] = {
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003122 /* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
3123 KEY_FN_F1, KEY_COFFEE, KEY_BATTERY, KEY_SLEEP,
Jens Taprogge2b754262010-08-09 23:48:22 -03003124 KEY_WLAN, KEY_CAMERA, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003125 KEY_FN_F9, KEY_FN_F10, KEY_FN_F11, KEY_SUSPEND,
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003126
3127 /* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003128 KEY_UNKNOWN, /* 0x0C: FN+BACKSPACE */
3129 KEY_UNKNOWN, /* 0x0D: FN+INSERT */
3130 KEY_UNKNOWN, /* 0x0E: FN+DELETE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003131
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003132 /* These should be enabled --only-- when ACPI video
3133 * is disabled (i.e. in "vendor" mode), and are handled
3134 * in a special way by the init code */
3135 KEY_BRIGHTNESSUP, /* 0x0F: FN+HOME (brightness up) */
3136 KEY_BRIGHTNESSDOWN, /* 0x10: FN+END (brightness down) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003137
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003138 KEY_RESERVED, /* 0x11: FN+PGUP (thinklight toggle) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003139
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003140 KEY_UNKNOWN, /* 0x12: FN+PGDOWN */
3141 KEY_ZOOM, /* 0x13: FN+SPACE (zoom) */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003142
3143 /* Volume: z60/z61, T60 (BIOS version?): firmware always
3144 * react to it and reprograms the built-in *extra* mixer.
3145 * Never map it to control another mixer by default.
3146 *
3147 * T60?, T61, R60?, R61: firmware and EC tries to send
3148 * these over the regular keyboard, so these are no-ops,
3149 * but there are still weird bugs re. MUTE, so do not
3150 * change unless you get test reports from all Lenovo
3151 * models. May cause the BIOS to interfere with the
3152 * HDA mixer.
3153 */
Henrique de Moraes Holschuhe927c082007-10-30 17:46:19 -02003154 KEY_RESERVED, /* 0x14: VOLUME UP */
3155 KEY_RESERVED, /* 0x15: VOLUME DOWN */
3156 KEY_RESERVED, /* 0x16: MUTE */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003157
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003158 KEY_VENDOR, /* 0x17: Thinkpad/AccessIBM/Lenovo */
Henrique de Moraes Holschuh0f089142008-01-08 13:02:38 -02003159
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003160 /* (assignments unknown, please report if found) */
Andy Lutomirski33009552011-05-24 15:16:43 -04003161 KEY_UNKNOWN, KEY_UNKNOWN,
3162
3163 /*
3164 * The mic mute button only sends 0x1a. It does not
3165 * automatically mute the mic or change the mute light.
3166 */
3167 KEY_MICMUTE, /* 0x1a: Mic mute (since ?400 or so) */
3168
3169 /* (assignments unknown, please report if found) */
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003170 KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
Andy Lutomirski33009552011-05-24 15:16:43 -04003171 KEY_UNKNOWN,
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003172 },
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003173 };
3174
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003175 static const struct tpacpi_quirk tpacpi_keymap_qtable[] __initconst = {
3176 /* Generic maps (fallback) */
3177 {
3178 .vendor = PCI_VENDOR_ID_IBM,
3179 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3180 .quirks = TPACPI_KEYMAP_IBM_GENERIC,
3181 },
3182 {
3183 .vendor = PCI_VENDOR_ID_LENOVO,
3184 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
3185 .quirks = TPACPI_KEYMAP_LENOVO_GENERIC,
3186 },
3187 };
3188
3189#define TPACPI_HOTKEY_MAP_SIZE sizeof(tpacpi_keymap_t)
Henrique de Moraes Holschuhfc6e7562010-09-17 21:53:41 -03003190#define TPACPI_HOTKEY_MAP_TYPESIZE sizeof(tpacpi_keymap_entry_t)
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003191
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003192 int res, i;
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003193 int status;
Henrique de Moraes Holschuh1b6521d2007-09-23 11:39:03 -03003194 int hkeyv;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003195 bool radiosw_state = false;
3196 bool tabletsw_state = false;
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003197
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003198 unsigned long quirks;
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003199 unsigned long keymap_id;
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003200
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003201 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3202 "initializing hotkey subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003203
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003204 BUG_ON(!tpacpi_inputdev);
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003205 BUG_ON(tpacpi_inputdev->open != NULL ||
3206 tpacpi_inputdev->close != NULL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003207
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003208 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003209 mutex_init(&hotkey_mutex);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003210
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003211#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh01e88f22008-01-08 13:02:41 -02003212 mutex_init(&hotkey_thread_data_mutex);
3213#endif
3214
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003215 /* hotkey not supported on 570 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003216 tp_features.hotkey = hkey_handle != NULL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003217
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003218 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3219 "hotkeys are %s\n",
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003220 str_supported(tp_features.hotkey));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003221
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003222 if (!tp_features.hotkey)
3223 return 1;
3224
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003225 quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
3226 ARRAY_SIZE(tpacpi_hotkey_qtable));
3227
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03003228 tpacpi_disable_brightness_delay();
3229
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003230 /* MUST have enough space for all attributes to be added to
3231 * hotkey_dev_attributes */
3232 hotkey_dev_attributes = create_attr_set(
3233 ARRAY_SIZE(hotkey_attributes) + 2,
3234 NULL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003235 if (!hotkey_dev_attributes)
3236 return -ENOMEM;
3237 res = add_many_to_attr_set(hotkey_dev_attributes,
3238 hotkey_attributes,
3239 ARRAY_SIZE(hotkey_attributes));
3240 if (res)
3241 goto err_exit;
3242
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003243 /* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003244 A30, R30, R31, T20-22, X20-21, X22-24. Detected by checking
3245 for HKEY interface version 0x100 */
3246 if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
3247 if ((hkeyv >> 8) != 1) {
Joe Perches0978e012011-04-04 10:06:25 -07003248 pr_err("unknown version of the HKEY interface: 0x%x\n",
3249 hkeyv);
3250 pr_err("please report this to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003251 } else {
3252 /*
3253 * MHKV 0x100 in A31, R40, R40e,
3254 * T4x, X31, and later
3255 */
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003256 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3257 "firmware HKEY interface version: 0x%x\n",
3258 hkeyv);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003259
3260 /* Paranoia check AND init hotkey_all_mask */
3261 if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
3262 "MHKA", "qd")) {
Joe Perches0978e012011-04-04 10:06:25 -07003263 pr_err("missing MHKA handler, "
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003264 "please report this to %s\n",
3265 TPACPI_MAIL);
3266 /* Fallback: pre-init for FN+F3,F4,F12 */
3267 hotkey_all_mask = 0x080cU;
3268 } else {
3269 tp_features.hotkey_mask = 1;
3270 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003271 }
3272 }
3273
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003274 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3275 "hotkey masks are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003276 str_supported(tp_features.hotkey_mask));
3277
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003278 /* Init hotkey_all_mask if not initialized yet */
3279 if (!tp_features.hotkey_mask && !hotkey_all_mask &&
3280 (quirks & TPACPI_HK_Q_INIMASK))
3281 hotkey_all_mask = 0x080cU; /* FN+F12, FN+F4, FN+F3 */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003282
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003283 /* Init hotkey_acpi_mask and hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003284 if (tp_features.hotkey_mask) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003285 /* hotkey_source_mask *must* be zero for
3286 * the first hotkey_mask_get to return hotkey_orig_mask */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003287 res = hotkey_mask_get();
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003288 if (res)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003289 goto err_exit;
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003290
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003291 hotkey_orig_mask = hotkey_acpi_mask;
3292 } else {
3293 hotkey_orig_mask = hotkey_all_mask;
3294 hotkey_acpi_mask = hotkey_all_mask;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003295 }
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003296
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003297#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3298 if (dbg_wlswemul) {
3299 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003300 radiosw_state = !!tpacpi_wlsw_emulstate;
Joe Perches0978e012011-04-04 10:06:25 -07003301 pr_info("radio switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003302 } else
3303#endif
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003304 /* Not all thinkpads have a hardware radio switch */
3305 if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
3306 tp_features.hotkey_wlsw = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003307 radiosw_state = !!status;
Joe Perches0978e012011-04-04 10:06:25 -07003308 pr_info("radio switch found; radios are %s\n",
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003309 enabled(status, 0));
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03003310 }
3311 if (tp_features.hotkey_wlsw)
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003312 res = add_to_attr_set(hotkey_dev_attributes,
3313 &dev_attr_hotkey_radio_sw.attr);
Henrique de Moraes Holschuh74941a62007-07-18 23:45:31 -03003314
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003315 /* For X41t, X60t, X61t Tablets... */
3316 if (!res && acpi_evalf(hkey_handle, &status, "MHKG", "qd")) {
3317 tp_features.hotkey_tablet = 1;
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003318 tabletsw_state = !!(status & TP_HOTKEY_TABLET_MASK);
Joe Perches0978e012011-04-04 10:06:25 -07003319 pr_info("possible tablet mode switch found; "
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003320 "ThinkPad in %s mode\n",
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003321 (tabletsw_state) ? "tablet" : "laptop");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003322 res = add_to_attr_set(hotkey_dev_attributes,
3323 &dev_attr_hotkey_tablet_mode.attr);
3324 }
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003325
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003326 if (!res)
3327 res = register_attr_set_with_sysfs(
3328 hotkey_dev_attributes,
3329 &tpacpi_pdev->dev.kobj);
3330 if (res)
3331 goto err_exit;
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003332
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003333 /* Set up key map */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003334 hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE,
3335 GFP_KERNEL);
3336 if (!hotkey_keycode_map) {
Joe Perches0978e012011-04-04 10:06:25 -07003337 pr_err("failed to allocate memory for key map\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003338 res = -ENOMEM;
3339 goto err_exit;
3340 }
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003341
Henrique de Moraes Holschuhd1e14dc2010-08-09 23:48:21 -03003342 keymap_id = tpacpi_check_quirks(tpacpi_keymap_qtable,
3343 ARRAY_SIZE(tpacpi_keymap_qtable));
3344 BUG_ON(keymap_id >= ARRAY_SIZE(tpacpi_keymaps));
3345 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3346 "using keymap number %lu\n", keymap_id);
3347
3348 memcpy(hotkey_keycode_map, &tpacpi_keymaps[keymap_id],
3349 TPACPI_HOTKEY_MAP_SIZE);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003350
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003351 input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003352 tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
3353 tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
3354 tpacpi_inputdev->keycode = hotkey_keycode_map;
3355 for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
3356 if (hotkey_keycode_map[i] != KEY_RESERVED) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003357 input_set_capability(tpacpi_inputdev, EV_KEY,
3358 hotkey_keycode_map[i]);
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003359 } else {
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003360 if (i < sizeof(hotkey_reserved_mask)*8)
3361 hotkey_reserved_mask |= 1 << i;
Henrique de Moraes Holschuhedf0e0e2007-07-18 23:45:44 -03003362 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003363 }
3364
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003365 if (tp_features.hotkey_wlsw) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003366 input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003367 input_report_switch(tpacpi_inputdev,
3368 SW_RFKILL_ALL, radiosw_state);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003369 }
3370 if (tp_features.hotkey_tablet) {
Henrique de Moraes Holschuh792979c2009-12-09 01:36:29 +00003371 input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
Henrique de Moraes Holschuhd89a7272009-12-15 21:51:06 -02003372 input_report_switch(tpacpi_inputdev,
3373 SW_TABLET_MODE, tabletsw_state);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003374 }
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003375
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003376 /* Do not issue duplicate brightness change events to
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03003377 * userspace. tpacpi_detect_brightness_capabilities() must have
3378 * been called before this point */
Alex Hungff413192012-04-24 16:40:52 +08003379 if (acpi_video_backlight_support()) {
Joe Perches0978e012011-04-04 10:06:25 -07003380 pr_info("This ThinkPad has standard ACPI backlight "
3381 "brightness control, supported by the ACPI "
3382 "video driver\n");
3383 pr_notice("Disabling thinkpad-acpi brightness events "
3384 "by default...\n");
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003385
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003386 /* Disable brightness up/down on Lenovo thinkpads when
3387 * ACPI is handling them, otherwise it is plain impossible
3388 * for userspace to do something even remotely sane */
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003389 hotkey_reserved_mask |=
3390 (1 << TP_ACPI_HOTKEYSCAN_FNHOME)
3391 | (1 << TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuhde4c8cc2009-09-12 15:22:18 -03003392 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
3393 hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003394 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003395
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003396#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003397 hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
3398 & ~hotkey_all_mask
3399 & ~hotkey_reserved_mask;
Henrique de Moraes Holschuh230d8cf252009-09-12 15:22:17 -03003400
3401 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3402 "hotkey source mask 0x%08x, polling freq %u\n",
3403 hotkey_source_mask, hotkey_poll_freq);
3404#endif
3405
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003406 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3407 "enabling firmware HKEY event interface...\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003408 res = hotkey_status_set(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003409 if (res) {
3410 hotkey_exit();
3411 return res;
3412 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003413 res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
3414 | hotkey_driver_mask)
3415 & ~hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003416 if (res < 0 && res != -ENXIO) {
3417 hotkey_exit();
3418 return res;
3419 }
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003420 hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
3421 & ~hotkey_reserved_mask;
3422 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
3423 "initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
3424 hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003425
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003426 tpacpi_inputdev->open = &hotkey_inputdev_open;
3427 tpacpi_inputdev->close = &hotkey_inputdev_close;
3428
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003429 hotkey_poll_setup_safe(true);
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03003430
3431 return 0;
3432
3433err_exit:
3434 delete_attr_set(hotkey_dev_attributes, &tpacpi_pdev->dev.kobj);
3435 hotkey_dev_attributes = NULL;
3436
3437 return (res < 0)? res : 1;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003438}
3439
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003440/* Thinkpad X1 Carbon support 5 modes including Home mode, Web browser
3441 * mode, Web conference mode, Function mode and Lay-flat mode.
3442 * We support Home mode and Function mode currently.
3443 *
3444 * Will consider support rest of modes in future.
3445 *
3446 */
3447enum ADAPTIVE_KEY_MODE {
3448 HOME_MODE,
3449 WEB_BROWSER_MODE,
3450 WEB_CONFERENCE_MODE,
3451 FUNCTION_MODE,
3452 LAYFLAT_MODE
3453};
3454
3455const int adaptive_keyboard_modes[] = {
3456 HOME_MODE,
3457/* WEB_BROWSER_MODE = 2,
3458 WEB_CONFERENCE_MODE = 3, */
3459 FUNCTION_MODE
3460};
3461
3462#define DFR_CHANGE_ROW 0x101
3463#define DFR_SHOW_QUICKVIEW_ROW 0x102
3464
3465/* press Fn key a while second, it will switch to Function Mode. Then
3466 * release Fn key, previous mode be restored.
3467 */
3468static bool adaptive_keyboard_mode_is_saved;
3469static int adaptive_keyboard_prev_mode;
3470
3471static int adaptive_keyboard_get_next_mode(int mode)
3472{
3473 size_t i;
3474 size_t max_mode = ARRAY_SIZE(adaptive_keyboard_modes) - 1;
3475
3476 for (i = 0; i <= max_mode; i++) {
3477 if (adaptive_keyboard_modes[i] == mode)
3478 break;
3479 }
3480
3481 if (i >= max_mode)
3482 i = 0;
3483 else
3484 i++;
3485
3486 return adaptive_keyboard_modes[i];
3487}
3488
3489static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode)
3490{
3491 u32 current_mode = 0;
3492 int new_mode = 0;
3493
3494 switch (scancode) {
3495 case DFR_CHANGE_ROW:
3496 if (adaptive_keyboard_mode_is_saved) {
3497 new_mode = adaptive_keyboard_prev_mode;
3498 adaptive_keyboard_mode_is_saved = false;
3499 } else {
3500 if (!acpi_evalf(
3501 hkey_handle, &current_mode,
3502 "GTRW", "dd", 0)) {
3503 pr_err("Cannot read adaptive keyboard mode\n");
3504 return false;
3505 } else {
3506 new_mode = adaptive_keyboard_get_next_mode(
3507 current_mode);
3508 }
3509 }
3510
3511 if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
3512 pr_err("Cannot set adaptive keyboard mode\n");
3513 return false;
3514 }
3515
3516 return true;
3517
3518 case DFR_SHOW_QUICKVIEW_ROW:
3519 if (!acpi_evalf(hkey_handle,
3520 &adaptive_keyboard_prev_mode,
3521 "GTRW", "dd", 0)) {
3522 pr_err("Cannot read adaptive keyboard mode\n");
3523 return false;
3524 } else {
3525 adaptive_keyboard_mode_is_saved = true;
3526
3527 if (!acpi_evalf(hkey_handle,
3528 NULL, "STRW", "vd", FUNCTION_MODE)) {
3529 pr_err("Cannot set adaptive keyboard mode\n");
3530 return false;
3531 }
3532 }
3533 return true;
3534
3535 default:
3536 return false;
3537 }
3538}
3539
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003540static bool hotkey_notify_hotkey(const u32 hkey,
3541 bool *send_acpi_ev,
3542 bool *ignore_acpi_ev)
3543{
3544 /* 0x1000-0x1FFF: key presses */
3545 unsigned int scancode = hkey & 0xfff;
3546 *send_acpi_ev = true;
3547 *ignore_acpi_ev = false;
3548
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03003549 /* HKEY event 0x1001 is scancode 0x00 */
3550 if (scancode > 0 && scancode <= TPACPI_HOTKEY_MAP_LEN) {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003551 scancode--;
3552 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003553 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003554 *send_acpi_ev = false;
3555 } else {
3556 *ignore_acpi_ev = true;
3557 }
3558 return true;
Shuduo Sang3a9d20b2014-03-06 18:20:46 +08003559 } else {
3560 return adaptive_keyboard_hotkey_notify_hotkey(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003561 }
3562 return false;
3563}
3564
3565static bool hotkey_notify_wakeup(const u32 hkey,
3566 bool *send_acpi_ev,
3567 bool *ignore_acpi_ev)
3568{
3569 /* 0x2000-0x2FFF: Wakeup reason */
3570 *send_acpi_ev = true;
3571 *ignore_acpi_ev = false;
3572
3573 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003574 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3575 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003576 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3577 *ignore_acpi_ev = true;
3578 break;
3579
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003580 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3581 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003582 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3583 *ignore_acpi_ev = true;
3584 break;
3585
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003586 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3587 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Joe Perches0978e012011-04-04 10:06:25 -07003588 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003589 /* how to auto-heal: */
3590 /* 2313: woke up from S3, go to S4/S5 */
3591 /* 2413: woke up from S4, go to S5 */
3592 break;
3593
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003594 default:
3595 return false;
3596 }
3597
3598 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
Joe Perches0978e012011-04-04 10:06:25 -07003599 pr_info("woke up due to a hot-unplug request...\n");
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003600 hotkey_wakeup_reason_notify_change();
3601 }
3602 return true;
3603}
3604
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003605static bool hotkey_notify_dockevent(const u32 hkey,
3606 bool *send_acpi_ev,
3607 bool *ignore_acpi_ev)
3608{
3609 /* 0x4000-0x4FFF: dock-related events */
3610 *send_acpi_ev = true;
3611 *ignore_acpi_ev = false;
3612
3613 switch (hkey) {
3614 case TP_HKEY_EV_UNDOCK_ACK:
3615 /* ACPI undock operation completed after wakeup */
3616 hotkey_autosleep_ack = 1;
3617 pr_info("undocked\n");
3618 hotkey_wakeup_hotunplug_complete_notify_change();
3619 return true;
3620
3621 case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
3622 pr_info("docked into hotplug port replicator\n");
3623 return true;
3624 case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
3625 pr_info("undocked from hotplug port replicator\n");
3626 return true;
3627
3628 default:
3629 return false;
3630 }
3631}
3632
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003633static bool hotkey_notify_usrevent(const u32 hkey,
3634 bool *send_acpi_ev,
3635 bool *ignore_acpi_ev)
3636{
3637 /* 0x5000-0x5FFF: human interface helpers */
3638 *send_acpi_ev = true;
3639 *ignore_acpi_ev = false;
3640
3641 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003642 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3643 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003644 return true;
3645
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003646 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3647 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003648 tpacpi_input_send_tabletsw();
3649 hotkey_tablet_mode_notify_change();
3650 *send_acpi_ev = false;
3651 return true;
3652
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003653 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3654 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3655 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003656 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003657 *ignore_acpi_ev = true;
3658 return true;
3659
3660 default:
3661 return false;
3662 }
3663}
3664
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003665static void thermal_dump_all_sensors(void);
3666
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003667static bool hotkey_notify_6xxx(const u32 hkey,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003668 bool *send_acpi_ev,
3669 bool *ignore_acpi_ev)
3670{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003671 bool known = true;
3672
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003673 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003674 *send_acpi_ev = true;
3675 *ignore_acpi_ev = false;
3676
3677 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003678 case TP_HKEY_EV_THM_TABLE_CHANGED:
Joe Perches0978e012011-04-04 10:06:25 -07003679 pr_info("EC reports that Thermal Table has changed\n");
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003680 /* recommended action: do nothing, we don't have
3681 * Lenovo ATM information */
3682 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003683 case TP_HKEY_EV_ALARM_BAT_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003684 pr_crit("THERMAL ALARM: battery is too hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003685 /* recommended action: warn user through gui */
3686 break;
3687 case TP_HKEY_EV_ALARM_BAT_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003688 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003689 /* recommended action: immediate sleep/hibernate */
3690 break;
3691 case TP_HKEY_EV_ALARM_SENSOR_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003692 pr_crit("THERMAL ALARM: "
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003693 "a sensor reports something is too hot!\n");
3694 /* recommended action: warn user through gui, that */
3695 /* some internal component is too hot */
3696 break;
3697 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003698 pr_alert("THERMAL EMERGENCY: "
3699 "a sensor reports something is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003700 /* recommended action: immediate sleep/hibernate */
3701 break;
Richard Hartmann6f62bc32012-12-29 22:51:49 +01003702 case TP_HKEY_EV_AC_CHANGED:
3703 /* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
3704 * AC status changed; can be triggered by plugging or
3705 * unplugging AC adapter, docking or undocking. */
3706
3707 /* fallthrough */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003708
3709 case TP_HKEY_EV_KEY_NUMLOCK:
3710 case TP_HKEY_EV_KEY_FN:
3711 /* key press events, we just ignore them as long as the EC
3712 * is still reporting them in the normal keyboard stream */
3713 *send_acpi_ev = false;
3714 *ignore_acpi_ev = true;
3715 return true;
3716
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003717 default:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003718 pr_warn("unknown possible thermal alarm or keyboard event received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003719 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003720 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003721
3722 thermal_dump_all_sensors();
3723
3724 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003725}
3726
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003727static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3728{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003729 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003730 bool send_acpi_ev;
3731 bool ignore_acpi_ev;
3732 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003733
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003734 if (event != 0x80) {
Joe Perches0978e012011-04-04 10:06:25 -07003735 pr_err("unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003736 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003737 acpi_bus_generate_netlink_event(
3738 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003739 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003740 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003741 return;
3742 }
3743
3744 while (1) {
3745 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Joe Perches0978e012011-04-04 10:06:25 -07003746 pr_err("failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003747 return;
3748 }
3749
3750 if (hkey == 0) {
3751 /* queue empty */
3752 return;
3753 }
3754
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003755 send_acpi_ev = true;
3756 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003757
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003758 switch (hkey >> 12) {
3759 case 1:
3760 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003761 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3762 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003763 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003764 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003765 /* 0x2000-0x2FFF: Wakeup reason */
3766 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3767 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003768 break;
3769 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003770 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003771 switch (hkey) {
3772 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003773 hotkey_autosleep_ack = 1;
Joe Perches0978e012011-04-04 10:06:25 -07003774 pr_info("bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003775 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003776 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003777 break;
3778 case TP_HKEY_EV_OPTDRV_EJ:
3779 /* FIXME: kick libata if SATA link offline */
3780 known_ev = true;
3781 break;
3782 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003783 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003784 }
3785 break;
3786 case 4:
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003787 /* 0x4000-0x4FFF: dock-related events */
3788 known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev,
3789 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003790 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003791 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003792 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003793 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3794 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003795 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003796 case 6:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003797 /* 0x6000-0x6FFF: thermal alarms/notices and
3798 * keyboard events */
3799 known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003800 &ignore_acpi_ev);
3801 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003802 case 7:
3803 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003804 if (tp_features.hotkey_wlsw &&
3805 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003806 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003807 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003808 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003809 break;
3810 }
3811 /* fallthrough to default */
3812 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003813 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003814 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003815 if (!known_ev) {
Joe Perches0978e012011-04-04 10:06:25 -07003816 pr_notice("unhandled HKEY event 0x%04x\n", hkey);
3817 pr_notice("please report the conditions when this "
3818 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003819 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003820
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003821 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003822 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003823 acpi_bus_generate_netlink_event(
3824 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003825 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003826 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003827 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003828 }
3829}
3830
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02003831static void hotkey_suspend(void)
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003832{
3833 /* Do these on suspend, we get the events on early resume! */
3834 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3835 hotkey_autosleep_ack = 0;
3836}
3837
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003838static void hotkey_resume(void)
3839{
Henrique de Moraes Holschuhd64c81c42008-10-18 14:23:55 -03003840 tpacpi_disable_brightness_delay();
3841
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003842 if (hotkey_status_set(true) < 0 ||
3843 hotkey_mask_set(hotkey_acpi_mask) < 0)
Joe Perches0978e012011-04-04 10:06:25 -07003844 pr_err("error while attempting to reset the event "
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003845 "firmware interface\n");
3846
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003847 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003848 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003849 hotkey_wakeup_reason_notify_change();
3850 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003851 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003852}
3853
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003854/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003855static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003857 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003859 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003860 seq_printf(m, "status:\t\tnot supported\n");
3861 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003862 }
3863
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003864 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003865 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003866 res = hotkey_status_get(&status);
3867 if (!res)
3868 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003869 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003870 if (res)
3871 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003873 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003874 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003875 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
3876 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003878 seq_printf(m, "mask:\t\tnot supported\n");
3879 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 }
3881
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003882 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883}
3884
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003885static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003886{
3887 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003888 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
Joe Perches0978e012011-04-04 10:06:25 -07003889 pr_fmt("hotkey enable/disable functionality has been "
3890 "removed from the driver. "
3891 "Hotkeys are always enabled.\n")))
3892 pr_err("Please remove the hotkey=enable module "
3893 "parameter, it is deprecated. "
3894 "Hotkeys are always enabled.\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003895}
3896
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003897static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003899 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003900 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003903 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 return -ENODEV;
3905
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003906 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003907 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003908
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003909 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003910
3911 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 while ((cmd = next_cmd(&buf))) {
3913 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003914 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003916 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003917 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003919 mask = (hotkey_all_mask | hotkey_source_mask)
3920 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3922 /* mask set */
3923 } else if (sscanf(cmd, "%x", &mask) == 1) {
3924 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003925 } else {
3926 res = -EINVAL;
3927 goto errexit;
3928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003930
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003931 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003932 tpacpi_disclose_usertask("procfs hotkey",
3933 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003934 res = hotkey_user_mask_set(mask);
3935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003937errexit:
3938 mutex_unlock(&hotkey_mutex);
3939 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003940}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003942static const struct acpi_device_id ibm_htk_device_ids[] = {
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -04003943 {TPACPI_ACPI_IBM_HKEY_HID, 0},
3944 {TPACPI_ACPI_LENOVO_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003945 {"", 0},
3946};
3947
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003948static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003949 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003950 .notify = hotkey_notify,
3951 .handle = &hkey_handle,
3952 .type = ACPI_DEVICE_NOTIFY,
3953};
3954
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003955static struct ibm_struct hotkey_driver_data = {
3956 .name = "hotkey",
3957 .read = hotkey_read,
3958 .write = hotkey_write,
3959 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003960 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003961 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003962 .acpi = &ibm_hotkey_acpidriver,
3963};
3964
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003965/*************************************************************************
3966 * Bluetooth subdriver
3967 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003969enum {
3970 /* ACPI GBDC/SBDC bits */
3971 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3972 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003973 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003974 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003975};
3976
3977enum {
3978 /* ACPI \BLTH commands */
3979 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3980 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3981 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3982 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3983 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003984};
3985
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00003986#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3987
Johannes Berg19d337d2009-06-02 13:01:37 +02003988static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003989{
3990 int status;
3991
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003992#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3993 if (dbg_bluetoothemul)
3994 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003995 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003996#endif
3997
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003998 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3999 return -EIO;
4000
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004001 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004002 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004003}
4004
Johannes Berg19d337d2009-06-02 13:01:37 +02004005static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004006{
4007 int status;
4008
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004009 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004010 "will attempt to %s bluetooth\n",
4011 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004012
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004013#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4014 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004015 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004016 return 0;
4017 }
4018#endif
4019
Johannes Berg19d337d2009-06-02 13:01:37 +02004020 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004021 status = TP_ACPI_BLUETOOTH_RADIOSSW
4022 | TP_ACPI_BLUETOOTH_RESUMECTRL;
4023 else
4024 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004025
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004026 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
4027 return -EIO;
4028
4029 return 0;
4030}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004031
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004032/* sysfs bluetooth enable ---------------------------------------------- */
4033static ssize_t bluetooth_enable_show(struct device *dev,
4034 struct device_attribute *attr,
4035 char *buf)
4036{
Johannes Berg19d337d2009-06-02 13:01:37 +02004037 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
4038 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004039}
4040
4041static ssize_t bluetooth_enable_store(struct device *dev,
4042 struct device_attribute *attr,
4043 const char *buf, size_t count)
4044{
Johannes Berg19d337d2009-06-02 13:01:37 +02004045 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
4046 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004047}
4048
4049static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004050 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004051 bluetooth_enable_show, bluetooth_enable_store);
4052
4053/* --------------------------------------------------------------------- */
4054
4055static struct attribute *bluetooth_attributes[] = {
4056 &dev_attr_bluetooth_enable.attr,
4057 NULL
4058};
4059
4060static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004061 .attrs = bluetooth_attributes,
4062};
4063
Johannes Berg19d337d2009-06-02 13:01:37 +02004064static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
4065 .get_status = bluetooth_get_status,
4066 .set_status = bluetooth_set_status,
4067};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004068
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004069static void bluetooth_shutdown(void)
4070{
4071 /* Order firmware to save current state to NVRAM */
4072 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
4073 TP_ACPI_BLTH_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004074 pr_notice("failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004075 else
4076 vdbg_printk(TPACPI_DBG_RFKILL,
Paul Bolle1f013582011-10-06 22:57:56 +02004077 "bluetooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004078}
4079
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004080static void bluetooth_exit(void)
4081{
4082 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4083 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004084
4085 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
4086
4087 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004088}
4089
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004090static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004092 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004093 int status = 0;
4094
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004095 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4096 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004097
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004098 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004099
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004100 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4101 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004102 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004103 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004105 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4106 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004107 str_supported(tp_features.bluetooth),
4108 status);
4109
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004110#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4111 if (dbg_bluetoothemul) {
4112 tp_features.bluetooth = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004113 pr_info("bluetooth switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004114 } else
4115#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004116 if (tp_features.bluetooth &&
4117 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4118 /* no bluetooth hardware present in system */
4119 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004120 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004121 "bluetooth hardware not installed\n");
4122 }
4123
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004124 if (!tp_features.bluetooth)
4125 return 1;
4126
Johannes Berg19d337d2009-06-02 13:01:37 +02004127 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4128 &bluetooth_tprfk_ops,
4129 RFKILL_TYPE_BLUETOOTH,
4130 TPACPI_RFK_BLUETOOTH_SW_NAME,
4131 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004132 if (res)
4133 return res;
4134
Johannes Berg19d337d2009-06-02 13:01:37 +02004135 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4136 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004137 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004138 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004139 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004140 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004141
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143}
4144
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004145/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004146static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004148 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149}
4150
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004151static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152{
Johannes Berg19d337d2009-06-02 13:01:37 +02004153 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}
4155
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004156static struct ibm_struct bluetooth_driver_data = {
4157 .name = "bluetooth",
4158 .read = bluetooth_read,
4159 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004160 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004161 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004162};
4163
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004164/*************************************************************************
4165 * Wan subdriver
4166 */
4167
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004168enum {
4169 /* ACPI GWAN/SWAN bits */
4170 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4171 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004172 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004173 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004174};
4175
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004176#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4177
Johannes Berg19d337d2009-06-02 13:01:37 +02004178static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004179{
4180 int status;
4181
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004182#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4183 if (dbg_wwanemul)
4184 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004185 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004186#endif
4187
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004188 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4189 return -EIO;
4190
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004191 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004192 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004193}
4194
Johannes Berg19d337d2009-06-02 13:01:37 +02004195static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004196{
4197 int status;
4198
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004199 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004200 "will attempt to %s wwan\n",
4201 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004202
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004203#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4204 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004205 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004206 return 0;
4207 }
4208#endif
4209
Johannes Berg19d337d2009-06-02 13:01:37 +02004210 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004211 status = TP_ACPI_WANCARD_RADIOSSW
4212 | TP_ACPI_WANCARD_RESUMECTRL;
4213 else
4214 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004215
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004216 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4217 return -EIO;
4218
4219 return 0;
4220}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004221
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004222/* sysfs wan enable ---------------------------------------------------- */
4223static ssize_t wan_enable_show(struct device *dev,
4224 struct device_attribute *attr,
4225 char *buf)
4226{
Johannes Berg19d337d2009-06-02 13:01:37 +02004227 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4228 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004229}
4230
4231static ssize_t wan_enable_store(struct device *dev,
4232 struct device_attribute *attr,
4233 const char *buf, size_t count)
4234{
Johannes Berg19d337d2009-06-02 13:01:37 +02004235 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4236 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004237}
4238
4239static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004240 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004241 wan_enable_show, wan_enable_store);
4242
4243/* --------------------------------------------------------------------- */
4244
4245static struct attribute *wan_attributes[] = {
4246 &dev_attr_wan_enable.attr,
4247 NULL
4248};
4249
4250static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004251 .attrs = wan_attributes,
4252};
4253
Johannes Berg19d337d2009-06-02 13:01:37 +02004254static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4255 .get_status = wan_get_status,
4256 .set_status = wan_set_status,
4257};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004258
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004259static void wan_shutdown(void)
4260{
4261 /* Order firmware to save current state to NVRAM */
4262 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4263 TP_ACPI_WGSV_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004264 pr_notice("failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004265 else
4266 vdbg_printk(TPACPI_DBG_RFKILL,
4267 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004268}
4269
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004270static void wan_exit(void)
4271{
4272 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4273 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004274
4275 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4276
4277 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004278}
4279
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004280static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004281{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004282 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004283 int status = 0;
4284
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004285 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4286 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004287
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004288 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004289
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004290 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004291 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004292
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004293 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4294 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004295 str_supported(tp_features.wan),
4296 status);
4297
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004298#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4299 if (dbg_wwanemul) {
4300 tp_features.wan = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004301 pr_info("wwan switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004302 } else
4303#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004304 if (tp_features.wan &&
4305 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4306 /* no wan hardware present in system */
4307 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004308 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004309 "wan hardware not installed\n");
4310 }
4311
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004312 if (!tp_features.wan)
4313 return 1;
4314
Johannes Berg19d337d2009-06-02 13:01:37 +02004315 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4316 &wan_tprfk_ops,
4317 RFKILL_TYPE_WWAN,
4318 TPACPI_RFK_WWAN_SW_NAME,
4319 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004320 if (res)
4321 return res;
4322
Johannes Berg19d337d2009-06-02 13:01:37 +02004323 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4324 &wan_attr_group);
4325
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004326 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004327 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004328 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004329 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004330
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004331 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004332}
4333
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004334/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004335static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004336{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004337 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004338}
4339
4340static int wan_write(char *buf)
4341{
Johannes Berg19d337d2009-06-02 13:01:37 +02004342 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004343}
4344
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004345static struct ibm_struct wan_driver_data = {
4346 .name = "wan",
4347 .read = wan_read,
4348 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004349 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004350 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004351};
4352
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004353/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004354 * UWB subdriver
4355 */
4356
4357enum {
4358 /* ACPI GUWB/SUWB bits */
4359 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4360 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4361};
4362
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004363#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4364
Johannes Berg19d337d2009-06-02 13:01:37 +02004365static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004366{
4367 int status;
4368
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004369#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4370 if (dbg_uwbemul)
4371 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004372 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004373#endif
4374
4375 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4376 return -EIO;
4377
4378 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004379 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004380}
4381
Johannes Berg19d337d2009-06-02 13:01:37 +02004382static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004383{
4384 int status;
4385
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004386 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004387 "will attempt to %s UWB\n",
4388 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004389
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004390#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4391 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004392 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004393 return 0;
4394 }
4395#endif
4396
Johannes Berg19d337d2009-06-02 13:01:37 +02004397 if (state == TPACPI_RFK_RADIO_ON)
4398 status = TP_ACPI_UWB_RADIOSSW;
4399 else
4400 status = 0;
4401
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004402 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4403 return -EIO;
4404
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004405 return 0;
4406}
4407
4408/* --------------------------------------------------------------------- */
4409
Johannes Berg19d337d2009-06-02 13:01:37 +02004410static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4411 .get_status = uwb_get_status,
4412 .set_status = uwb_set_status,
4413};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004414
4415static void uwb_exit(void)
4416{
Johannes Berg19d337d2009-06-02 13:01:37 +02004417 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004418}
4419
4420static int __init uwb_init(struct ibm_init_struct *iibm)
4421{
4422 int res;
4423 int status = 0;
4424
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004425 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4426 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004427
4428 TPACPI_ACPIHANDLE_INIT(hkey);
4429
4430 tp_features.uwb = hkey_handle &&
4431 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4432
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004433 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4434 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004435 str_supported(tp_features.uwb),
4436 status);
4437
4438#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4439 if (dbg_uwbemul) {
4440 tp_features.uwb = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004441 pr_info("uwb switch emulation enabled\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004442 } else
4443#endif
4444 if (tp_features.uwb &&
4445 !(status & TP_ACPI_UWB_HWPRESENT)) {
4446 /* no uwb hardware present in system */
4447 tp_features.uwb = 0;
4448 dbg_printk(TPACPI_DBG_INIT,
4449 "uwb hardware not installed\n");
4450 }
4451
4452 if (!tp_features.uwb)
4453 return 1;
4454
4455 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004456 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004457 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd9b2009-04-04 04:25:50 +00004458 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004459 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004460 return res;
4461}
4462
4463static struct ibm_struct uwb_driver_data = {
4464 .name = "uwb",
4465 .exit = uwb_exit,
4466 .flags.experimental = 1,
4467};
4468
4469/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004470 * Video subdriver
4471 */
4472
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004473#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4474
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004475enum video_access_mode {
4476 TPACPI_VIDEO_NONE = 0,
4477 TPACPI_VIDEO_570, /* 570 */
4478 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4479 TPACPI_VIDEO_NEW, /* all others */
4480};
4481
4482enum { /* video status flags, based on VIDEO_570 */
4483 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4484 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4485 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4486};
4487
4488enum { /* TPACPI_VIDEO_570 constants */
4489 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4490 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4491 * video_status_flags */
4492 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4493 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4494};
4495
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004496static enum video_access_mode video_supported;
4497static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004498
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004499static int video_autosw_get(void);
4500static int video_autosw_set(int enable);
4501
Joe Perches112a6ee2011-04-04 10:06:24 -07004502TPACPI_HANDLE(vid, root,
4503 "\\_SB.PCI.AGP.VGA", /* 570 */
4504 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4505 "\\_SB.PCI0.VID0", /* 770e */
4506 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4507 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4508 "\\_SB.PCI0.AGP.VID", /* all others */
4509 ); /* R30, R31 */
4510
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004511TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004512
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004513static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004515 int ivga;
4516
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004517 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4518
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004519 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004520 if (tpacpi_is_ibm())
4521 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004522
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004523 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4524 /* G41, assume IVGA doesn't change */
4525 vid_handle = vid2_handle;
4526
4527 if (!vid_handle)
4528 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004529 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004530 else if (tpacpi_is_ibm() &&
4531 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004532 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004533 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004534 else if (tpacpi_is_ibm() &&
4535 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004536 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004537 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004538 else
4539 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004540 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004542 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4543 str_supported(video_supported != TPACPI_VIDEO_NONE),
4544 video_supported);
4545
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004546 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
4548
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004549static void video_exit(void)
4550{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004551 dbg_printk(TPACPI_DBG_EXIT,
4552 "restoring original video autoswitch mode\n");
4553 if (video_autosw_set(video_orig_autosw))
Joe Perches0978e012011-04-04 10:06:25 -07004554 pr_err("error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004555 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004556}
4557
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004558static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559{
4560 int status = 0;
4561 int i;
4562
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004563 switch (video_supported) {
4564 case TPACPI_VIDEO_570:
4565 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4566 TP_ACPI_VIDEO_570_PHSCMD))
4567 return -EIO;
4568 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4569 break;
4570 case TPACPI_VIDEO_770:
4571 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4572 return -EIO;
4573 if (i)
4574 status |= TP_ACPI_VIDEO_S_LCD;
4575 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4576 return -EIO;
4577 if (i)
4578 status |= TP_ACPI_VIDEO_S_CRT;
4579 break;
4580 case TPACPI_VIDEO_NEW:
4581 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4582 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4583 return -EIO;
4584 if (i)
4585 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004587 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4588 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4589 return -EIO;
4590 if (i)
4591 status |= TP_ACPI_VIDEO_S_LCD;
4592 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4593 return -EIO;
4594 if (i)
4595 status |= TP_ACPI_VIDEO_S_DVI;
4596 break;
4597 default:
4598 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
4601 return status;
4602}
4603
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004604static int video_outputsw_set(int status)
4605{
4606 int autosw;
4607 int res = 0;
4608
4609 switch (video_supported) {
4610 case TPACPI_VIDEO_570:
4611 res = acpi_evalf(NULL, NULL,
4612 "\\_SB.PHS2", "vdd",
4613 TP_ACPI_VIDEO_570_PHS2CMD,
4614 status | TP_ACPI_VIDEO_570_PHS2SET);
4615 break;
4616 case TPACPI_VIDEO_770:
4617 autosw = video_autosw_get();
4618 if (autosw < 0)
4619 return autosw;
4620
4621 res = video_autosw_set(1);
4622 if (res)
4623 return res;
4624 res = acpi_evalf(vid_handle, NULL,
4625 "ASWT", "vdd", status * 0x100, 0);
4626 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004627 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004628 return -EIO;
4629 }
4630 break;
4631 case TPACPI_VIDEO_NEW:
4632 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004633 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004634 break;
4635 default:
4636 return -ENOSYS;
4637 }
4638
4639 return (res)? 0 : -EIO;
4640}
4641
4642static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004644 int autosw = 0;
4645
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004646 switch (video_supported) {
4647 case TPACPI_VIDEO_570:
4648 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4649 return -EIO;
4650 break;
4651 case TPACPI_VIDEO_770:
4652 case TPACPI_VIDEO_NEW:
4653 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4654 return -EIO;
4655 break;
4656 default:
4657 return -ENOSYS;
4658 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004659
4660 return autosw & 1;
4661}
4662
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004663static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004664{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004665 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004666 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004667 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004668}
4669
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004670static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004671{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004672 int autosw = video_autosw_get();
4673 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004674
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004675 if (autosw < 0)
4676 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004677
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004678 switch (video_supported) {
4679 case TPACPI_VIDEO_570:
4680 res = video_autosw_set(1);
4681 if (res)
4682 return res;
4683 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4684 break;
4685 case TPACPI_VIDEO_770:
4686 case TPACPI_VIDEO_NEW:
4687 res = video_autosw_set(1);
4688 if (res)
4689 return res;
4690 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4691 break;
4692 default:
4693 return -ENOSYS;
4694 }
4695 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004696 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004697 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004698 }
4699
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004700 return (res)? 0 : -EIO;
4701}
4702
4703static int video_expand_toggle(void)
4704{
4705 switch (video_supported) {
4706 case TPACPI_VIDEO_570:
4707 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4708 0 : -EIO;
4709 case TPACPI_VIDEO_770:
4710 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4711 0 : -EIO;
4712 case TPACPI_VIDEO_NEW:
4713 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4714 0 : -EIO;
4715 default:
4716 return -ENOSYS;
4717 }
4718 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004719}
4720
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004721static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004722{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004723 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004724
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004725 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004726 seq_printf(m, "status:\t\tnot supported\n");
4727 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004728 }
4729
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004730 /* Even reads can crash X.org, so... */
4731 if (!capable(CAP_SYS_ADMIN))
4732 return -EPERM;
4733
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004734 status = video_outputsw_get();
4735 if (status < 0)
4736 return status;
4737
4738 autosw = video_autosw_get();
4739 if (autosw < 0)
4740 return autosw;
4741
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004742 seq_printf(m, "status:\t\tsupported\n");
4743 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4744 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004745 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004746 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4747 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4748 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4749 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004750 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004751 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4752 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4753 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004754
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004755 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004756}
4757
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004758static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759{
4760 char *cmd;
4761 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004762 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004764 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004765 return -ENODEV;
4766
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004767 /* Even reads can crash X.org, let alone writes... */
4768 if (!capable(CAP_SYS_ADMIN))
4769 return -EPERM;
4770
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004771 enable = 0;
4772 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
4774 while ((cmd = next_cmd(&buf))) {
4775 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004776 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004778 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004780 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004782 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004783 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004784 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004785 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004786 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004787 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004788 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004790 res = video_autosw_set(1);
4791 if (res)
4792 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004794 res = video_autosw_set(0);
4795 if (res)
4796 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004798 res = video_outputsw_cycle();
4799 if (res)
4800 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004802 res = video_expand_toggle();
4803 if (res)
4804 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 } else
4806 return -EINVAL;
4807 }
4808
4809 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004810 status = video_outputsw_get();
4811 if (status < 0)
4812 return status;
4813 res = video_outputsw_set((status & ~disable) | enable);
4814 if (res)
4815 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 }
4817
4818 return 0;
4819}
4820
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004821static struct ibm_struct video_driver_data = {
4822 .name = "video",
4823 .read = video_read,
4824 .write = video_write,
4825 .exit = video_exit,
4826};
4827
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004828#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4829
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004830/*************************************************************************
4831 * Light (thinklight) subdriver
4832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004834TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4835TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004836
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004837static int light_get_status(void)
4838{
4839 int status = 0;
4840
4841 if (tp_features.light_status) {
4842 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4843 return -EIO;
4844 return (!!status);
4845 }
4846
4847 return -ENXIO;
4848}
4849
4850static int light_set_status(int status)
4851{
4852 int rc;
4853
4854 if (tp_features.light) {
4855 if (cmos_handle) {
4856 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4857 (status)?
4858 TP_CMOS_THINKLIGHT_ON :
4859 TP_CMOS_THINKLIGHT_OFF);
4860 } else {
4861 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4862 (status)? 1 : 0);
4863 }
4864 return (rc)? 0 : -EIO;
4865 }
4866
4867 return -ENXIO;
4868}
4869
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004870static void light_set_status_worker(struct work_struct *work)
4871{
4872 struct tpacpi_led_classdev *data =
4873 container_of(work, struct tpacpi_led_classdev, work);
4874
4875 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004876 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004877}
4878
4879static void light_sysfs_set(struct led_classdev *led_cdev,
4880 enum led_brightness brightness)
4881{
4882 struct tpacpi_led_classdev *data =
4883 container_of(led_cdev,
4884 struct tpacpi_led_classdev,
4885 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004886 data->new_state = (brightness != LED_OFF) ?
4887 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004888 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004889}
4890
4891static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4892{
4893 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4894}
4895
4896static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4897 .led_classdev = {
4898 .name = "tpacpi::thinklight",
4899 .brightness_set = &light_sysfs_set,
4900 .brightness_get = &light_sysfs_get,
4901 }
4902};
4903
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004904static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004906 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004907
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004908 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4909
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004910 if (tpacpi_is_ibm()) {
4911 TPACPI_ACPIHANDLE_INIT(ledb);
4912 TPACPI_ACPIHANDLE_INIT(lght);
4913 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004914 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004915 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004916
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004917 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004918 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004919
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004920 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004921 /* light status not supported on
4922 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004923 tp_features.light_status =
4924 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004926 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4927 str_supported(tp_features.light),
4928 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004929
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004930 if (!tp_features.light)
4931 return 1;
4932
4933 rc = led_classdev_register(&tpacpi_pdev->dev,
4934 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004935
4936 if (rc < 0) {
4937 tp_features.light = 0;
4938 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004939 } else {
4940 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004941 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004942
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004943 return rc;
4944}
4945
4946static void light_exit(void)
4947{
4948 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
Tejun Heo6d394e12012-12-21 17:56:58 -08004949 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950}
4951
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004952static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004954 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004956 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004957 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004958 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004959 seq_printf(m, "status:\t\tunknown\n");
4960 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004961 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004962 status = light_get_status();
4963 if (status < 0)
4964 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004965 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
4966 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004969 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970}
4971
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004972static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004975 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004976
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004977 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004978 return -ENODEV;
4979
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 while ((cmd = next_cmd(&buf))) {
4981 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004982 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004984 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 } else
4986 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 }
4988
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004989 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990}
4991
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004992static struct ibm_struct light_driver_data = {
4993 .name = "light",
4994 .read = light_read,
4995 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004996 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004997};
4998
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004999/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005000 * CMOS subdriver
5001 */
5002
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005003/* sysfs cmos_command -------------------------------------------------- */
5004static ssize_t cmos_command_store(struct device *dev,
5005 struct device_attribute *attr,
5006 const char *buf, size_t count)
5007{
5008 unsigned long cmos_cmd;
5009 int res;
5010
5011 if (parse_strtoul(buf, 21, &cmos_cmd))
5012 return -EINVAL;
5013
5014 res = issue_thinkpad_cmos_command(cmos_cmd);
5015 return (res)? res : count;
5016}
5017
5018static struct device_attribute dev_attr_cmos_command =
5019 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
5020
5021/* --------------------------------------------------------------------- */
5022
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005023static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005024{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005025 int res;
5026
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005027 vdbg_printk(TPACPI_DBG_INIT,
5028 "initializing cmos commands subdriver\n");
5029
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005030 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005031
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005032 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
5033 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005034
5035 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5036 if (res)
5037 return res;
5038
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005039 return (cmos_handle)? 0 : 1;
5040}
5041
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005042static void cmos_exit(void)
5043{
5044 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
5045}
5046
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005047static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005049 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
5050 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005052 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005054 seq_printf(m, "status:\t\tsupported\n");
5055 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 }
5057
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005058 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059}
5060
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005061static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062{
5063 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005064 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
5066 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005067 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
5068 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 /* cmos_cmd set */
5070 } else
5071 return -EINVAL;
5072
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03005073 res = issue_thinkpad_cmos_command(cmos_cmd);
5074 if (res)
5075 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 }
5077
5078 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005079}
5080
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005081static struct ibm_struct cmos_driver_data = {
5082 .name = "cmos",
5083 .read = cmos_read,
5084 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03005085 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005086};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005087
5088/*************************************************************************
5089 * LED subdriver
5090 */
5091
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005092enum led_access_mode {
5093 TPACPI_LED_NONE = 0,
5094 TPACPI_LED_570, /* 570 */
5095 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5096 TPACPI_LED_NEW, /* all others */
5097};
5098
5099enum { /* For TPACPI_LED_OLD */
5100 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
5101 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5102 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5103};
5104
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005105static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005106
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005107static acpi_handle led_handle;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005108
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005109#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005110static struct tpacpi_led_classdev *tpacpi_leds;
5111static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005112static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005113 /* there's a limit of 19 chars + NULL before 2.6.26 */
5114 "tpacpi::power",
5115 "tpacpi:orange:batt",
5116 "tpacpi:green:batt",
5117 "tpacpi::dock_active",
5118 "tpacpi::bay_active",
5119 "tpacpi::dock_batt",
5120 "tpacpi::unknown_led",
5121 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005122 "tpacpi::dock_status1",
5123 "tpacpi::dock_status2",
5124 "tpacpi::unknown_led2",
5125 "tpacpi::unknown_led3",
5126 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005127};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005128#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005129
5130static inline bool tpacpi_is_led_restricted(const unsigned int led)
5131{
5132#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5133 return false;
5134#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005135 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005136#endif
5137}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005138
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005139static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005140{
5141 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005142 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005143
5144 switch (led_supported) {
5145 case TPACPI_LED_570:
5146 if (!acpi_evalf(ec_handle,
5147 &status, "GLED", "dd", 1 << led))
5148 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005149 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005150 TPACPI_LED_OFF :
5151 ((status == 1)?
5152 TPACPI_LED_ON :
5153 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005154 tpacpi_led_state_cache[led] = led_s;
5155 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005156 default:
5157 return -ENXIO;
5158 }
5159
5160 /* not reached */
5161}
5162
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005163static int led_set_status(const unsigned int led,
5164 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005165{
5166 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005167 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5168 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005169
5170 int rc = 0;
5171
5172 switch (led_supported) {
5173 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005174 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005175 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005176 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005177 if (unlikely(tpacpi_is_led_restricted(led)))
5178 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005179 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5180 (1 << led), led_sled_arg1[ledstatus]))
5181 rc = -EIO;
5182 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005183 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005184 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005185 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005186 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005187 if (unlikely(tpacpi_is_led_restricted(led)))
5188 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005189 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5190 if (rc >= 0)
5191 rc = ec_write(TPACPI_LED_EC_HLBL,
5192 (ledstatus == TPACPI_LED_BLINK) << led);
5193 if (rc >= 0)
5194 rc = ec_write(TPACPI_LED_EC_HLCL,
5195 (ledstatus != TPACPI_LED_OFF) << led);
5196 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005197 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005198 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005199 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5200 return -EINVAL;
5201 if (unlikely(tpacpi_is_led_restricted(led)))
5202 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005203 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5204 led, led_led_arg1[ledstatus]))
5205 rc = -EIO;
5206 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005207 default:
5208 rc = -ENXIO;
5209 }
5210
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005211 if (!rc)
5212 tpacpi_led_state_cache[led] = ledstatus;
5213
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005214 return rc;
5215}
5216
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005217static void led_set_status_worker(struct work_struct *work)
5218{
5219 struct tpacpi_led_classdev *data =
5220 container_of(work, struct tpacpi_led_classdev, work);
5221
5222 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005223 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005224}
5225
5226static void led_sysfs_set(struct led_classdev *led_cdev,
5227 enum led_brightness brightness)
5228{
5229 struct tpacpi_led_classdev *data = container_of(led_cdev,
5230 struct tpacpi_led_classdev, led_classdev);
5231
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005232 if (brightness == LED_OFF)
5233 data->new_state = TPACPI_LED_OFF;
5234 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5235 data->new_state = TPACPI_LED_ON;
5236 else
5237 data->new_state = TPACPI_LED_BLINK;
5238
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005239 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005240}
5241
5242static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5243 unsigned long *delay_on, unsigned long *delay_off)
5244{
5245 struct tpacpi_led_classdev *data = container_of(led_cdev,
5246 struct tpacpi_led_classdev, led_classdev);
5247
5248 /* Can we choose the flash rate? */
5249 if (*delay_on == 0 && *delay_off == 0) {
5250 /* yes. set them to the hardware blink rate (1 Hz) */
5251 *delay_on = 500; /* ms */
5252 *delay_off = 500; /* ms */
5253 } else if ((*delay_on != 500) || (*delay_off != 500))
5254 return -EINVAL;
5255
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005256 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005257 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005258
5259 return 0;
5260}
5261
5262static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5263{
5264 int rc;
5265
5266 struct tpacpi_led_classdev *data = container_of(led_cdev,
5267 struct tpacpi_led_classdev, led_classdev);
5268
5269 rc = led_get_status(data->led);
5270
5271 if (rc == TPACPI_LED_OFF || rc < 0)
5272 rc = LED_OFF; /* no error handling in led class :( */
5273 else
5274 rc = LED_FULL;
5275
5276 return rc;
5277}
5278
5279static void led_exit(void)
5280{
5281 unsigned int i;
5282
5283 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5284 if (tpacpi_leds[i].led_classdev.name)
5285 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5286 }
5287
Li Dongyange03e3892012-07-25 10:45:07 +10005288 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005289 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005290}
5291
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005292static int __init tpacpi_init_led(unsigned int led)
5293{
5294 int rc;
5295
5296 tpacpi_leds[led].led = led;
5297
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005298 /* LEDs with no name don't get registered */
5299 if (!tpacpi_led_names[led])
5300 return 0;
5301
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005302 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5303 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5304 if (led_supported == TPACPI_LED_570)
5305 tpacpi_leds[led].led_classdev.brightness_get =
5306 &led_sysfs_get;
5307
5308 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5309
5310 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5311
5312 rc = led_classdev_register(&tpacpi_pdev->dev,
5313 &tpacpi_leds[led].led_classdev);
5314 if (rc < 0)
5315 tpacpi_leds[led].led_classdev.name = NULL;
5316
5317 return rc;
5318}
5319
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005320static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5321 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5322 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5323 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5324
5325 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5326 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5327 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5328 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5329 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5330 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5331 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5332 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5333
5334 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5335 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5336 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5337 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5338 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5339
5340 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5341 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5342 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5343 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5344
5345 /* (1) - may have excess leds enabled on MSB */
5346
5347 /* Defaults (order matters, keep last, don't reorder!) */
5348 { /* Lenovo */
5349 .vendor = PCI_VENDOR_ID_LENOVO,
5350 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5351 .quirks = 0x1fffU,
5352 },
5353 { /* IBM ThinkPads with no EC version string */
5354 .vendor = PCI_VENDOR_ID_IBM,
5355 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5356 .quirks = 0x00ffU,
5357 },
5358 { /* IBM ThinkPads with EC version string */
5359 .vendor = PCI_VENDOR_ID_IBM,
5360 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5361 .quirks = 0x00bfU,
5362 },
5363};
5364
5365#undef TPACPI_LEDQ_IBM
5366#undef TPACPI_LEDQ_LNV
5367
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005368static enum led_access_mode __init led_init_detect_mode(void)
5369{
5370 acpi_status status;
5371
5372 if (tpacpi_is_ibm()) {
5373 /* 570 */
5374 status = acpi_get_handle(ec_handle, "SLED", &led_handle);
5375 if (ACPI_SUCCESS(status))
5376 return TPACPI_LED_570;
5377
5378 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5379 status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
5380 if (ACPI_SUCCESS(status))
5381 return TPACPI_LED_OLD;
5382 }
5383
5384 /* most others */
5385 status = acpi_get_handle(ec_handle, "LED", &led_handle);
5386 if (ACPI_SUCCESS(status))
5387 return TPACPI_LED_NEW;
5388
5389 /* R30, R31, and unknown firmwares */
5390 led_handle = NULL;
5391 return TPACPI_LED_NONE;
5392}
5393
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005394static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005395{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005396 unsigned int i;
5397 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005398 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005399
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005400 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5401
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005402 led_supported = led_init_detect_mode();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005403
Adam Leefcb44e12013-06-07 16:20:08 +08005404 if (led_supported != TPACPI_LED_NONE) {
5405 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5406 ARRAY_SIZE(led_useful_qtable));
5407
5408 if (!useful_leds) {
5409 led_handle = NULL;
5410 led_supported = TPACPI_LED_NONE;
5411 }
5412 }
5413
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005414 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5415 str_supported(led_supported), led_supported);
5416
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005417 if (led_supported == TPACPI_LED_NONE)
5418 return 1;
5419
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005420 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5421 GFP_KERNEL);
5422 if (!tpacpi_leds) {
Joe Perches0978e012011-04-04 10:06:25 -07005423 pr_err("Out of memory for LED data\n");
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005424 return -ENOMEM;
5425 }
5426
5427 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Adam Leeedf2d772013-06-08 16:51:15 +08005428 tpacpi_leds[i].led = -1;
5429
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005430 if (!tpacpi_is_led_restricted(i) &&
5431 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005432 rc = tpacpi_init_led(i);
5433 if (rc < 0) {
5434 led_exit();
5435 return rc;
5436 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005437 }
5438 }
5439
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005440#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Joe Perches0978e012011-04-04 10:06:25 -07005441 pr_notice("warning: userspace override of important "
5442 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005443#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005444 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005445}
5446
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005447#define str_led_status(s) \
5448 ((s) == TPACPI_LED_OFF ? "off" : \
5449 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005450
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005451static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005453 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005454 seq_printf(m, "status:\t\tnot supported\n");
5455 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005456 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005457 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005458
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005459 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005460 /* 570 */
5461 int i, status;
5462 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005463 status = led_get_status(i);
5464 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005465 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005466 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005467 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005468 }
5469 }
5470
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005471 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005472 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475}
5476
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005477static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478{
5479 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005480 int led, rc;
5481 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005482
5483 if (!led_supported)
5484 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
5486 while ((cmd = next_cmd(&buf))) {
Adam Leeedf2d772013-06-08 16:51:15 +08005487 if (sscanf(cmd, "%d", &led) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 return -EINVAL;
5489
Adam Leeedf2d772013-06-08 16:51:15 +08005490 if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1) ||
5491 tpacpi_leds[led].led < 0)
5492 return -ENODEV;
5493
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005494 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005495 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005497 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005498 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005499 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005500 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005501 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005502 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005503
5504 rc = led_set_status(led, s);
5505 if (rc < 0)
5506 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507 }
5508
5509 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005510}
5511
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005512static struct ibm_struct led_driver_data = {
5513 .name = "led",
5514 .read = led_read,
5515 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005516 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005517};
5518
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005519/*************************************************************************
5520 * Beep subdriver
5521 */
5522
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005523TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005524
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005525#define TPACPI_BEEP_Q1 0x0001
5526
5527static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5528 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5529 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5530};
5531
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005532static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005533{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005534 unsigned long quirks;
5535
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005536 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5537
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005538 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005539
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005540 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5541 str_supported(beep_handle != NULL));
5542
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005543 quirks = tpacpi_check_quirks(beep_quirk_table,
5544 ARRAY_SIZE(beep_quirk_table));
5545
5546 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5547
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005548 return (beep_handle)? 0 : 1;
5549}
5550
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005551static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005553 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005554 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005555 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005556 seq_printf(m, "status:\t\tsupported\n");
5557 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561}
5562
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005563static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564{
5565 char *cmd;
5566 int beep_cmd;
5567
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005568 if (!beep_handle)
5569 return -ENODEV;
5570
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005572 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5573 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 /* beep_cmd set */
5575 } else
5576 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005577 if (tp_features.beep_needs_two_args) {
5578 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5579 beep_cmd, 0))
5580 return -EIO;
5581 } else {
5582 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5583 beep_cmd))
5584 return -EIO;
5585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586 }
5587
5588 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005589}
5590
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005591static struct ibm_struct beep_driver_data = {
5592 .name = "beep",
5593 .read = beep_read,
5594 .write = beep_write,
5595};
5596
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005597/*************************************************************************
5598 * Thermal subdriver
5599 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005600
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005601enum thermal_access_mode {
5602 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5603 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5604 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5605 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5606 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5607};
5608
5609enum { /* TPACPI_THERMAL_TPEC_* */
5610 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5611 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5612 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005613
5614 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005615};
5616
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005617
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005618#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5619struct ibm_thermal_sensors_struct {
5620 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5621};
5622
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005623static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005624
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005625/* idx is zero-based */
5626static int thermal_get_sensor(int idx, s32 *value)
5627{
5628 int t;
5629 s8 tmp;
5630 char tmpi[5];
5631
5632 t = TP_EC_THERMAL_TMP0;
5633
5634 switch (thermal_read_mode) {
5635#if TPACPI_MAX_THERMAL_SENSORS >= 16
5636 case TPACPI_THERMAL_TPEC_16:
5637 if (idx >= 8 && idx <= 15) {
5638 t = TP_EC_THERMAL_TMP8;
5639 idx -= 8;
5640 }
5641 /* fallthrough */
5642#endif
5643 case TPACPI_THERMAL_TPEC_8:
5644 if (idx <= 7) {
5645 if (!acpi_ec_read(t + idx, &tmp))
5646 return -EIO;
5647 *value = tmp * 1000;
5648 return 0;
5649 }
5650 break;
5651
5652 case TPACPI_THERMAL_ACPI_UPDT:
5653 if (idx <= 7) {
5654 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5655 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5656 return -EIO;
5657 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5658 return -EIO;
5659 *value = (t - 2732) * 100;
5660 return 0;
5661 }
5662 break;
5663
5664 case TPACPI_THERMAL_ACPI_TMP07:
5665 if (idx <= 7) {
5666 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5667 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5668 return -EIO;
5669 if (t > 127 || t < -127)
5670 t = TP_EC_THERMAL_TMP_NA;
5671 *value = t * 1000;
5672 return 0;
5673 }
5674 break;
5675
5676 case TPACPI_THERMAL_NONE:
5677 default:
5678 return -ENOSYS;
5679 }
5680
5681 return -EINVAL;
5682}
5683
5684static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5685{
5686 int res, i;
5687 int n;
5688
5689 n = 8;
5690 i = 0;
5691
5692 if (!s)
5693 return -EINVAL;
5694
5695 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5696 n = 16;
5697
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005698 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005699 res = thermal_get_sensor(i, &s->temp[i]);
5700 if (res)
5701 return res;
5702 }
5703
5704 return n;
5705}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005706
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005707static void thermal_dump_all_sensors(void)
5708{
5709 int n, i;
5710 struct ibm_thermal_sensors_struct t;
5711
5712 n = thermal_get_sensors(&t);
5713 if (n <= 0)
5714 return;
5715
Joe Perches0978e012011-04-04 10:06:25 -07005716 pr_notice("temperatures (Celsius):");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005717
5718 for (i = 0; i < n; i++) {
5719 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
Joe Perches0978e012011-04-04 10:06:25 -07005720 pr_cont(" %d", (int)(t.temp[i] / 1000));
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005721 else
Joe Perches0978e012011-04-04 10:06:25 -07005722 pr_cont(" N/A");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005723 }
5724
Joe Perches0978e012011-04-04 10:06:25 -07005725 pr_cont("\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005726}
5727
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005728/* sysfs temp##_input -------------------------------------------------- */
5729
5730static ssize_t thermal_temp_input_show(struct device *dev,
5731 struct device_attribute *attr,
5732 char *buf)
5733{
5734 struct sensor_device_attribute *sensor_attr =
5735 to_sensor_dev_attr(attr);
5736 int idx = sensor_attr->index;
5737 s32 value;
5738 int res;
5739
5740 res = thermal_get_sensor(idx, &value);
5741 if (res)
5742 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005743 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005744 return -ENXIO;
5745
5746 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5747}
5748
5749#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005750 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5751 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005752
5753static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5754 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5755 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5756 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5757 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5758 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5759 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5760 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5761 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5762 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5763 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5764 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5765 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5766 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5767 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5768 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5769 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5770};
5771
5772#define THERMAL_ATTRS(X) \
5773 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5774
5775static struct attribute *thermal_temp_input_attr[] = {
5776 THERMAL_ATTRS(8),
5777 THERMAL_ATTRS(9),
5778 THERMAL_ATTRS(10),
5779 THERMAL_ATTRS(11),
5780 THERMAL_ATTRS(12),
5781 THERMAL_ATTRS(13),
5782 THERMAL_ATTRS(14),
5783 THERMAL_ATTRS(15),
5784 THERMAL_ATTRS(0),
5785 THERMAL_ATTRS(1),
5786 THERMAL_ATTRS(2),
5787 THERMAL_ATTRS(3),
5788 THERMAL_ATTRS(4),
5789 THERMAL_ATTRS(5),
5790 THERMAL_ATTRS(6),
5791 THERMAL_ATTRS(7),
5792 NULL
5793};
5794
5795static const struct attribute_group thermal_temp_input16_group = {
5796 .attrs = thermal_temp_input_attr
5797};
5798
5799static const struct attribute_group thermal_temp_input8_group = {
5800 .attrs = &thermal_temp_input_attr[8]
5801};
5802
5803#undef THERMAL_SENSOR_ATTR_TEMP
5804#undef THERMAL_ATTRS
5805
5806/* --------------------------------------------------------------------- */
5807
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005808static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005809{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005810 u8 t, ta1, ta2;
5811 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005812 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005813 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005814
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005815 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5816
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005817 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005818
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005819 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005820 /*
5821 * Direct EC access mode: sensors at registers
5822 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5823 * non-implemented, thermal sensors return 0x80 when
5824 * not available
5825 */
5826
5827 ta1 = ta2 = 0;
5828 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005829 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005830 ta1 |= t;
5831 } else {
5832 ta1 = 0;
5833 break;
5834 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005835 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005836 ta2 |= t;
5837 } else {
5838 ta1 = 0;
5839 break;
5840 }
5841 }
5842 if (ta1 == 0) {
5843 /* This is sheer paranoia, but we handle it anyway */
5844 if (acpi_tmp7) {
Joe Perches0978e012011-04-04 10:06:25 -07005845 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005846 "falling back to ACPI TMPx access "
5847 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005848 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005849 } else {
Joe Perches0978e012011-04-04 10:06:25 -07005850 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005851 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005852 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005853 }
5854 } else {
5855 thermal_read_mode =
5856 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005857 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005858 }
5859 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005860 if (tpacpi_is_ibm() &&
5861 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005862 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005863 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005864 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005865 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005866 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005867 }
5868 } else {
5869 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005870 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005871 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005872
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005873 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5874 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5875 thermal_read_mode);
5876
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005877 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005878 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005879 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005880 &thermal_temp_input16_group);
5881 if (res)
5882 return res;
5883 break;
5884 case TPACPI_THERMAL_TPEC_8:
5885 case TPACPI_THERMAL_ACPI_TMP07:
5886 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005887 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005888 &thermal_temp_input8_group);
5889 if (res)
5890 return res;
5891 break;
5892 case TPACPI_THERMAL_NONE:
5893 default:
5894 return 1;
5895 }
5896
5897 return 0;
5898}
5899
5900static void thermal_exit(void)
5901{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005902 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005903 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005904 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005905 &thermal_temp_input16_group);
5906 break;
5907 case TPACPI_THERMAL_TPEC_8:
5908 case TPACPI_THERMAL_ACPI_TMP07:
5909 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005910 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08005911 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005912 break;
5913 case TPACPI_THERMAL_NONE:
5914 default:
5915 break;
5916 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005917}
5918
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005919static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005920{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005921 int n, i;
5922 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005923
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005924 n = thermal_get_sensors(&t);
5925 if (unlikely(n < 0))
5926 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005927
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005928 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005929
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005930 if (n > 0) {
5931 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005932 seq_printf(m, "%d ", t.temp[i] / 1000);
5933 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005934 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005935 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005936
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005937 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005938}
5939
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005940static struct ibm_struct thermal_driver_data = {
5941 .name = "thermal",
5942 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005943 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005944};
5945
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005946/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005947 * Backlight/brightness subdriver
5948 */
Holger Macht8acb0252006-10-20 14:30:28 -07005949
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005950#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5951
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005952/*
5953 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5954 * CMOS NVRAM byte 0x5E, bits 0-3.
5955 *
5956 * EC HBRV (0x31) has the following layout
5957 * Bit 7: unknown function
5958 * Bit 6: unknown function
5959 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5960 * Bit 4: must be set to zero to avoid problems
5961 * Bit 3-0: backlight brightness level
5962 *
5963 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005964 *
5965 * WARNING: The X61 has been verified to use HBRV for something else, so
5966 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5967 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005968 */
5969
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005970enum {
5971 TP_EC_BACKLIGHT = 0x31,
5972
5973 /* TP_EC_BACKLIGHT bitmasks */
5974 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5975 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5976 TP_EC_BACKLIGHT_MAPSW = 0x20,
5977};
5978
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005979enum tpacpi_brightness_access_mode {
5980 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5981 TPACPI_BRGHT_MODE_EC, /* EC control */
5982 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5983 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5984 TPACPI_BRGHT_MODE_MAX
5985};
5986
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03005987static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005988
5989static enum tpacpi_brightness_access_mode brightness_mode =
5990 TPACPI_BRGHT_MODE_MAX;
5991
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005992static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5993
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005994static struct mutex brightness_mutex;
5995
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005996/* NVRAM brightness access,
5997 * call with brightness_mutex held! */
5998static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005999{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006000 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006001
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006002 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
6003 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6004 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006005 lnvram &= bright_maxlvl;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006006
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006007 return lnvram;
6008}
6009
6010static void tpacpi_brightness_checkpoint_nvram(void)
6011{
6012 u8 lec = 0;
6013 u8 b_nvram;
6014
6015 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
6016 return;
6017
6018 vdbg_printk(TPACPI_DBG_BRGHT,
6019 "trying to checkpoint backlight level to NVRAM...\n");
6020
6021 if (mutex_lock_killable(&brightness_mutex) < 0)
6022 return;
6023
6024 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6025 goto unlock;
6026 lec &= TP_EC_BACKLIGHT_LVLMSK;
6027 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
6028
6029 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
6030 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
6031 /* NVRAM needs update */
6032 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
6033 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
6034 b_nvram |= lec;
6035 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
6036 dbg_printk(TPACPI_DBG_BRGHT,
6037 "updated NVRAM backlight level to %u (0x%02x)\n",
6038 (unsigned int) lec, (unsigned int) b_nvram);
6039 } else
6040 vdbg_printk(TPACPI_DBG_BRGHT,
6041 "NVRAM backlight level already is %u (0x%02x)\n",
6042 (unsigned int) lec, (unsigned int) b_nvram);
6043
6044unlock:
6045 mutex_unlock(&brightness_mutex);
6046}
6047
6048
6049/* call with brightness_mutex held! */
6050static int tpacpi_brightness_get_raw(int *status)
6051{
6052 u8 lec = 0;
6053
6054 switch (brightness_mode) {
6055 case TPACPI_BRGHT_MODE_UCMS_STEP:
6056 *status = tpacpi_brightness_nvram_get();
6057 return 0;
6058 case TPACPI_BRGHT_MODE_EC:
6059 case TPACPI_BRGHT_MODE_ECNVRAM:
6060 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03006061 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006062 *status = lec;
6063 return 0;
6064 default:
6065 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006066 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006067}
6068
6069/* call with brightness_mutex held! */
6070/* do NOT call with illegal backlight level value */
6071static int tpacpi_brightness_set_ec(unsigned int value)
6072{
6073 u8 lec = 0;
6074
6075 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
6076 return -EIO;
6077
6078 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
6079 (lec & TP_EC_BACKLIGHT_CMDMSK) |
6080 (value & TP_EC_BACKLIGHT_LVLMSK))))
6081 return -EIO;
6082
6083 return 0;
6084}
6085
6086/* call with brightness_mutex held! */
6087static int tpacpi_brightness_set_ucmsstep(unsigned int value)
6088{
6089 int cmos_cmd, inc;
6090 unsigned int current_value, i;
6091
6092 current_value = tpacpi_brightness_nvram_get();
6093
6094 if (value == current_value)
6095 return 0;
6096
6097 cmos_cmd = (value > current_value) ?
6098 TP_CMOS_BRIGHTNESS_UP :
6099 TP_CMOS_BRIGHTNESS_DOWN;
6100 inc = (value > current_value) ? 1 : -1;
6101
6102 for (i = current_value; i != value; i += inc)
6103 if (issue_thinkpad_cmos_command(cmos_cmd))
6104 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006105
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006106 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006107}
6108
6109/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006110static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006111{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006112 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006113
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006114 if (value > bright_maxlvl || value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006115 return -EINVAL;
6116
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006117 vdbg_printk(TPACPI_DBG_BRGHT,
6118 "set backlight level to %d\n", value);
6119
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006120 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006121 if (res < 0)
6122 return res;
6123
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006124 switch (brightness_mode) {
6125 case TPACPI_BRGHT_MODE_EC:
6126 case TPACPI_BRGHT_MODE_ECNVRAM:
6127 res = tpacpi_brightness_set_ec(value);
6128 break;
6129 case TPACPI_BRGHT_MODE_UCMS_STEP:
6130 res = tpacpi_brightness_set_ucmsstep(value);
6131 break;
6132 default:
6133 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006134 }
6135
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006136 mutex_unlock(&brightness_mutex);
6137 return res;
6138}
6139
6140/* sysfs backlight class ----------------------------------------------- */
6141
6142static int brightness_update_status(struct backlight_device *bd)
6143{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006144 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006145 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6146 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006147 bd->props.brightness : 0;
6148
6149 dbg_printk(TPACPI_DBG_BRGHT,
6150 "backlight: attempt to set level to %d\n",
6151 level);
6152
6153 /* it is the backlight class's job (caller) to handle
6154 * EINTR and other errors properly */
6155 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006156}
Holger Macht8acb0252006-10-20 14:30:28 -07006157
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006158static int brightness_get(struct backlight_device *bd)
6159{
6160 int status, res;
6161
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006162 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006163 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006164 return 0;
6165
6166 res = tpacpi_brightness_get_raw(&status);
6167
6168 mutex_unlock(&brightness_mutex);
6169
6170 if (res < 0)
6171 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006172
6173 return status & TP_EC_BACKLIGHT_LVLMSK;
6174}
6175
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006176static void tpacpi_brightness_notify_change(void)
6177{
6178 backlight_force_update(ibm_backlight_device,
6179 BACKLIGHT_UPDATE_HOTKEY);
6180}
6181
Lionel Debrouxacc24722010-11-16 14:14:02 +01006182static const struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006183 .get_brightness = brightness_get,
6184 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006185};
6186
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006187/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006188
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006189/*
6190 * Call _BCL method of video device. On some ThinkPads this will
6191 * switch the firmware to the ACPI brightness control mode.
6192 */
6193
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006194static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6195{
6196 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6197 union acpi_object *obj;
Aaron Lu46445b62013-10-11 21:27:46 +08006198 struct acpi_device *device, *child;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006199 int rc;
6200
Aaron Lu46445b62013-10-11 21:27:46 +08006201 if (acpi_bus_get_device(handle, &device))
6202 return 0;
6203
6204 rc = 0;
6205 list_for_each_entry(child, &device->children, node) {
6206 acpi_status status = acpi_evaluate_object(child->handle, "_BCL",
6207 NULL, &buffer);
6208 if (ACPI_FAILURE(status))
6209 continue;
6210
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006211 obj = (union acpi_object *)buffer.pointer;
6212 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Joe Perches0978e012011-04-04 10:06:25 -07006213 pr_err("Unknown _BCL data, please report this to %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +08006214 TPACPI_MAIL);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006215 rc = 0;
6216 } else {
6217 rc = obj->package.count;
6218 }
Aaron Lu46445b62013-10-11 21:27:46 +08006219 break;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006220 }
6221
6222 kfree(buffer.pointer);
6223 return rc;
6224}
6225
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006226
6227/*
6228 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6229 */
6230static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6231{
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006232 acpi_handle video_device;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006233 int bcl_levels = 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006234
Aaron Lu46445b62013-10-11 21:27:46 +08006235 tpacpi_acpi_handle_locate("video", NULL, &video_device);
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006236 if (video_device)
6237 bcl_levels = tpacpi_query_bcl_levels(video_device);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006238
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006239 tp_features.bright_acpimode = (bcl_levels > 0);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006240
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006241 return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006242}
6243
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006244/*
6245 * These are only useful for models that have only one possibility
6246 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6247 * these quirks.
6248 */
6249#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6250#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6251#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6252
6253static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6254 /* Models with ATI GPUs known to require ECNVRAM mode */
6255 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6256
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006257 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006258 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006259 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006260 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006261 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6262
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006263 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006264 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006265 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6266 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006267
6268 /* Models with Intel GMA900 */
6269 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6270 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6271 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6272};
6273
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006274/*
6275 * Returns < 0 for error, otherwise sets tp_features.bright_*
6276 * and bright_maxlvl.
6277 */
6278static void __init tpacpi_detect_brightness_capabilities(void)
6279{
6280 unsigned int b;
6281
6282 vdbg_printk(TPACPI_DBG_INIT,
6283 "detecting firmware brightness interface capabilities\n");
6284
6285 /* we could run a quirks check here (same table used by
6286 * brightness_init) if needed */
6287
6288 /*
6289 * We always attempt to detect acpi support, so as to switch
6290 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6291 * going to publish a backlight interface
6292 */
6293 b = tpacpi_check_std_acpi_brightness_support();
6294 switch (b) {
6295 case 16:
6296 bright_maxlvl = 15;
Joe Perches0978e012011-04-04 10:06:25 -07006297 pr_info("detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006298 break;
6299 case 8:
6300 case 0:
6301 bright_maxlvl = 7;
Joe Perches0978e012011-04-04 10:06:25 -07006302 pr_info("detected a 8-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006303 break;
6304 default:
Joe Perches0978e012011-04-04 10:06:25 -07006305 pr_err("Unsupported brightness interface, "
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006306 "please contact %s\n", TPACPI_MAIL);
6307 tp_features.bright_unkfw = 1;
6308 bright_maxlvl = b - 1;
6309 }
6310}
6311
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006312static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006313{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006314 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006315 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006316 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006317
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006318 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6319
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006320 mutex_init(&brightness_mutex);
6321
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006322 quirks = tpacpi_check_quirks(brightness_quirk_table,
6323 ARRAY_SIZE(brightness_quirk_table));
6324
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006325 /* tpacpi_detect_brightness_capabilities() must have run already */
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006326
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006327 /* if it is unknown, we don't handle it: it wouldn't be safe */
6328 if (tp_features.bright_unkfw)
6329 return 1;
6330
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006331 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006332 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006333 "brightness support disabled by "
6334 "module parameter\n");
6335 return 1;
6336 }
6337
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006338 if (acpi_video_backlight_support()) {
6339 if (brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006340 pr_info("Standard ACPI backlight interface "
6341 "available, not loading native one\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006342 return 1;
6343 } else if (brightness_enable == 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006344 pr_warn("Cannot enable backlight brightness support, "
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006345 "ACPI is already handling it. Refer to the "
Joe Perches0978e012011-04-04 10:06:25 -07006346 "acpi_backlight kernel parameter.\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006347 return 1;
6348 }
6349 } else if (tp_features.bright_acpimode && brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006350 pr_notice("Standard ACPI backlight interface not "
6351 "available, thinkpad_acpi native "
6352 "brightness control enabled\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006353 }
6354
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006355 /*
6356 * Check for module parameter bogosity, note that we
6357 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6358 * able to detect "unspecified"
6359 */
6360 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006361 return -EINVAL;
6362
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006363 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6364 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6365 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006366 if (quirks & TPACPI_BRGHT_Q_EC)
6367 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6368 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006369 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6370
6371 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006372 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006373 brightness_mode);
6374 }
6375
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006376 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006377 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006378 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6379 brightness_mode == TPACPI_BRGHT_MODE_EC))
6380 return -EINVAL;
6381
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006382 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006383 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006384
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006385 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07006386 props.type = BACKLIGHT_PLATFORM;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006387 props.max_brightness = bright_maxlvl;
6388 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006389 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6390 NULL, NULL,
6391 &ibm_backlight_data,
6392 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006393 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006394 int rc = PTR_ERR(ibm_backlight_device);
6395 ibm_backlight_device = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07006396 pr_err("Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006397 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006398 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006399 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6400 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006401
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006402 if (quirks & TPACPI_BRGHT_Q_ASK) {
Joe Perches0978e012011-04-04 10:06:25 -07006403 pr_notice("brightness: will use unverified default: "
6404 "brightness_mode=%d\n", brightness_mode);
6405 pr_notice("brightness: please report to %s whether it works well "
6406 "or not on your ThinkPad\n", TPACPI_MAIL);
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006407 }
6408
Henrique de Moraes Holschuh7d9745c2010-05-16 19:45:57 -03006409 /* Added by mistake in early 2007. Probably useless, but it could
6410 * be working around some unknown firmware problem where the value
6411 * read at startup doesn't match the real hardware state... so leave
6412 * it in place just in case */
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006413 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006414
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006415 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6416 "brightness: registering brightness hotkeys "
6417 "as change notification\n");
6418 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6419 | TP_ACPI_HKEY_BRGHTUP_MASK
Joe Perches30980642010-11-14 19:04:38 -08006420 | TP_ACPI_HKEY_BRGHTDWN_MASK);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006421 return 0;
6422}
6423
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02006424static void brightness_suspend(void)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006425{
6426 tpacpi_brightness_checkpoint_nvram();
6427}
6428
6429static void brightness_shutdown(void)
6430{
6431 tpacpi_brightness_checkpoint_nvram();
6432}
6433
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006434static void brightness_exit(void)
6435{
6436 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006437 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006438 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006439 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006440 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006441
6442 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006443}
6444
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006445static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006446{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006447 int level;
6448
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006449 level = brightness_get(NULL);
6450 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006451 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006452 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006453 seq_printf(m, "level:\t\t%d\n", level);
6454 seq_printf(m, "commands:\tup, down\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006455 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
6456 bright_maxlvl);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006457 }
6458
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006459 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006460}
6461
6462static int brightness_write(char *buf)
6463{
6464 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006465 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006466 char *cmd;
6467
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006468 level = brightness_get(NULL);
6469 if (level < 0)
6470 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006471
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006472 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006473 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006474 if (level < bright_maxlvl)
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006475 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006476 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006477 if (level > 0)
6478 level--;
6479 } else if (sscanf(cmd, "level %d", &level) == 1 &&
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006480 level >= 0 && level <= bright_maxlvl) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006481 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006482 } else
6483 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006484 }
6485
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006486 tpacpi_disclose_usertask("procfs brightness",
6487 "set level to %d\n", level);
6488
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006489 /*
6490 * Now we know what the final level should be, so we try to set it.
6491 * Doing it this way makes the syscall restartable in case of EINTR
6492 */
6493 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006494 if (!rc && ibm_backlight_device)
6495 backlight_force_update(ibm_backlight_device,
6496 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006497 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006498}
6499
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006500static struct ibm_struct brightness_driver_data = {
6501 .name = "brightness",
6502 .read = brightness_read,
6503 .write = brightness_write,
6504 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006505 .suspend = brightness_suspend,
6506 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006507};
6508
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006509/*************************************************************************
6510 * Volume subdriver
6511 */
6512
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006513/*
6514 * IBM ThinkPads have a simple volume controller with MUTE gating.
6515 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6516 *
6517 * Since the *61 series (and probably also the later *60 series), Lenovo
6518 * ThinkPads only implement the MUTE gate.
6519 *
6520 * EC register 0x30
6521 * Bit 6: MUTE (1 mutes sound)
6522 * Bit 3-0: Volume
6523 * Other bits should be zero as far as we know.
6524 *
6525 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6526 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6527 * such as bit 7 which is used to detect repeated presses of MUTE,
6528 * and we leave them unchanged.
6529 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006530
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006531#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6532
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006533#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6534#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6535#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6536
Takashi Iwaicab66612013-10-24 16:06:32 +02006537#if SNDRV_CARDS <= 32
6538#define DEFAULT_ALSA_IDX ~((1 << (SNDRV_CARDS - 3)) - 1)
6539#else
6540#define DEFAULT_ALSA_IDX ~((1 << (32 - 3)) - 1)
6541#endif
6542static int alsa_index = DEFAULT_ALSA_IDX; /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006543static char *alsa_id = "ThinkPadEC";
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306544static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006545
6546struct tpacpi_alsa_data {
6547 struct snd_card *card;
6548 struct snd_ctl_elem_id *ctl_mute_id;
6549 struct snd_ctl_elem_id *ctl_vol_id;
6550};
6551
6552static struct snd_card *alsa_card;
6553
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006554enum {
6555 TP_EC_AUDIO = 0x30,
6556
6557 /* TP_EC_AUDIO bits */
6558 TP_EC_AUDIO_MUTESW = 6,
6559
6560 /* TP_EC_AUDIO bitmasks */
6561 TP_EC_AUDIO_LVL_MSK = 0x0F,
6562 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6563
6564 /* Maximum volume */
6565 TP_EC_VOLUME_MAX = 14,
6566};
6567
6568enum tpacpi_volume_access_mode {
6569 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6570 TPACPI_VOL_MODE_EC, /* Pure EC control */
6571 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6572 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6573 TPACPI_VOL_MODE_MAX
6574};
6575
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006576enum tpacpi_volume_capabilities {
6577 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6578 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6579 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6580 TPACPI_VOL_CAP_MAX
6581};
6582
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006583static enum tpacpi_volume_access_mode volume_mode =
6584 TPACPI_VOL_MODE_MAX;
6585
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006586static enum tpacpi_volume_capabilities volume_capabilities;
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306587static bool volume_control_allowed;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006588
6589/*
6590 * Used to syncronize writers to TP_EC_AUDIO and
6591 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6592 */
6593static struct mutex volume_mutex;
6594
6595static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006596{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006597 u8 lec = 0;
6598 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006599 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006600
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006601 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6602 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006603 if (!volume_control_allowed)
6604 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006605
6606 vdbg_printk(TPACPI_DBG_MIXER,
6607 "trying to checkpoint mixer state to NVRAM...\n");
6608
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006609 if (tp_features.mixer_no_level_control)
6610 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6611 else
6612 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6613
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006614 if (mutex_lock_killable(&volume_mutex) < 0)
6615 return;
6616
6617 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6618 goto unlock;
6619 lec &= ec_mask;
6620 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
6621
6622 if (lec != (b_nvram & ec_mask)) {
6623 /* NVRAM needs update */
6624 b_nvram &= ~ec_mask;
6625 b_nvram |= lec;
6626 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
6627 dbg_printk(TPACPI_DBG_MIXER,
6628 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6629 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006630 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006631 vdbg_printk(TPACPI_DBG_MIXER,
6632 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6633 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006634 }
6635
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006636unlock:
6637 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006638}
6639
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006640static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006641{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006642 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006643
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006644 if (!acpi_ec_read(TP_EC_AUDIO, &s))
6645 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006646
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006647 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006648
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006649 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006650
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006651 return 0;
6652}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006653
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006654static int volume_get_status(u8 *status)
6655{
6656 return volume_get_status_ec(status);
6657}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006658
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006659static int volume_set_status_ec(const u8 status)
6660{
6661 if (!acpi_ec_write(TP_EC_AUDIO, status))
6662 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006663
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006664 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
6665
6666 return 0;
6667}
6668
6669static int volume_set_status(const u8 status)
6670{
6671 return volume_set_status_ec(status);
6672}
6673
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006674/* returns < 0 on error, 0 on no change, 1 on change */
6675static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006676{
6677 int rc;
6678 u8 s, n;
6679
6680 if (mutex_lock_killable(&volume_mutex) < 0)
6681 return -EINTR;
6682
6683 rc = volume_get_status_ec(&s);
6684 if (rc)
6685 goto unlock;
6686
6687 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
6688 s & ~TP_EC_AUDIO_MUTESW_MSK;
6689
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006690 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006691 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006692 if (!rc)
6693 rc = 1;
6694 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006695
6696unlock:
6697 mutex_unlock(&volume_mutex);
6698 return rc;
6699}
6700
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006701static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006702{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006703 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006704 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006705 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006706}
6707
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006708static int volume_set_mute(const bool mute)
6709{
6710 int rc;
6711
6712 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
6713 (mute) ? "" : "un");
6714
6715 rc = __volume_set_mute_ec(mute);
6716 return (rc < 0) ? rc : 0;
6717}
6718
6719/* returns < 0 on error, 0 on no change, 1 on change */
6720static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006721{
6722 int rc;
6723 u8 s, n;
6724
6725 if (vol > TP_EC_VOLUME_MAX)
6726 return -EINVAL;
6727
6728 if (mutex_lock_killable(&volume_mutex) < 0)
6729 return -EINTR;
6730
6731 rc = volume_get_status_ec(&s);
6732 if (rc)
6733 goto unlock;
6734
6735 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
6736
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006737 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006738 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006739 if (!rc)
6740 rc = 1;
6741 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006742
6743unlock:
6744 mutex_unlock(&volume_mutex);
6745 return rc;
6746}
6747
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006748static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006749{
6750 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006751 "ALSA: trying to set volume level to %hu\n", vol);
6752 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006753}
6754
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006755static void volume_alsa_notify_change(void)
6756{
6757 struct tpacpi_alsa_data *d;
6758
6759 if (alsa_card && alsa_card->private_data) {
6760 d = alsa_card->private_data;
6761 if (d->ctl_mute_id)
6762 snd_ctl_notify(alsa_card,
6763 SNDRV_CTL_EVENT_MASK_VALUE,
6764 d->ctl_mute_id);
6765 if (d->ctl_vol_id)
6766 snd_ctl_notify(alsa_card,
6767 SNDRV_CTL_EVENT_MASK_VALUE,
6768 d->ctl_vol_id);
6769 }
6770}
6771
6772static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
6773 struct snd_ctl_elem_info *uinfo)
6774{
6775 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
6776 uinfo->count = 1;
6777 uinfo->value.integer.min = 0;
6778 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
6779 return 0;
6780}
6781
6782static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
6783 struct snd_ctl_elem_value *ucontrol)
6784{
6785 u8 s;
6786 int rc;
6787
6788 rc = volume_get_status(&s);
6789 if (rc < 0)
6790 return rc;
6791
6792 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
6793 return 0;
6794}
6795
6796static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
6797 struct snd_ctl_elem_value *ucontrol)
6798{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03006799 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
6800 ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006801 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006802}
6803
6804#define volume_alsa_mute_info snd_ctl_boolean_mono_info
6805
6806static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
6807 struct snd_ctl_elem_value *ucontrol)
6808{
6809 u8 s;
6810 int rc;
6811
6812 rc = volume_get_status(&s);
6813 if (rc < 0)
6814 return rc;
6815
6816 ucontrol->value.integer.value[0] =
6817 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
6818 return 0;
6819}
6820
6821static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
6822 struct snd_ctl_elem_value *ucontrol)
6823{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03006824 tpacpi_disclose_usertask("ALSA", "%smute\n",
6825 ucontrol->value.integer.value[0] ?
6826 "un" : "");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006827 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006828}
6829
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08006830static struct snd_kcontrol_new volume_alsa_control_vol = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006831 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6832 .name = "Console Playback Volume",
6833 .index = 0,
6834 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6835 .info = volume_alsa_vol_info,
6836 .get = volume_alsa_vol_get,
6837};
6838
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08006839static struct snd_kcontrol_new volume_alsa_control_mute = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006840 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6841 .name = "Console Playback Switch",
6842 .index = 0,
6843 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6844 .info = volume_alsa_mute_info,
6845 .get = volume_alsa_mute_get,
6846};
6847
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02006848static void volume_suspend(void)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006849{
6850 tpacpi_volume_checkpoint_nvram();
6851}
6852
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006853static void volume_resume(void)
6854{
6855 volume_alsa_notify_change();
6856}
6857
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006858static void volume_shutdown(void)
6859{
6860 tpacpi_volume_checkpoint_nvram();
6861}
6862
6863static void volume_exit(void)
6864{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006865 if (alsa_card) {
6866 snd_card_free(alsa_card);
6867 alsa_card = NULL;
6868 }
6869
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006870 tpacpi_volume_checkpoint_nvram();
6871}
6872
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006873static int __init volume_create_alsa_mixer(void)
6874{
6875 struct snd_card *card;
6876 struct tpacpi_alsa_data *data;
6877 struct snd_kcontrol *ctl_vol;
6878 struct snd_kcontrol *ctl_mute;
6879 int rc;
6880
Takashi Iwai89235e52014-01-29 15:01:27 +01006881 rc = snd_card_new(&tpacpi_pdev->dev,
6882 alsa_index, alsa_id, THIS_MODULE,
6883 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006884 if (rc < 0 || !card) {
Joe Perches0978e012011-04-04 10:06:25 -07006885 pr_err("Failed to create ALSA card structures: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006886 return 1;
6887 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006888
6889 BUG_ON(!card->private_data);
6890 data = card->private_data;
6891 data->card = card;
6892
6893 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
6894 sizeof(card->driver));
6895 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
6896 sizeof(card->shortname));
6897 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
6898 (thinkpad_id.ec_version_str) ?
6899 thinkpad_id.ec_version_str : "(unknown)");
6900 snprintf(card->longname, sizeof(card->longname),
6901 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
6902 (thinkpad_id.ec_version_str) ?
6903 thinkpad_id.ec_version_str : "unknown");
6904
6905 if (volume_control_allowed) {
6906 volume_alsa_control_vol.put = volume_alsa_vol_put;
6907 volume_alsa_control_vol.access =
6908 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6909
6910 volume_alsa_control_mute.put = volume_alsa_mute_put;
6911 volume_alsa_control_mute.access =
6912 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6913 }
6914
6915 if (!tp_features.mixer_no_level_control) {
6916 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
6917 rc = snd_ctl_add(card, ctl_vol);
6918 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006919 pr_err("Failed to create ALSA volume control: %d\n",
6920 rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006921 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006922 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006923 data->ctl_vol_id = &ctl_vol->id;
6924 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006925
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006926 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
6927 rc = snd_ctl_add(card, ctl_mute);
6928 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006929 pr_err("Failed to create ALSA mute control: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006930 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006931 }
6932 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006933
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006934 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006935 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006936 pr_err("Failed to register ALSA card: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006937 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006938 }
6939
6940 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006941 return 0;
6942
6943err_exit:
6944 snd_card_free(card);
6945 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006946}
6947
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006948#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6949#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6950
6951static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
6952 /* Whitelist volume level on all IBM by default */
6953 { .vendor = PCI_VENDOR_ID_IBM,
6954 .bios = TPACPI_MATCH_ANY,
6955 .ec = TPACPI_MATCH_ANY,
6956 .quirks = TPACPI_VOL_Q_LEVEL },
6957
6958 /* Lenovo models with volume control (needs confirmation) */
6959 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
6960 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
6961 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
6962 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
6963 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
6964 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
6965 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
6966
6967 /* Whitelist mute-only on all Lenovo by default */
6968 { .vendor = PCI_VENDOR_ID_LENOVO,
6969 .bios = TPACPI_MATCH_ANY,
6970 .ec = TPACPI_MATCH_ANY,
6971 .quirks = TPACPI_VOL_Q_MUTEONLY }
6972};
6973
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006974static int __init volume_init(struct ibm_init_struct *iibm)
6975{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006976 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006977 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006978
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006979 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
6980
6981 mutex_init(&volume_mutex);
6982
6983 /*
6984 * Check for module parameter bogosity, note that we
6985 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6986 * able to detect "unspecified"
6987 */
6988 if (volume_mode > TPACPI_VOL_MODE_MAX)
6989 return -EINVAL;
6990
6991 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
Joe Perches0978e012011-04-04 10:06:25 -07006992 pr_err("UCMS step volume mode not implemented, "
6993 "please contact %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006994 return 1;
6995 }
6996
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006997 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
6998 return -EINVAL;
6999
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007000 /*
7001 * The ALSA mixer is our primary interface.
7002 * When disabled, don't install the subdriver at all
7003 */
7004 if (!alsa_enable) {
7005 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7006 "ALSA mixer disabled by parameter, "
7007 "not loading volume subdriver...\n");
7008 return 1;
7009 }
7010
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007011 quirks = tpacpi_check_quirks(volume_quirk_table,
7012 ARRAY_SIZE(volume_quirk_table));
7013
7014 switch (volume_capabilities) {
7015 case TPACPI_VOL_CAP_AUTO:
7016 if (quirks & TPACPI_VOL_Q_MUTEONLY)
7017 tp_features.mixer_no_level_control = 1;
7018 else if (quirks & TPACPI_VOL_Q_LEVEL)
7019 tp_features.mixer_no_level_control = 0;
7020 else
7021 return 1; /* no mixer */
7022 break;
7023 case TPACPI_VOL_CAP_VOLMUTE:
7024 tp_features.mixer_no_level_control = 0;
7025 break;
7026 case TPACPI_VOL_CAP_MUTEONLY:
7027 tp_features.mixer_no_level_control = 1;
7028 break;
7029 default:
7030 return 1;
7031 }
7032
7033 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
7034 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7035 "using user-supplied volume_capabilities=%d\n",
7036 volume_capabilities);
7037
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007038 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
7039 volume_mode == TPACPI_VOL_MODE_MAX) {
7040 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
7041
7042 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7043 "driver auto-selected volume_mode=%d\n",
7044 volume_mode);
7045 } else {
7046 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7047 "using user-supplied volume_mode=%d\n",
7048 volume_mode);
7049 }
7050
7051 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007052 "mute is supported, volume control is %s\n",
7053 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007054
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007055 rc = volume_create_alsa_mixer();
7056 if (rc) {
Joe Perches0978e012011-04-04 10:06:25 -07007057 pr_err("Could not create the ALSA mixer interface\n");
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007058 return rc;
7059 }
7060
Joe Perches0978e012011-04-04 10:06:25 -07007061 pr_info("Console audio control enabled, mode: %s\n",
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007062 (volume_control_allowed) ?
7063 "override (read/write)" :
7064 "monitor (read only)");
7065
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007066 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
7067 "registering volume hotkeys as change notification\n");
7068 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
7069 | TP_ACPI_HKEY_VOLUP_MASK
7070 | TP_ACPI_HKEY_VOLDWN_MASK
7071 | TP_ACPI_HKEY_MUTE_MASK);
7072
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007073 return 0;
7074}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007075
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007076static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007077{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007078 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007079
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007080 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007081 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007082 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007083 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007084 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007085 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007086 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007087 status & TP_EC_AUDIO_LVL_MSK);
7088
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007089 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007090 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007091
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007092 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007093 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007094 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007095 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007096 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02007097 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007098 "commands:\tlevel <level>"
7099 " (<level> is 0-%d)\n",
7100 TP_EC_VOLUME_MAX);
7101 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007102 }
7103 }
7104
7105 return 0;
7106}
7107
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007108static int volume_write(char *buf)
7109{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007110 u8 s;
7111 u8 new_level, new_mute;
7112 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007113 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007114 int rc;
7115
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007116 /*
7117 * We do allow volume control at driver startup, so that the
7118 * user can set initial state through the volume=... parameter hack.
7119 */
7120 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7121 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7122 tp_warned.volume_ctrl_forbidden = 1;
Joe Perches0978e012011-04-04 10:06:25 -07007123 pr_notice("Console audio control in monitor mode, "
7124 "changes are not allowed\n");
7125 pr_notice("Use the volume_control=1 module parameter "
7126 "to enable volume control\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007127 }
7128 return -EPERM;
7129 }
7130
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007131 rc = volume_get_status(&s);
7132 if (rc < 0)
7133 return rc;
7134
7135 new_level = s & TP_EC_AUDIO_LVL_MSK;
7136 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007137
7138 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007139 if (!tp_features.mixer_no_level_control) {
7140 if (strlencmp(cmd, "up") == 0) {
7141 if (new_mute)
7142 new_mute = 0;
7143 else if (new_level < TP_EC_VOLUME_MAX)
7144 new_level++;
7145 continue;
7146 } else if (strlencmp(cmd, "down") == 0) {
7147 if (new_mute)
7148 new_mute = 0;
7149 else if (new_level > 0)
7150 new_level--;
7151 continue;
7152 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7153 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7154 new_level = l;
7155 continue;
7156 }
7157 }
7158 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007159 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007160 else if (strlencmp(cmd, "unmute") == 0)
7161 new_mute = 0;
7162 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007163 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007164 }
7165
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007166 if (tp_features.mixer_no_level_control) {
7167 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7168 new_mute ? "" : "un");
7169 rc = volume_set_mute(!!new_mute);
7170 } else {
7171 tpacpi_disclose_usertask("procfs volume",
7172 "%smute and set level to %d\n",
7173 new_mute ? "" : "un", new_level);
7174 rc = volume_set_status(new_mute | new_level);
7175 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007176 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007177
7178 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007179}
7180
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007181static struct ibm_struct volume_driver_data = {
7182 .name = "volume",
7183 .read = volume_read,
7184 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007185 .exit = volume_exit,
7186 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007187 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007188 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007189};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007190
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007191#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7192
7193#define alsa_card NULL
7194
7195static void inline volume_alsa_notify_change(void)
7196{
7197}
7198
7199static int __init volume_init(struct ibm_init_struct *iibm)
7200{
Joe Perches0978e012011-04-04 10:06:25 -07007201 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007202
7203 return 1;
7204}
7205
7206static struct ibm_struct volume_driver_data = {
7207 .name = "volume",
7208};
7209
7210#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7211
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007212/*************************************************************************
7213 * Fan subdriver
7214 */
7215
7216/*
7217 * FAN ACCESS MODES
7218 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007219 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007220 * ACPI GFAN method: returns fan level
7221 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007222 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007223 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007224 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007225 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007226 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7227 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007228 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7229 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007230 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007231 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007232 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7233 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007234 *
7235 * Fan speed changes of any sort (including those caused by the
7236 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007237 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007238 * limited.
7239 *
7240 * Reading is not available if GFAN exists.
7241 * Writing is not available if SFAN exists.
7242 *
7243 * Bits
7244 * 7 automatic mode engaged;
7245 * (default operation mode of the ThinkPad)
7246 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007247 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007248 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007249 * the tachometer while the fan controller ramps up
7250 * the speed (which can take up to a few *minutes*).
7251 * Speeds up fan to 100% duty-cycle, which is far above
7252 * the standard RPM levels. It is not impossible that
7253 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007254 * 5-3 unused in some models. Extra bits for fan level
7255 * in others, but still useless as all values above
7256 * 7 map to the same speed as level 7 in these models.
7257 * 2-0 fan level (0..7 usually)
7258 * 0x00 = stop
7259 * 0x07 = max (set when temperatures critical)
7260 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007261 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007262 *
7263 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007264 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007265 * does so, its initial value is meaningless (0x07).
7266 *
7267 * For firmware bugs, refer to:
7268 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7269 *
7270 * ----
7271 *
7272 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7273 * Main fan tachometer reading (in RPM)
7274 *
7275 * This register is present on all ThinkPads with a new-style EC, and
7276 * it is known not to be present on the A21m/e, and T22, as there is
7277 * something else in offset 0x84 according to the ACPI DSDT. Other
7278 * ThinkPads from this same time period (and earlier) probably lack the
7279 * tachometer as well.
7280 *
Nick Andrew877d0312009-01-26 11:06:57 +01007281 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007282 * was never fixed by IBM to report the EC firmware version string
7283 * probably support the tachometer (like the early X models), so
7284 * detecting it is quite hard. We need more data to know for sure.
7285 *
7286 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7287 * might result.
7288 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007289 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7290 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007291 *
7292 * For firmware bugs, refer to:
7293 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7294 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007295 * ----
7296 *
7297 * ThinkPad EC register 0x31 bit 0 (only on select models)
7298 *
7299 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7300 * show the speed of the main fan. When bit 0 of EC register 0x31
7301 * is one, the tachometer registers show the speed of the auxiliary
7302 * fan.
7303 *
7304 * Fan control seems to affect both fans, regardless of the state
7305 * of this bit.
7306 *
7307 * So far, only the firmware for the X60/X61 non-tablet versions
7308 * seem to support this (firmware TP-7M).
7309 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007310 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007311 * ThinkPad X31, X40, X41. Not available in the X60.
7312 *
7313 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7314 * high speed. ACPI DSDT seems to map these three speeds to levels
7315 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7316 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7317 *
7318 * The speeds are stored on handles
7319 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7320 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007321 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007322 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7323 *
7324 * ACPI DSDT switches which set is in use depending on various
7325 * factors.
7326 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007327 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007328 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7329 * but the ACPI tables just mention level 7.
7330 */
7331
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007332enum { /* Fan control constants */
7333 fan_status_offset = 0x2f, /* EC register 0x2f */
7334 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7335 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007336 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7337 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007338
7339 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7340 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7341
7342 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7343};
7344
7345enum fan_status_access_mode {
7346 TPACPI_FAN_NONE = 0, /* No fan status or control */
7347 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7348 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7349};
7350
7351enum fan_control_access_mode {
7352 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7353 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7354 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7355 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7356};
7357
7358enum fan_control_commands {
7359 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7360 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7361 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7362 * and also watchdog cmd */
7363};
7364
Rusty Russell90ab5ee2012-01-13 09:32:20 +10307365static bool fan_control_allowed;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007366
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007367static enum fan_status_access_mode fan_status_access_mode;
7368static enum fan_control_access_mode fan_control_access_mode;
7369static enum fan_control_commands fan_control_commands;
7370
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007371static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007372static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007373static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007374static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007375
7376static struct mutex fan_mutex;
7377
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007378static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007379static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007380
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007381TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7382TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007383 "\\FSPD", /* 600e/x, 770e, 770x */
7384 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007385TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007386 "JFNS", /* 770x-JL */
7387 ); /* all others */
7388
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007389/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007390 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7391 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7392 * be in auto mode (0x80).
7393 *
7394 * This is corrected by any write to HFSP either by the driver, or
7395 * by the firmware.
7396 *
7397 * We assume 0x07 really means auto mode while this quirk is active,
7398 * as this is far more likely than the ThinkPad being in level 7,
7399 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007400 *
7401 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7402 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007403 */
7404
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007405static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007406{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007407 if (fan_control_initial_status == 0x07) {
Joe Perches0978e012011-04-04 10:06:25 -07007408 pr_notice("fan_init: initial fan status is unknown, "
7409 "assuming it is in auto mode\n");
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007410 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007411 }
7412}
7413
7414static void fan_quirk1_handle(u8 *fan_status)
7415{
7416 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7417 if (*fan_status != fan_control_initial_status) {
7418 /* something changed the HFSP regisnter since
7419 * driver init time, so it is not undefined
7420 * anymore */
7421 tp_features.fan_ctrl_status_undef = 0;
7422 } else {
7423 /* Return most likely status. In fact, it
7424 * might be the only possible status */
7425 *fan_status = TP_EC_FAN_AUTO;
7426 }
7427 }
7428}
7429
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007430/* Select main fan on X60/X61, NOOP on others */
7431static bool fan_select_fan1(void)
7432{
7433 if (tp_features.second_fan) {
7434 u8 val;
7435
7436 if (ec_read(fan_select_offset, &val) < 0)
7437 return false;
7438 val &= 0xFEU;
7439 if (ec_write(fan_select_offset, val) < 0)
7440 return false;
7441 }
7442 return true;
7443}
7444
7445/* Select secondary fan on X60/X61 */
7446static bool fan_select_fan2(void)
7447{
7448 u8 val;
7449
7450 if (!tp_features.second_fan)
7451 return false;
7452
7453 if (ec_read(fan_select_offset, &val) < 0)
7454 return false;
7455 val |= 0x01U;
7456 if (ec_write(fan_select_offset, val) < 0)
7457 return false;
7458
7459 return true;
7460}
7461
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007462/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007463 * Call with fan_mutex held
7464 */
7465static void fan_update_desired_level(u8 status)
7466{
7467 if ((status &
7468 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7469 if (status > 7)
7470 fan_control_desired_level = 7;
7471 else
7472 fan_control_desired_level = status;
7473 }
7474}
7475
7476static int fan_get_status(u8 *status)
7477{
7478 u8 s;
7479
7480 /* TODO:
7481 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7482
7483 switch (fan_status_access_mode) {
Dan Carpentereceeb432012-09-01 12:54:07 -07007484 case TPACPI_FAN_RD_ACPI_GFAN: {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007485 /* 570, 600e/x, 770e, 770x */
Dan Carpentereceeb432012-09-01 12:54:07 -07007486 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007487
Dan Carpentereceeb432012-09-01 12:54:07 -07007488 if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007489 return -EIO;
7490
7491 if (likely(status))
Dan Carpentereceeb432012-09-01 12:54:07 -07007492 *status = res & 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007493
7494 break;
Dan Carpentereceeb432012-09-01 12:54:07 -07007495 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007496 case TPACPI_FAN_RD_TPEC:
7497 /* all except 570, 600e/x, 770e, 770x */
7498 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7499 return -EIO;
7500
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007501 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007502 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007503 fan_quirk1_handle(status);
7504 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007505
7506 break;
7507
7508 default:
7509 return -ENXIO;
7510 }
7511
7512 return 0;
7513}
7514
7515static int fan_get_status_safe(u8 *status)
7516{
7517 int rc;
7518 u8 s;
7519
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007520 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007521 return -ERESTARTSYS;
7522 rc = fan_get_status(&s);
7523 if (!rc)
7524 fan_update_desired_level(s);
7525 mutex_unlock(&fan_mutex);
7526
7527 if (status)
7528 *status = s;
7529
7530 return rc;
7531}
7532
7533static int fan_get_speed(unsigned int *speed)
7534{
7535 u8 hi, lo;
7536
7537 switch (fan_status_access_mode) {
7538 case TPACPI_FAN_RD_TPEC:
7539 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007540 if (unlikely(!fan_select_fan1()))
7541 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007542 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7543 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7544 return -EIO;
7545
7546 if (likely(speed))
7547 *speed = (hi << 8) | lo;
7548
7549 break;
7550
7551 default:
7552 return -ENXIO;
7553 }
7554
7555 return 0;
7556}
7557
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007558static int fan2_get_speed(unsigned int *speed)
7559{
7560 u8 hi, lo;
7561 bool rc;
7562
7563 switch (fan_status_access_mode) {
7564 case TPACPI_FAN_RD_TPEC:
7565 /* all except 570, 600e/x, 770e, 770x */
7566 if (unlikely(!fan_select_fan2()))
7567 return -EIO;
7568 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
7569 !acpi_ec_read(fan_rpm_offset + 1, &hi);
7570 fan_select_fan1(); /* play it safe */
7571 if (rc)
7572 return -EIO;
7573
7574 if (likely(speed))
7575 *speed = (hi << 8) | lo;
7576
7577 break;
7578
7579 default:
7580 return -ENXIO;
7581 }
7582
7583 return 0;
7584}
7585
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007586static int fan_set_level(int level)
7587{
7588 if (!fan_control_allowed)
7589 return -EPERM;
7590
7591 switch (fan_control_access_mode) {
7592 case TPACPI_FAN_WR_ACPI_SFAN:
7593 if (level >= 0 && level <= 7) {
7594 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
7595 return -EIO;
7596 } else
7597 return -EINVAL;
7598 break;
7599
7600 case TPACPI_FAN_WR_ACPI_FANS:
7601 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007602 if (!(level & TP_EC_FAN_AUTO) &&
7603 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007604 ((level < 0) || (level > 7)))
7605 return -EINVAL;
7606
7607 /* safety net should the EC not support AUTO
7608 * or FULLSPEED mode bits and just ignore them */
7609 if (level & TP_EC_FAN_FULLSPEED)
7610 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01007611 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007612 level |= 4; /* safety min speed 4 */
7613
7614 if (!acpi_ec_write(fan_status_offset, level))
7615 return -EIO;
7616 else
7617 tp_features.fan_ctrl_status_undef = 0;
7618 break;
7619
7620 default:
7621 return -ENXIO;
7622 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007623
7624 vdbg_printk(TPACPI_DBG_FAN,
7625 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007626 return 0;
7627}
7628
7629static int fan_set_level_safe(int level)
7630{
7631 int rc;
7632
7633 if (!fan_control_allowed)
7634 return -EPERM;
7635
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007636 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007637 return -ERESTARTSYS;
7638
7639 if (level == TPACPI_FAN_LAST_LEVEL)
7640 level = fan_control_desired_level;
7641
7642 rc = fan_set_level(level);
7643 if (!rc)
7644 fan_update_desired_level(level);
7645
7646 mutex_unlock(&fan_mutex);
7647 return rc;
7648}
7649
7650static int fan_set_enable(void)
7651{
7652 u8 s;
7653 int rc;
7654
7655 if (!fan_control_allowed)
7656 return -EPERM;
7657
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007658 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007659 return -ERESTARTSYS;
7660
7661 switch (fan_control_access_mode) {
7662 case TPACPI_FAN_WR_ACPI_FANS:
7663 case TPACPI_FAN_WR_TPEC:
7664 rc = fan_get_status(&s);
7665 if (rc < 0)
7666 break;
7667
7668 /* Don't go out of emergency fan mode */
7669 if (s != 7) {
7670 s &= 0x07;
7671 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
7672 }
7673
7674 if (!acpi_ec_write(fan_status_offset, s))
7675 rc = -EIO;
7676 else {
7677 tp_features.fan_ctrl_status_undef = 0;
7678 rc = 0;
7679 }
7680 break;
7681
7682 case TPACPI_FAN_WR_ACPI_SFAN:
7683 rc = fan_get_status(&s);
7684 if (rc < 0)
7685 break;
7686
7687 s &= 0x07;
7688
7689 /* Set fan to at least level 4 */
7690 s |= 4;
7691
7692 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007693 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007694 else
7695 rc = 0;
7696 break;
7697
7698 default:
7699 rc = -ENXIO;
7700 }
7701
7702 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007703
7704 if (!rc)
7705 vdbg_printk(TPACPI_DBG_FAN,
7706 "fan control: set fan control register to 0x%02x\n",
7707 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007708 return rc;
7709}
7710
7711static int fan_set_disable(void)
7712{
7713 int rc;
7714
7715 if (!fan_control_allowed)
7716 return -EPERM;
7717
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007718 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007719 return -ERESTARTSYS;
7720
7721 rc = 0;
7722 switch (fan_control_access_mode) {
7723 case TPACPI_FAN_WR_ACPI_FANS:
7724 case TPACPI_FAN_WR_TPEC:
7725 if (!acpi_ec_write(fan_status_offset, 0x00))
7726 rc = -EIO;
7727 else {
7728 fan_control_desired_level = 0;
7729 tp_features.fan_ctrl_status_undef = 0;
7730 }
7731 break;
7732
7733 case TPACPI_FAN_WR_ACPI_SFAN:
7734 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
7735 rc = -EIO;
7736 else
7737 fan_control_desired_level = 0;
7738 break;
7739
7740 default:
7741 rc = -ENXIO;
7742 }
7743
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007744 if (!rc)
7745 vdbg_printk(TPACPI_DBG_FAN,
7746 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007747
7748 mutex_unlock(&fan_mutex);
7749 return rc;
7750}
7751
7752static int fan_set_speed(int speed)
7753{
7754 int rc;
7755
7756 if (!fan_control_allowed)
7757 return -EPERM;
7758
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007759 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007760 return -ERESTARTSYS;
7761
7762 rc = 0;
7763 switch (fan_control_access_mode) {
7764 case TPACPI_FAN_WR_ACPI_FANS:
7765 if (speed >= 0 && speed <= 65535) {
7766 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7767 speed, speed, speed))
7768 rc = -EIO;
7769 } else
7770 rc = -EINVAL;
7771 break;
7772
7773 default:
7774 rc = -ENXIO;
7775 }
7776
7777 mutex_unlock(&fan_mutex);
7778 return rc;
7779}
7780
7781static void fan_watchdog_reset(void)
7782{
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007783 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7784 return;
7785
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007786 if (fan_watchdog_maxinterval > 0 &&
Tejun Heo41f63c52012-08-03 10:30:47 -07007787 tpacpi_lifecycle != TPACPI_LIFE_EXITING)
7788 mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
7789 msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
7790 else
7791 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007792}
7793
7794static void fan_watchdog_fire(struct work_struct *ignored)
7795{
7796 int rc;
7797
7798 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7799 return;
7800
Joe Perches0978e012011-04-04 10:06:25 -07007801 pr_notice("fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007802 rc = fan_set_enable();
7803 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007804 pr_err("fan watchdog: error %d while enabling fan, "
7805 "will try again later...\n", -rc);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007806 /* reschedule for later */
7807 fan_watchdog_reset();
7808 }
7809}
7810
7811/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007812 * SYSFS fan layout: hwmon compatible (device)
7813 *
7814 * pwm*_enable:
7815 * 0: "disengaged" mode
7816 * 1: manual mode
7817 * 2: native EC "auto" mode (recommended, hardware default)
7818 *
7819 * pwm*: set speed in manual mode, ignored otherwise.
7820 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7821 * interpolation.
7822 *
7823 * fan*_input: tachometer reading, RPM
7824 *
7825 *
7826 * SYSFS fan layout: extensions
7827 *
7828 * fan_watchdog (driver):
7829 * fan watchdog interval in seconds, 0 disables (default), max 120
7830 */
7831
7832/* sysfs fan pwm1_enable ----------------------------------------------- */
7833static ssize_t fan_pwm1_enable_show(struct device *dev,
7834 struct device_attribute *attr,
7835 char *buf)
7836{
7837 int res, mode;
7838 u8 status;
7839
7840 res = fan_get_status_safe(&status);
7841 if (res)
7842 return res;
7843
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007844 if (status & TP_EC_FAN_FULLSPEED) {
7845 mode = 0;
7846 } else if (status & TP_EC_FAN_AUTO) {
7847 mode = 2;
7848 } else
7849 mode = 1;
7850
7851 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7852}
7853
7854static ssize_t fan_pwm1_enable_store(struct device *dev,
7855 struct device_attribute *attr,
7856 const char *buf, size_t count)
7857{
7858 unsigned long t;
7859 int res, level;
7860
7861 if (parse_strtoul(buf, 2, &t))
7862 return -EINVAL;
7863
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007864 tpacpi_disclose_usertask("hwmon pwm1_enable",
7865 "set fan mode to %lu\n", t);
7866
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007867 switch (t) {
7868 case 0:
7869 level = TP_EC_FAN_FULLSPEED;
7870 break;
7871 case 1:
7872 level = TPACPI_FAN_LAST_LEVEL;
7873 break;
7874 case 2:
7875 level = TP_EC_FAN_AUTO;
7876 break;
7877 case 3:
7878 /* reserved for software-controlled auto mode */
7879 return -ENOSYS;
7880 default:
7881 return -EINVAL;
7882 }
7883
7884 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007885 if (res == -ENXIO)
7886 return -EINVAL;
7887 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007888 return res;
7889
7890 fan_watchdog_reset();
7891
7892 return count;
7893}
7894
7895static struct device_attribute dev_attr_fan_pwm1_enable =
7896 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7897 fan_pwm1_enable_show, fan_pwm1_enable_store);
7898
7899/* sysfs fan pwm1 ------------------------------------------------------ */
7900static ssize_t fan_pwm1_show(struct device *dev,
7901 struct device_attribute *attr,
7902 char *buf)
7903{
7904 int res;
7905 u8 status;
7906
7907 res = fan_get_status_safe(&status);
7908 if (res)
7909 return res;
7910
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007911 if ((status &
7912 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7913 status = fan_control_desired_level;
7914
7915 if (status > 7)
7916 status = 7;
7917
7918 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7919}
7920
7921static ssize_t fan_pwm1_store(struct device *dev,
7922 struct device_attribute *attr,
7923 const char *buf, size_t count)
7924{
7925 unsigned long s;
7926 int rc;
7927 u8 status, newlevel;
7928
7929 if (parse_strtoul(buf, 255, &s))
7930 return -EINVAL;
7931
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007932 tpacpi_disclose_usertask("hwmon pwm1",
7933 "set fan speed to %lu\n", s);
7934
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007935 /* scale down from 0-255 to 0-7 */
7936 newlevel = (s >> 5) & 0x07;
7937
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007938 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007939 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007940
7941 rc = fan_get_status(&status);
7942 if (!rc && (status &
7943 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7944 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007945 if (rc == -ENXIO)
7946 rc = -EINVAL;
7947 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007948 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007949 fan_watchdog_reset();
7950 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007951 }
7952
7953 mutex_unlock(&fan_mutex);
7954 return (rc)? rc : count;
7955}
7956
7957static struct device_attribute dev_attr_fan_pwm1 =
7958 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7959 fan_pwm1_show, fan_pwm1_store);
7960
7961/* sysfs fan fan1_input ------------------------------------------------ */
7962static ssize_t fan_fan1_input_show(struct device *dev,
7963 struct device_attribute *attr,
7964 char *buf)
7965{
7966 int res;
7967 unsigned int speed;
7968
7969 res = fan_get_speed(&speed);
7970 if (res < 0)
7971 return res;
7972
7973 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7974}
7975
7976static struct device_attribute dev_attr_fan_fan1_input =
7977 __ATTR(fan1_input, S_IRUGO,
7978 fan_fan1_input_show, NULL);
7979
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007980/* sysfs fan fan2_input ------------------------------------------------ */
7981static ssize_t fan_fan2_input_show(struct device *dev,
7982 struct device_attribute *attr,
7983 char *buf)
7984{
7985 int res;
7986 unsigned int speed;
7987
7988 res = fan2_get_speed(&speed);
7989 if (res < 0)
7990 return res;
7991
7992 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7993}
7994
7995static struct device_attribute dev_attr_fan_fan2_input =
7996 __ATTR(fan2_input, S_IRUGO,
7997 fan_fan2_input_show, NULL);
7998
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007999/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008000static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
8001 char *buf)
8002{
8003 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
8004}
8005
8006static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
8007 const char *buf, size_t count)
8008{
8009 unsigned long t;
8010
8011 if (parse_strtoul(buf, 120, &t))
8012 return -EINVAL;
8013
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008014 if (!fan_control_allowed)
8015 return -EPERM;
8016
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008017 fan_watchdog_maxinterval = t;
8018 fan_watchdog_reset();
8019
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008020 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
8021
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008022 return count;
8023}
8024
8025static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
8026 fan_fan_watchdog_show, fan_fan_watchdog_store);
8027
8028/* --------------------------------------------------------------------- */
8029static struct attribute *fan_attributes[] = {
8030 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
8031 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008032 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008033 NULL
8034};
8035
8036static const struct attribute_group fan_attr_group = {
8037 .attrs = fan_attributes,
8038};
8039
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008040#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
8041#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008042
8043#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
8044 { .vendor = PCI_VENDOR_ID_IBM, \
8045 .bios = TPACPI_MATCH_ANY, \
8046 .ec = TPID(__id1, __id2), \
8047 .quirks = __quirks }
8048
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008049#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
8050 { .vendor = PCI_VENDOR_ID_LENOVO, \
8051 .bios = TPACPI_MATCH_ANY, \
8052 .ec = TPID(__id1, __id2), \
8053 .quirks = __quirks }
8054
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008055static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
8056 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
8057 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
8058 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
8059 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008060 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008061};
8062
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008063#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008064#undef TPACPI_FAN_QI
8065
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008066static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008067{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008068 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008069 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008070
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008071 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8072 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008073
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03008074 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008075 fan_status_access_mode = TPACPI_FAN_NONE;
8076 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008077 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008078 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03008079 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008080 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008081 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008082
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008083 if (tpacpi_is_ibm()) {
8084 TPACPI_ACPIHANDLE_INIT(fans);
8085 TPACPI_ACPIHANDLE_INIT(gfan);
8086 TPACPI_ACPIHANDLE_INIT(sfan);
8087 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008088
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008089 quirks = tpacpi_check_quirks(fan_quirk_table,
8090 ARRAY_SIZE(fan_quirk_table));
8091
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008092 if (gfan_handle) {
8093 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008094 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008095 } else {
8096 /* all other ThinkPads: note that even old-style
8097 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02008098 if (likely(acpi_ec_read(fan_status_offset,
8099 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008100 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03008101 if (quirks & TPACPI_FAN_Q1)
8102 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008103 if (quirks & TPACPI_FAN_2FAN) {
8104 tp_features.second_fan = 1;
8105 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8106 "secondary fan support enabled\n");
8107 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008108 } else {
Joe Perches0978e012011-04-04 10:06:25 -07008109 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008110 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008111 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008112 }
8113 }
8114
8115 if (sfan_handle) {
8116 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008117 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008118 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008119 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008120 } else {
8121 if (!gfan_handle) {
8122 /* gfan without sfan means no fan control */
8123 /* all other models implement TP EC 0x2f control */
8124
8125 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008126 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008127 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008128 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008129 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008130 TPACPI_FAN_CMD_SPEED |
8131 TPACPI_FAN_CMD_LEVEL |
8132 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008133 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008134 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008135 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008136 TPACPI_FAN_CMD_LEVEL |
8137 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008138 }
8139 }
8140 }
8141
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008142 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8143 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008144 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8145 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8146 fan_status_access_mode, fan_control_access_mode);
8147
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008148 /* fan control master switch */
8149 if (!fan_control_allowed) {
8150 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8151 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008152 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008153 "fan control features disabled by parameter\n");
8154 }
8155
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008156 /* update fan_control_desired_level */
8157 if (fan_status_access_mode != TPACPI_FAN_NONE)
8158 fan_get_status_safe(NULL);
8159
8160 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8161 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008162 if (tp_features.second_fan) {
8163 /* attach second fan tachometer */
8164 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
8165 &dev_attr_fan_fan2_input.attr;
8166 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008167 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008168 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008169 if (rc < 0)
8170 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008171
8172 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8173 &driver_attr_fan_watchdog);
8174 if (rc < 0) {
8175 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8176 &fan_attr_group);
8177 return rc;
8178 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008179 return 0;
8180 } else
8181 return 1;
8182}
8183
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008184static void fan_exit(void)
8185{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008186 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008187 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008188
8189 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008190 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008191 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8192 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008193
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008194 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008195 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008196}
8197
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02008198static void fan_suspend(void)
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008199{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008200 int rc;
8201
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008202 if (!fan_control_allowed)
8203 return;
8204
8205 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008206 fan_control_resume_level = 0;
8207 rc = fan_get_status_safe(&fan_control_resume_level);
8208 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008209 pr_notice("failed to read fan level for later "
8210 "restore during resume: %d\n", rc);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008211
8212 /* if it is undefined, don't attempt to restore it.
8213 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008214 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008215 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008216}
8217
8218static void fan_resume(void)
8219{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008220 u8 current_level = 7;
8221 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008222 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008223
8224 /* DSDT *always* updates status on resume */
8225 tp_features.fan_ctrl_status_undef = 0;
8226
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008227 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008228 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008229 (fan_get_status_safe(&current_level) < 0))
8230 return;
8231
8232 switch (fan_control_access_mode) {
8233 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008234 /* never decrease fan level */
8235 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008236 break;
8237 case TPACPI_FAN_WR_ACPI_FANS:
8238 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008239 /* never decrease fan level, scale is:
8240 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8241 *
8242 * We expect the firmware to set either 7 or AUTO, but we
8243 * handle FULLSPEED out of paranoia.
8244 *
8245 * So, we can safely only restore FULLSPEED or 7, anything
8246 * else could slow the fan. Restoring AUTO is useless, at
8247 * best that's exactly what the DSDT already set (it is the
8248 * slower it uses).
8249 *
8250 * Always keep in mind that the DSDT *will* have set the
8251 * fans to what the vendor supposes is the best level. We
8252 * muck with it only to speed the fan up.
8253 */
8254 if (fan_control_resume_level != 7 &&
8255 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8256 return;
8257 else
8258 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8259 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008260 break;
8261 default:
8262 return;
8263 }
8264 if (do_set) {
Joe Perches0978e012011-04-04 10:06:25 -07008265 pr_notice("restoring fan level to 0x%02x\n",
8266 fan_control_resume_level);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008267 rc = fan_set_level_safe(fan_control_resume_level);
8268 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008269 pr_notice("failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008270 }
8271}
8272
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008273static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008274{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008275 int rc;
8276 u8 status;
8277 unsigned int speed = 0;
8278
8279 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008280 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008281 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008282 rc = fan_get_status_safe(&status);
8283 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008284 return rc;
8285
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008286 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008287 "level:\t\t%d\n",
8288 (status != 0) ? "enabled" : "disabled", status);
8289 break;
8290
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008291 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008292 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008293 rc = fan_get_status_safe(&status);
8294 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008295 return rc;
8296
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008297 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008298 (status != 0) ? "enabled" : "disabled");
8299
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008300 rc = fan_get_speed(&speed);
8301 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008302 return rc;
8303
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008304 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008305
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008306 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008307 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008308 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008309 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008310 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008311 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008312 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008313 break;
8314
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008315 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008316 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008317 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008318 }
8319
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008320 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008321 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008322
8323 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008324 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008325 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008326 break;
8327
8328 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008329 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008330 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008331 break;
8332 }
8333 }
8334
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008335 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008336 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008337 "commands:\twatchdog <timeout> (<timeout> "
8338 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008339
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008340 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008341 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008342 " (<speed> is 0-65535)\n");
8343
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008344 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008345}
8346
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008347static int fan_write_cmd_level(const char *cmd, int *rc)
8348{
8349 int level;
8350
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008351 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008352 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008353 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008354 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008355 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008356 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008357 return 0;
8358
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008359 *rc = fan_set_level_safe(level);
8360 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008361 pr_err("level command accepted for unsupported access mode %d\n",
8362 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008363 else if (!*rc)
8364 tpacpi_disclose_usertask("procfs fan",
8365 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008366
8367 return 1;
8368}
8369
8370static int fan_write_cmd_enable(const char *cmd, int *rc)
8371{
8372 if (strlencmp(cmd, "enable") != 0)
8373 return 0;
8374
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008375 *rc = fan_set_enable();
8376 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008377 pr_err("enable command accepted for unsupported access mode %d\n",
8378 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008379 else if (!*rc)
8380 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008381
8382 return 1;
8383}
8384
8385static int fan_write_cmd_disable(const char *cmd, int *rc)
8386{
8387 if (strlencmp(cmd, "disable") != 0)
8388 return 0;
8389
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008390 *rc = fan_set_disable();
8391 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008392 pr_err("disable command accepted for unsupported access mode %d\n",
8393 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008394 else if (!*rc)
8395 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008396
8397 return 1;
8398}
8399
8400static int fan_write_cmd_speed(const char *cmd, int *rc)
8401{
8402 int speed;
8403
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008404 /* TODO:
8405 * Support speed <low> <medium> <high> ? */
8406
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008407 if (sscanf(cmd, "speed %d", &speed) != 1)
8408 return 0;
8409
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008410 *rc = fan_set_speed(speed);
8411 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008412 pr_err("speed command accepted for unsupported access mode %d\n",
8413 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008414 else if (!*rc)
8415 tpacpi_disclose_usertask("procfs fan",
8416 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008417
8418 return 1;
8419}
8420
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008421static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8422{
8423 int interval;
8424
8425 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8426 return 0;
8427
8428 if (interval < 0 || interval > 120)
8429 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008430 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008431 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008432 tpacpi_disclose_usertask("procfs fan",
8433 "set watchdog timer to %d\n",
8434 interval);
8435 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008436
8437 return 1;
8438}
8439
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008440static int fan_write(char *buf)
8441{
8442 char *cmd;
8443 int rc = 0;
8444
8445 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008446 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008447 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008448 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008449 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008450 fan_write_cmd_disable(cmd, &rc) ||
8451 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008452 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008453 fan_write_cmd_speed(cmd, &rc))
8454 )
8455 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008456 else if (!rc)
8457 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008458 }
8459
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008460 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008461}
8462
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008463static struct ibm_struct fan_driver_data = {
8464 .name = "fan",
8465 .read = fan_read,
8466 .write = fan_write,
8467 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008468 .suspend = fan_suspend,
8469 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008470};
8471
David Henningsson420f9732013-10-16 23:10:31 +02008472/*************************************************************************
8473 * Mute LED subdriver
8474 */
8475
8476
8477struct tp_led_table {
8478 acpi_string name;
8479 int on_value;
8480 int off_value;
8481 int state;
8482};
8483
8484static struct tp_led_table led_tables[] = {
8485 [TPACPI_LED_MUTE] = {
8486 .name = "SSMS",
8487 .on_value = 1,
8488 .off_value = 0,
8489 },
8490 [TPACPI_LED_MICMUTE] = {
8491 .name = "MMTS",
8492 .on_value = 2,
8493 .off_value = 0,
8494 },
8495};
8496
8497static int mute_led_on_off(struct tp_led_table *t, bool state)
8498{
8499 acpi_handle temp;
8500 int output;
8501
8502 if (!ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp))) {
8503 pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
8504 return -EIO;
8505 }
8506
8507 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
8508 state ? t->on_value : t->off_value))
8509 return -EIO;
8510
8511 t->state = state;
8512 return state;
8513}
8514
8515int tpacpi_led_set(int whichled, bool on)
8516{
8517 struct tp_led_table *t;
8518
8519 if (whichled < 0 || whichled >= TPACPI_LED_MAX)
8520 return -EINVAL;
8521
8522 t = &led_tables[whichled];
8523 if (t->state < 0 || t->state == on)
8524 return t->state;
8525 return mute_led_on_off(t, on);
8526}
8527EXPORT_SYMBOL_GPL(tpacpi_led_set);
8528
8529static int mute_led_init(struct ibm_init_struct *iibm)
8530{
8531 acpi_handle temp;
8532 int i;
8533
8534 for (i = 0; i < TPACPI_LED_MAX; i++) {
8535 struct tp_led_table *t = &led_tables[i];
8536 if (ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp)))
8537 mute_led_on_off(t, false);
8538 else
8539 t->state = -ENODEV;
8540 }
8541 return 0;
8542}
8543
8544static void mute_led_exit(void)
8545{
8546 int i;
8547
8548 for (i = 0; i < TPACPI_LED_MAX; i++)
8549 tpacpi_led_set(i, false);
8550}
8551
Takashi Iwai119f4492014-02-12 16:32:45 +01008552static void mute_led_resume(void)
8553{
8554 int i;
8555
8556 for (i = 0; i < TPACPI_LED_MAX; i++) {
8557 struct tp_led_table *t = &led_tables[i];
8558 if (t->state >= 0)
8559 mute_led_on_off(t, t->state);
8560 }
8561}
8562
David Henningsson420f9732013-10-16 23:10:31 +02008563static struct ibm_struct mute_led_driver_data = {
8564 .name = "mute_led",
8565 .exit = mute_led_exit,
Takashi Iwai119f4492014-02-12 16:32:45 +01008566 .resume = mute_led_resume,
David Henningsson420f9732013-10-16 23:10:31 +02008567};
8568
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008569/****************************************************************************
8570 ****************************************************************************
8571 *
8572 * Infrastructure
8573 *
8574 ****************************************************************************
8575 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008576
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008577/*
8578 * HKEY event callout for other subdrivers go here
8579 * (yes, it is ugly, but it is quick, safe, and gets the job done
8580 */
8581static void tpacpi_driver_event(const unsigned int hkey_event)
8582{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00008583 if (ibm_backlight_device) {
8584 switch (hkey_event) {
8585 case TP_HKEY_EV_BRGHT_UP:
8586 case TP_HKEY_EV_BRGHT_DOWN:
8587 tpacpi_brightness_notify_change();
8588 }
8589 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008590 if (alsa_card) {
8591 switch (hkey_event) {
8592 case TP_HKEY_EV_VOL_UP:
8593 case TP_HKEY_EV_VOL_DOWN:
8594 case TP_HKEY_EV_VOL_MUTE:
8595 volume_alsa_notify_change();
8596 }
8597 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008598}
8599
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008600static void hotkey_driver_event(const unsigned int scancode)
8601{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03008602 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008603}
8604
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008605/* sysfs name ---------------------------------------------------------- */
8606static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
8607 struct device_attribute *attr,
8608 char *buf)
8609{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008610 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008611}
8612
8613static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
8614 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
8615
8616/* --------------------------------------------------------------------- */
8617
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008618/* /proc support */
Henrique de Moraes Holschuh94954cc62007-07-18 23:45:27 -03008619static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008620
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008621/*
8622 * Module and infrastructure proble, init and exit handling
8623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008624
Rusty Russell90ab5ee2012-01-13 09:32:20 +10308625static bool force_load;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008626
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008627#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008628static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008629{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008630 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008631
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008632 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008633}
8634#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8635
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008636static void ibm_exit(struct ibm_struct *ibm)
8637{
8638 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
8639
8640 list_del_init(&ibm->all_drivers);
8641
8642 if (ibm->flags.acpi_notify_installed) {
8643 dbg_printk(TPACPI_DBG_EXIT,
8644 "%s: acpi_remove_notify_handler\n", ibm->name);
8645 BUG_ON(!ibm->acpi);
8646 acpi_remove_notify_handler(*ibm->acpi->handle,
8647 ibm->acpi->type,
8648 dispatch_acpi_notify);
8649 ibm->flags.acpi_notify_installed = 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008650 }
8651
8652 if (ibm->flags.proc_created) {
8653 dbg_printk(TPACPI_DBG_EXIT,
8654 "%s: remove_proc_entry\n", ibm->name);
8655 remove_proc_entry(ibm->name, proc_dir);
8656 ibm->flags.proc_created = 0;
8657 }
8658
8659 if (ibm->flags.acpi_driver_registered) {
8660 dbg_printk(TPACPI_DBG_EXIT,
8661 "%s: acpi_bus_unregister_driver\n", ibm->name);
8662 BUG_ON(!ibm->acpi);
8663 acpi_bus_unregister_driver(ibm->acpi->driver);
8664 kfree(ibm->acpi->driver);
8665 ibm->acpi->driver = NULL;
8666 ibm->flags.acpi_driver_registered = 0;
8667 }
8668
8669 if (ibm->flags.init_called && ibm->exit) {
8670 ibm->exit();
8671 ibm->flags.init_called = 0;
8672 }
8673
8674 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
8675}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008676
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008677static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008678{
8679 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008680 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008681 struct proc_dir_entry *entry;
8682
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008683 BUG_ON(ibm == NULL);
8684
8685 INIT_LIST_HEAD(&ibm->all_drivers);
8686
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008687 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008688 return 0;
8689
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008690 dbg_printk(TPACPI_DBG_INIT,
8691 "probing for %s\n", ibm->name);
8692
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008693 if (iibm->init) {
8694 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008695 if (ret > 0)
8696 return 0; /* probe failed */
8697 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008698 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008699
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008700 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008701 }
8702
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008703 if (ibm->acpi) {
8704 if (ibm->acpi->hid) {
8705 ret = register_tpacpi_subdriver(ibm);
8706 if (ret)
8707 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008708 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008709
8710 if (ibm->acpi->notify) {
8711 ret = setup_acpi_notify(ibm);
8712 if (ret == -ENODEV) {
Joe Perches0978e012011-04-04 10:06:25 -07008713 pr_notice("disabling subdriver %s\n",
8714 ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008715 ret = 0;
8716 goto err_out;
8717 }
8718 if (ret < 0)
8719 goto err_out;
8720 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008721 }
8722
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008723 dbg_printk(TPACPI_DBG_INIT,
8724 "%s installed\n", ibm->name);
8725
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008726 if (ibm->read) {
Al Virod161a132011-07-24 03:36:29 -04008727 umode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008728
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008729 if (!mode)
8730 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008731 if (ibm->write)
8732 mode |= S_IWUSR;
8733 entry = proc_create_data(ibm->name, mode, proc_dir,
8734 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008735 if (!entry) {
Joe Perches0978e012011-04-04 10:06:25 -07008736 pr_err("unable to create proc entry %s\n", ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008737 ret = -ENODEV;
8738 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008739 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008740 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008743 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
8744
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008746
8747err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008748 dbg_printk(TPACPI_DBG_INIT,
8749 "%s: at error exit path with result %d\n",
8750 ibm->name, ret);
8751
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008752 ibm_exit(ibm);
8753 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008754}
8755
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008756/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008758static bool __pure __init tpacpi_is_fw_digit(const char c)
8759{
8760 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
8761}
8762
8763/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8764static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
8765 const char t)
8766{
8767 return s && strlen(s) >= 8 &&
8768 tpacpi_is_fw_digit(s[0]) &&
8769 tpacpi_is_fw_digit(s[1]) &&
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05008770 s[2] == t &&
8771 (s[3] == 'T' || s[3] == 'N') &&
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008772 tpacpi_is_fw_digit(s[4]) &&
Keith Packardb569ab32011-03-31 15:22:33 -07008773 tpacpi_is_fw_digit(s[5]);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008774}
8775
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008776/* returns 0 - probe ok, or < 0 - probe error.
8777 * Probe ok doesn't mean thinkpad found.
8778 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8779static int __must_check __init get_thinkpad_model_data(
8780 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008781{
Jeff Garzik18552562007-10-03 15:15:40 -04008782 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008783 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008784 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008785
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008786 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008787 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008788
8789 memset(tp, 0, sizeof(*tp));
8790
8791 if (dmi_name_in_vendors("IBM"))
8792 tp->vendor = PCI_VENDOR_ID_IBM;
8793 else if (dmi_name_in_vendors("LENOVO"))
8794 tp->vendor = PCI_VENDOR_ID_LENOVO;
8795 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008796 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008797
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008798 s = dmi_get_system_info(DMI_BIOS_VERSION);
8799 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
8800 if (s && !tp->bios_version_str)
8801 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008802
8803 /* Really ancient ThinkPad 240X will fail this, which is fine */
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05008804 if (!(tpacpi_is_valid_fw_id(tp->bios_version_str, 'E') ||
8805 tpacpi_is_valid_fw_id(tp->bios_version_str, 'C')))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008806 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008807
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008808 tp->bios_model = tp->bios_version_str[0]
8809 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008810 tp->bios_release = (tp->bios_version_str[4] << 8)
8811 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008812
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008813 /*
8814 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8815 * X32 or newer, all Z series; Some models must have an
8816 * up-to-date BIOS or they will not be detected.
8817 *
8818 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8819 */
8820 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008821 if (sscanf(dev->name,
8822 "IBM ThinkPad Embedded Controller -[%17c",
8823 ec_fw_string) == 1) {
8824 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
8825 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008826
8827 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008828 if (!tp->ec_version_str)
8829 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008830
8831 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
8832 tp->ec_model = ec_fw_string[0]
8833 | (ec_fw_string[1] << 8);
8834 tp->ec_release = (ec_fw_string[4] << 8)
8835 | ec_fw_string[5];
8836 } else {
Joe Perches0978e012011-04-04 10:06:25 -07008837 pr_notice("ThinkPad firmware release %s "
8838 "doesn't match the known patterns\n",
8839 ec_fw_string);
8840 pr_notice("please report this to %s\n",
8841 TPACPI_MAIL);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008842 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008843 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008844 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008845 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008846
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008847 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Manoj Iyer23b05312012-03-09 17:32:24 -06008848 if (s && !(strnicmp(s, "ThinkPad", 8) && strnicmp(s, "Lenovo", 6))) {
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008849 tp->model_str = kstrdup(s, GFP_KERNEL);
8850 if (!tp->model_str)
8851 return -ENOMEM;
Manoj Iyera4f46bb2012-08-06 18:15:37 -05008852 } else {
8853 s = dmi_get_system_info(DMI_BIOS_VENDOR);
8854 if (s && !(strnicmp(s, "Lenovo", 6))) {
8855 tp->model_str = kstrdup(s, GFP_KERNEL);
8856 if (!tp->model_str)
8857 return -ENOMEM;
8858 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008859 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008860
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008861 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8862 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8863 if (s && !tp->nummodel_str)
8864 return -ENOMEM;
8865
8866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867}
8868
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008869static int __init probe_for_thinkpad(void)
8870{
8871 int is_thinkpad;
8872
8873 if (acpi_disabled)
8874 return -ENODEV;
8875
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008876 /* It would be dangerous to run the driver in this case */
8877 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8878 return -ENODEV;
8879
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008880 /*
8881 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008882 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008883 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008884 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8885 (thinkpad_id.ec_model != 0) ||
8886 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008887
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -03008888 /* The EC handler is required */
8889 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008890 if (!ec_handle) {
8891 if (is_thinkpad)
Joe Perches0978e012011-04-04 10:06:25 -07008892 pr_err("Not yet supported ThinkPad detected!\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008893 return -ENODEV;
8894 }
8895
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008896 if (!is_thinkpad && !force_load)
8897 return -ENODEV;
8898
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008899 return 0;
8900}
8901
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008902static void __init thinkpad_acpi_init_banner(void)
8903{
Joe Perches0978e012011-04-04 10:06:25 -07008904 pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
8905 pr_info("%s\n", TPACPI_URL);
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008906
Joe Perches0978e012011-04-04 10:06:25 -07008907 pr_info("ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008908 (thinkpad_id.bios_version_str) ?
8909 thinkpad_id.bios_version_str : "unknown",
8910 (thinkpad_id.ec_version_str) ?
8911 thinkpad_id.ec_version_str : "unknown");
8912
8913 BUG_ON(!thinkpad_id.vendor);
8914
8915 if (thinkpad_id.model_str)
Joe Perches0978e012011-04-04 10:06:25 -07008916 pr_info("%s %s, model %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008917 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
8918 "IBM" : ((thinkpad_id.vendor ==
8919 PCI_VENDOR_ID_LENOVO) ?
8920 "Lenovo" : "Unknown vendor"),
8921 thinkpad_id.model_str,
8922 (thinkpad_id.nummodel_str) ?
8923 thinkpad_id.nummodel_str : "unknown");
8924}
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008925
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008926/* Module init, exit, parameters */
8927
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008928static struct ibm_init_struct ibms_init[] __initdata = {
8929 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008930 .data = &thinkpad_acpi_driver_data,
8931 },
8932 {
8933 .init = hotkey_init,
8934 .data = &hotkey_driver_data,
8935 },
8936 {
8937 .init = bluetooth_init,
8938 .data = &bluetooth_driver_data,
8939 },
8940 {
8941 .init = wan_init,
8942 .data = &wan_driver_data,
8943 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008944 {
8945 .init = uwb_init,
8946 .data = &uwb_driver_data,
8947 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008948#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008949 {
8950 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008951 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008952 .data = &video_driver_data,
8953 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008954#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008955 {
8956 .init = light_init,
8957 .data = &light_driver_data,
8958 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008959 {
8960 .init = cmos_init,
8961 .data = &cmos_driver_data,
8962 },
8963 {
8964 .init = led_init,
8965 .data = &led_driver_data,
8966 },
8967 {
8968 .init = beep_init,
8969 .data = &beep_driver_data,
8970 },
8971 {
8972 .init = thermal_init,
8973 .data = &thermal_driver_data,
8974 },
8975 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008976 .init = brightness_init,
8977 .data = &brightness_driver_data,
8978 },
8979 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008980 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008981 .data = &volume_driver_data,
8982 },
8983 {
8984 .init = fan_init,
8985 .data = &fan_driver_data,
8986 },
David Henningsson420f9732013-10-16 23:10:31 +02008987 {
8988 .init = mute_led_init,
8989 .data = &mute_led_driver_data,
8990 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008991};
8992
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008993static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8994{
8995 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008996 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008997
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008998 if (!kp || !kp->name || !val)
8999 return -EINVAL;
9000
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009001 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9002 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02009003 WARN_ON(ibm == NULL);
9004
9005 if (!ibm || !ibm->name)
9006 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009007
9008 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
9009 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009010 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009011 strcpy(ibms_init[i].param, val);
9012 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009013 return 0;
9014 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009015 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009016
9017 return -EINVAL;
9018}
9019
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009020module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009021MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009022 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009023
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03009024module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009025MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03009026
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009027module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009028MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009029 "Attempts to load the driver even on a "
9030 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03009031
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009032module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009033MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009034 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03009035
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009036module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009037MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009038 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00009039 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03009040
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009041module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009042MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009043 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02009044
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02009045#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02009046module_param_named(volume_mode, volume_mode, uint, 0444);
9047MODULE_PARM_DESC(volume_mode,
9048 "Selects volume control strategy: "
9049 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
9050
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02009051module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
9052MODULE_PARM_DESC(volume_capabilities,
9053 "Selects the mixer capabilites: "
9054 "0=auto, 1=volume and mute, 2=mute only");
9055
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02009056module_param_named(volume_control, volume_control_allowed, bool, 0444);
9057MODULE_PARM_DESC(volume_control,
9058 "Enables software override for the console audio "
9059 "control when true");
9060
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009061/* ALSA module API parameters */
9062module_param_named(index, alsa_index, int, 0444);
9063MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
9064module_param_named(id, alsa_id, charp, 0444);
9065MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
9066module_param_named(enable, alsa_enable, bool, 0444);
9067MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02009068#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02009069
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009070#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009071 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02009072 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009073 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009074
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009075TPACPI_PARAM(hotkey);
9076TPACPI_PARAM(bluetooth);
9077TPACPI_PARAM(video);
9078TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009079TPACPI_PARAM(cmos);
9080TPACPI_PARAM(led);
9081TPACPI_PARAM(beep);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009082TPACPI_PARAM(brightness);
9083TPACPI_PARAM(volume);
9084TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03009085
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009086#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009087module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009088MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
9089module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
9090MODULE_PARM_DESC(wlsw_state,
9091 "Initial state of the emulated WLSW switch");
9092
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009093module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009094MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
9095module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
9096MODULE_PARM_DESC(bluetooth_state,
9097 "Initial state of the emulated bluetooth switch");
9098
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009099module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009100MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
9101module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
9102MODULE_PARM_DESC(wwan_state,
9103 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02009104
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00009105module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02009106MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
9107module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
9108MODULE_PARM_DESC(uwb_state,
9109 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02009110#endif
9111
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009112static void thinkpad_acpi_module_exit(void)
9113{
9114 struct ibm_struct *ibm, *itmp;
9115
9116 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
9117
9118 list_for_each_entry_safe_reverse(ibm, itmp,
9119 &tpacpi_all_drivers,
9120 all_drivers) {
9121 ibm_exit(ibm);
9122 }
9123
9124 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
9125
9126 if (tpacpi_inputdev) {
9127 if (tp_features.input_device_registered)
9128 input_unregister_device(tpacpi_inputdev);
9129 else
9130 input_free_device(tpacpi_inputdev);
Li Dongyang00d39592012-07-25 10:45:09 +10009131 kfree(hotkey_keycode_map);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009132 }
9133
9134 if (tpacpi_hwmon)
9135 hwmon_device_unregister(tpacpi_hwmon);
9136
9137 if (tp_features.sensors_pdev_attrs_registered)
9138 device_remove_file(&tpacpi_sensors_pdev->dev,
9139 &dev_attr_thinkpad_acpi_pdev_name);
9140 if (tpacpi_sensors_pdev)
9141 platform_device_unregister(tpacpi_sensors_pdev);
9142 if (tpacpi_pdev)
9143 platform_device_unregister(tpacpi_pdev);
9144
9145 if (tp_features.sensors_pdrv_attrs_registered)
9146 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
9147 if (tp_features.platform_drv_attrs_registered)
9148 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
9149
9150 if (tp_features.sensors_pdrv_registered)
9151 platform_driver_unregister(&tpacpi_hwmon_pdriver);
9152
9153 if (tp_features.platform_drv_registered)
9154 platform_driver_unregister(&tpacpi_pdriver);
9155
9156 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009157 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009158
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009159 if (tpacpi_wq)
9160 destroy_workqueue(tpacpi_wq);
9161
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009162 kfree(thinkpad_id.bios_version_str);
9163 kfree(thinkpad_id.ec_version_str);
9164 kfree(thinkpad_id.model_str);
Li Dongyangd2be15b2012-07-25 10:45:08 +10009165 kfree(thinkpad_id.nummodel_str);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009166}
9167
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009168
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009169static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009170{
9171 int ret, i;
9172
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03009173 tpacpi_lifecycle = TPACPI_LIFE_INIT;
9174
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009175 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009176
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009177 ret = get_thinkpad_model_data(&thinkpad_id);
9178 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009179 pr_err("unable to get DMI data: %d\n", ret);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009180 thinkpad_acpi_module_exit();
9181 return ret;
9182 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009183 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009184 if (ret) {
9185 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009186 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009188
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009189 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009190
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009191 thinkpad_acpi_init_banner();
9192 tpacpi_check_outdated_fw();
9193
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009194 TPACPI_ACPIHANDLE_INIT(ecrd);
9195 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009196
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009197 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
9198 if (!tpacpi_wq) {
9199 thinkpad_acpi_module_exit();
9200 return -ENOMEM;
9201 }
9202
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009203 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009204 if (!proc_dir) {
Joe Perches0978e012011-04-04 10:06:25 -07009205 pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009206 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009207 return -ENODEV;
9208 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009209
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009210 ret = platform_driver_register(&tpacpi_pdriver);
9211 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009212 pr_err("unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009213 thinkpad_acpi_module_exit();
9214 return ret;
9215 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009216 tp_features.platform_drv_registered = 1;
9217
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009218 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9219 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009220 pr_err("unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009221 thinkpad_acpi_module_exit();
9222 return ret;
9223 }
9224 tp_features.sensors_pdrv_registered = 1;
9225
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009226 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009227 if (!ret) {
9228 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009229 ret = tpacpi_create_driver_attributes(
9230 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009231 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009232 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009233 pr_err("unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009234 thinkpad_acpi_module_exit();
9235 return ret;
9236 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009237 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009238
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009239
9240 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009241 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009242 NULL, 0);
9243 if (IS_ERR(tpacpi_pdev)) {
9244 ret = PTR_ERR(tpacpi_pdev);
9245 tpacpi_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009246 pr_err("unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009247 thinkpad_acpi_module_exit();
9248 return ret;
9249 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009250 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009251 TPACPI_HWMON_DRVR_NAME,
9252 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009253 if (IS_ERR(tpacpi_sensors_pdev)) {
9254 ret = PTR_ERR(tpacpi_sensors_pdev);
9255 tpacpi_sensors_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009256 pr_err("unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009257 thinkpad_acpi_module_exit();
9258 return ret;
9259 }
9260 ret = device_create_file(&tpacpi_sensors_pdev->dev,
9261 &dev_attr_thinkpad_acpi_pdev_name);
9262 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009263 pr_err("unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009264 thinkpad_acpi_module_exit();
9265 return ret;
9266 }
9267 tp_features.sensors_pdev_attrs_registered = 1;
9268 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009269 if (IS_ERR(tpacpi_hwmon)) {
9270 ret = PTR_ERR(tpacpi_hwmon);
9271 tpacpi_hwmon = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009272 pr_err("unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009273 thinkpad_acpi_module_exit();
9274 return ret;
9275 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009276 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009277 tpacpi_inputdev = input_allocate_device();
9278 if (!tpacpi_inputdev) {
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009279 thinkpad_acpi_module_exit();
9280 return -ENOMEM;
9281 } else {
9282 /* Prepare input device, but don't register */
9283 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009284 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009285 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009286 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009287 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9288 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009289 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009290 }
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03009291
9292 /* Init subdriver dependencies */
9293 tpacpi_detect_brightness_capabilities();
9294
9295 /* Init subdrivers */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009296 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9297 ret = ibm_init(&ibms_init[i]);
9298 if (ret >= 0 && *ibms_init[i].param)
9299 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009300 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009301 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009302 return ret;
9303 }
9304 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009305
9306 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9307
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009308 ret = input_register_device(tpacpi_inputdev);
9309 if (ret < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07009310 pr_err("unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009311 thinkpad_acpi_module_exit();
9312 return ret;
9313 } else {
9314 tp_features.input_device_registered = 1;
9315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009316
9317 return 0;
9318}
9319
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009320MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9321
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009322/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009323 * This will autoload the driver in almost every ThinkPad
9324 * in widespread use.
9325 *
9326 * Only _VERY_ old models, like the 240, 240x and 570 lack
9327 * the HKEY event interface.
9328 */
9329MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9330
9331/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009332 * DMI matching for module autoloading
9333 *
9334 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9335 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9336 *
9337 * Only models listed in thinkwiki will be supported, so add yours
9338 * if it is not there yet.
9339 */
9340#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009341 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009342
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009343/* Ancient thinkpad BIOSes have to be identified by
9344 * BIOS type or model number, and there are far less
9345 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009346IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009347
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009348MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9349MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009350MODULE_DESCRIPTION(TPACPI_DESC);
9351MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009352MODULE_LICENSE("GPL");
9353
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009354module_init(thinkpad_acpi_module_init);
9355module_exit(thinkpad_acpi_module_exit);