blob: 9d7e34b0109c550b50403ae15fe1978d49ef8851 [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 Holschuhbee4cd92009-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 Holschuh94954cc2007-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 Holschuhef07a5a2010-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 Holschuhef07a5a2010-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 Holschuhef07a5a2010-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 Holschuhef07a5a2010-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 Holschuh94954cc2007-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. Wysocki3567a4e2012-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. Wysocki3567a4e2012-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 Holschuhd64c81c2008-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 Holschuhd64c81c2008-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 Holschuh94954cc2007-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 Holschuhd64c81c2008-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
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003440static bool hotkey_notify_hotkey(const u32 hkey,
3441 bool *send_acpi_ev,
3442 bool *ignore_acpi_ev)
3443{
3444 /* 0x1000-0x1FFF: key presses */
3445 unsigned int scancode = hkey & 0xfff;
3446 *send_acpi_ev = true;
3447 *ignore_acpi_ev = false;
3448
Henrique de Moraes Holschuh34a656d22010-08-09 23:48:20 -03003449 /* HKEY event 0x1001 is scancode 0x00 */
3450 if (scancode > 0 && scancode <= TPACPI_HOTKEY_MAP_LEN) {
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003451 scancode--;
3452 if (!(hotkey_source_mask & (1 << scancode))) {
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003453 tpacpi_input_send_key_masked(scancode);
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003454 *send_acpi_ev = false;
3455 } else {
3456 *ignore_acpi_ev = true;
3457 }
3458 return true;
3459 }
3460 return false;
3461}
3462
3463static bool hotkey_notify_wakeup(const u32 hkey,
3464 bool *send_acpi_ev,
3465 bool *ignore_acpi_ev)
3466{
3467 /* 0x2000-0x2FFF: Wakeup reason */
3468 *send_acpi_ev = true;
3469 *ignore_acpi_ev = false;
3470
3471 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003472 case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
3473 case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003474 hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
3475 *ignore_acpi_ev = true;
3476 break;
3477
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003478 case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
3479 case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003480 hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
3481 *ignore_acpi_ev = true;
3482 break;
3483
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003484 case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
3485 case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
Joe Perches0978e012011-04-04 10:06:25 -07003486 pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003487 /* how to auto-heal: */
3488 /* 2313: woke up from S3, go to S4/S5 */
3489 /* 2413: woke up from S4, go to S5 */
3490 break;
3491
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003492 default:
3493 return false;
3494 }
3495
3496 if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
Joe Perches0978e012011-04-04 10:06:25 -07003497 pr_info("woke up due to a hot-unplug request...\n");
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003498 hotkey_wakeup_reason_notify_change();
3499 }
3500 return true;
3501}
3502
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003503static bool hotkey_notify_dockevent(const u32 hkey,
3504 bool *send_acpi_ev,
3505 bool *ignore_acpi_ev)
3506{
3507 /* 0x4000-0x4FFF: dock-related events */
3508 *send_acpi_ev = true;
3509 *ignore_acpi_ev = false;
3510
3511 switch (hkey) {
3512 case TP_HKEY_EV_UNDOCK_ACK:
3513 /* ACPI undock operation completed after wakeup */
3514 hotkey_autosleep_ack = 1;
3515 pr_info("undocked\n");
3516 hotkey_wakeup_hotunplug_complete_notify_change();
3517 return true;
3518
3519 case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
3520 pr_info("docked into hotplug port replicator\n");
3521 return true;
3522 case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
3523 pr_info("undocked from hotplug port replicator\n");
3524 return true;
3525
3526 default:
3527 return false;
3528 }
3529}
3530
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003531static bool hotkey_notify_usrevent(const u32 hkey,
3532 bool *send_acpi_ev,
3533 bool *ignore_acpi_ev)
3534{
3535 /* 0x5000-0x5FFF: human interface helpers */
3536 *send_acpi_ev = true;
3537 *ignore_acpi_ev = false;
3538
3539 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003540 case TP_HKEY_EV_PEN_INSERTED: /* X61t: tablet pen inserted into bay */
3541 case TP_HKEY_EV_PEN_REMOVED: /* X61t: tablet pen removed from bay */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003542 return true;
3543
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003544 case TP_HKEY_EV_TABLET_TABLET: /* X41t-X61t: tablet mode */
3545 case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003546 tpacpi_input_send_tabletsw();
3547 hotkey_tablet_mode_notify_change();
3548 *send_acpi_ev = false;
3549 return true;
3550
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003551 case TP_HKEY_EV_LID_CLOSE: /* Lid closed */
3552 case TP_HKEY_EV_LID_OPEN: /* Lid opened */
3553 case TP_HKEY_EV_BRGHT_CHANGED: /* brightness changed */
Henrique de Moraes Holschuh176dd982009-09-20 14:09:24 -03003554 /* do not propagate these events */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003555 *ignore_acpi_ev = true;
3556 return true;
3557
3558 default:
3559 return false;
3560 }
3561}
3562
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003563static void thermal_dump_all_sensors(void);
3564
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003565static bool hotkey_notify_6xxx(const u32 hkey,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003566 bool *send_acpi_ev,
3567 bool *ignore_acpi_ev)
3568{
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003569 bool known = true;
3570
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003571 /* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003572 *send_acpi_ev = true;
3573 *ignore_acpi_ev = false;
3574
3575 switch (hkey) {
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003576 case TP_HKEY_EV_THM_TABLE_CHANGED:
Joe Perches0978e012011-04-04 10:06:25 -07003577 pr_info("EC reports that Thermal Table has changed\n");
Henrique de Moraes Holschuh54926ce2009-01-11 03:01:09 -02003578 /* recommended action: do nothing, we don't have
3579 * Lenovo ATM information */
3580 return true;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003581 case TP_HKEY_EV_ALARM_BAT_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003582 pr_crit("THERMAL ALARM: battery is too hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003583 /* recommended action: warn user through gui */
3584 break;
3585 case TP_HKEY_EV_ALARM_BAT_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003586 pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003587 /* recommended action: immediate sleep/hibernate */
3588 break;
3589 case TP_HKEY_EV_ALARM_SENSOR_HOT:
Joe Perches0978e012011-04-04 10:06:25 -07003590 pr_crit("THERMAL ALARM: "
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003591 "a sensor reports something is too hot!\n");
3592 /* recommended action: warn user through gui, that */
3593 /* some internal component is too hot */
3594 break;
3595 case TP_HKEY_EV_ALARM_SENSOR_XHOT:
Joe Perches0978e012011-04-04 10:06:25 -07003596 pr_alert("THERMAL EMERGENCY: "
3597 "a sensor reports something is extremely hot!\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003598 /* recommended action: immediate sleep/hibernate */
3599 break;
Richard Hartmann6f62bc32012-12-29 22:51:49 +01003600 case TP_HKEY_EV_AC_CHANGED:
3601 /* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
3602 * AC status changed; can be triggered by plugging or
3603 * unplugging AC adapter, docking or undocking. */
3604
3605 /* fallthrough */
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003606
3607 case TP_HKEY_EV_KEY_NUMLOCK:
3608 case TP_HKEY_EV_KEY_FN:
3609 /* key press events, we just ignore them as long as the EC
3610 * is still reporting them in the normal keyboard stream */
3611 *send_acpi_ev = false;
3612 *ignore_acpi_ev = true;
3613 return true;
3614
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003615 default:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003616 pr_warn("unknown possible thermal alarm or keyboard event received\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003617 known = false;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003618 }
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00003619
3620 thermal_dump_all_sensors();
3621
3622 return known;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003623}
3624
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003625static void hotkey_notify(struct ibm_struct *ibm, u32 event)
3626{
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003627 u32 hkey;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003628 bool send_acpi_ev;
3629 bool ignore_acpi_ev;
3630 bool known_ev;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003631
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003632 if (event != 0x80) {
Joe Perches0978e012011-04-04 10:06:25 -07003633 pr_err("unknown HKEY notification event %d\n", event);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003634 /* forward it to userspace, maybe it knows how to handle it */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003635 acpi_bus_generate_netlink_event(
3636 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003637 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003638 event, 0);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003639 return;
3640 }
3641
3642 while (1) {
3643 if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
Joe Perches0978e012011-04-04 10:06:25 -07003644 pr_err("failed to retrieve HKEY event\n");
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003645 return;
3646 }
3647
3648 if (hkey == 0) {
3649 /* queue empty */
3650 return;
3651 }
3652
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003653 send_acpi_ev = true;
3654 ignore_acpi_ev = false;
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003655
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003656 switch (hkey >> 12) {
3657 case 1:
3658 /* 0x1000-0x1FFF: key presses */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003659 known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
3660 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003661 break;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003662 case 2:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003663 /* 0x2000-0x2FFF: Wakeup reason */
3664 known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
3665 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003666 break;
3667 case 3:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003668 /* 0x3000-0x3FFF: bay-related wakeups */
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003669 switch (hkey) {
3670 case TP_HKEY_EV_BAYEJ_ACK:
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003671 hotkey_autosleep_ack = 1;
Joe Perches0978e012011-04-04 10:06:25 -07003672 pr_info("bay ejected\n");
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003673 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003674 known_ev = true;
Henrique de Moraes Holschuhbf8b29c2010-02-25 21:28:56 -03003675 break;
3676 case TP_HKEY_EV_OPTDRV_EJ:
3677 /* FIXME: kick libata if SATA link offline */
3678 known_ev = true;
3679 break;
3680 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003681 known_ev = false;
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003682 }
3683 break;
3684 case 4:
Henrique de Moraes Holschuha50245a2011-06-05 16:22:35 -03003685 /* 0x4000-0x4FFF: dock-related events */
3686 known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev,
3687 &ignore_acpi_ev);
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003688 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003689 case 5:
Henrique de Moraes Holschuhd1edb2b2008-01-08 13:02:53 -02003690 /* 0x5000-0x5FFF: human interface helpers */
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003691 known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
3692 &ignore_acpi_ev);
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003693 break;
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003694 case 6:
Henrique de Moraes Holschuh2d43f672011-06-05 16:22:34 -03003695 /* 0x6000-0x6FFF: thermal alarms/notices and
3696 * keyboard events */
3697 known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev,
Henrique de Moraes Holschuh106b4e62009-01-11 03:01:06 -02003698 &ignore_acpi_ev);
3699 break;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003700 case 7:
3701 /* 0x7000-0x7FFF: misc */
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03003702 if (tp_features.hotkey_wlsw &&
3703 hkey == TP_HKEY_EV_RFKILL_CHANGED) {
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003704 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003705 send_acpi_ev = 0;
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003706 known_ev = true;
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003707 break;
3708 }
3709 /* fallthrough to default */
3710 default:
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003711 known_ev = false;
Henrique de Moraes Holschuh3b64b512008-01-08 13:02:51 -02003712 }
Henrique de Moraes Holschuh3827e7a2009-01-11 03:01:05 -02003713 if (!known_ev) {
Joe Perches0978e012011-04-04 10:06:25 -07003714 pr_notice("unhandled HKEY event 0x%04x\n", hkey);
3715 pr_notice("please report the conditions when this "
3716 "event happened to %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh6a38abb2007-07-18 23:45:35 -03003717 }
Henrique de Moraes Holschuhff80f132007-09-04 11:13:15 -03003718
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003719 /* netlink events */
Henrique de Moraes Holschuh3e5ce912007-09-23 11:39:05 -03003720 if (!ignore_acpi_ev && send_acpi_ev) {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003721 acpi_bus_generate_netlink_event(
3722 ibm->acpi->device->pnp.device_class,
Kay Sieverse0b36fc2009-01-11 03:00:59 -02003723 dev_name(&ibm->acpi->device->dev),
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02003724 event, hkey);
Henrique de Moraes Holschuh3eea1232007-09-23 11:39:04 -03003725 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003726 }
3727}
3728
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02003729static void hotkey_suspend(void)
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003730{
3731 /* Do these on suspend, we get the events on early resume! */
3732 hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
3733 hotkey_autosleep_ack = 0;
3734}
3735
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003736static void hotkey_resume(void)
3737{
Henrique de Moraes Holschuhd64c81c2008-10-18 14:23:55 -03003738 tpacpi_disable_brightness_delay();
3739
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003740 if (hotkey_status_set(true) < 0 ||
3741 hotkey_mask_set(hotkey_acpi_mask) < 0)
Joe Perches0978e012011-04-04 10:06:25 -07003742 pr_err("error while attempting to reset the event "
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003743 "firmware interface\n");
3744
Henrique de Moraes Holschuh733e27c2008-07-21 09:15:49 -03003745 tpacpi_send_radiosw_update();
Henrique de Moraes Holschuh6c231bd2008-02-16 02:17:58 -02003746 hotkey_tablet_mode_notify_change();
Henrique de Moraes Holschuh50ebec02008-01-08 13:02:55 -02003747 hotkey_wakeup_reason_notify_change();
3748 hotkey_wakeup_hotunplug_complete_notify_change();
Henrique de Moraes Holschuhdb25f162009-09-12 15:22:14 -03003749 hotkey_poll_setup_safe(false);
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003750}
3751
Henrique de Moraes Holschuha0416422007-04-27 22:00:16 -03003752/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003753static int hotkey_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003755 int res, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003757 if (!tp_features.hotkey) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003758 seq_printf(m, "status:\t\tnot supported\n");
3759 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003760 }
3761
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003762 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003763 return -ERESTARTSYS;
Henrique de Moraes Holschuhb2c985e2008-01-08 13:02:39 -02003764 res = hotkey_status_get(&status);
3765 if (!res)
3766 res = hotkey_mask_get();
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003767 mutex_unlock(&hotkey_mutex);
Henrique de Moraes Holschuhb86c4722007-04-21 11:08:39 -03003768 if (res)
3769 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003771 seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003772 if (hotkey_all_mask) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003773 seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
3774 seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003776 seq_printf(m, "mask:\t\tnot supported\n");
3777 seq_printf(m, "commands:\tenable, disable, reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 }
3779
Alexey Dobriyan887965e2009-12-15 21:51:12 -02003780 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003783static void hotkey_enabledisable_warn(bool enable)
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003784{
3785 tpacpi_log_usertask("procfs hotkey enable/disable");
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003786 if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
Joe Perches0978e012011-04-04 10:06:25 -07003787 pr_fmt("hotkey enable/disable functionality has been "
3788 "removed from the driver. "
3789 "Hotkeys are always enabled.\n")))
3790 pr_err("Please remove the hotkey=enable module "
3791 "parameter, it is deprecated. "
3792 "Hotkeys are always enabled.\n");
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003793}
3794
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003795static int hotkey_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796{
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003797 int res;
Henrique de Moraes Holschuhae92bd12007-07-18 23:45:29 -03003798 u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03003801 if (!tp_features.hotkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 return -ENODEV;
3803
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02003804 if (mutex_lock_killable(&hotkey_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02003805 return -ERESTARTSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003806
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003807 mask = hotkey_user_mask;
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003808
3809 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 while ((cmd = next_cmd(&buf))) {
3811 if (strlencmp(cmd, "enable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003812 hotkey_enabledisable_warn(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 } else if (strlencmp(cmd, "disable") == 0) {
Henrique de Moraes Holschuh406e9882009-04-14 02:44:10 +00003814 hotkey_enabledisable_warn(0);
Henrique de Moraes Holschuh2586d562009-04-04 04:25:48 +00003815 res = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 } else if (strlencmp(cmd, "reset") == 0) {
Henrique de Moraes Holschuh20c9aa42009-09-12 15:22:16 -03003817 mask = (hotkey_all_mask | hotkey_source_mask)
3818 & ~hotkey_reserved_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 } else if (sscanf(cmd, "0x%x", &mask) == 1) {
3820 /* mask set */
3821 } else if (sscanf(cmd, "%x", &mask) == 1) {
3822 /* mask set */
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003823 } else {
3824 res = -EINVAL;
3825 goto errexit;
3826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 }
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003828
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003829 if (!res) {
Henrique de Moraes Holschuh56e2c202009-04-04 04:25:51 +00003830 tpacpi_disclose_usertask("procfs hotkey",
3831 "set mask to 0x%08x\n", mask);
Henrique de Moraes Holschuh0d922e32009-09-20 14:09:25 -03003832 res = hotkey_user_mask_set(mask);
3833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03003835errexit:
3836 mutex_unlock(&hotkey_mutex);
3837 return res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003838}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003840static const struct acpi_device_id ibm_htk_device_ids[] = {
Manoj Iyer9fbdaeb2011-05-08 18:04:29 -04003841 {TPACPI_ACPI_IBM_HKEY_HID, 0},
3842 {TPACPI_ACPI_LENOVO_HKEY_HID, 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003843 {"", 0},
3844};
3845
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003846static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003847 .hid = ibm_htk_device_ids,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003848 .notify = hotkey_notify,
3849 .handle = &hkey_handle,
3850 .type = ACPI_DEVICE_NOTIFY,
3851};
3852
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003853static struct ibm_struct hotkey_driver_data = {
3854 .name = "hotkey",
3855 .read = hotkey_read,
3856 .write = hotkey_write,
3857 .exit = hotkey_exit,
Henrique de Moraes Holschuh5c29d582007-07-18 23:45:38 -03003858 .resume = hotkey_resume,
Henrique de Moraes Holschuha713b4d2008-01-08 13:02:52 -02003859 .suspend = hotkey_suspend,
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03003860 .acpi = &ibm_hotkey_acpidriver,
3861};
3862
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03003863/*************************************************************************
3864 * Bluetooth subdriver
3865 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003867enum {
3868 /* ACPI GBDC/SBDC bits */
3869 TP_ACPI_BLUETOOTH_HWPRESENT = 0x01, /* Bluetooth hw available */
3870 TP_ACPI_BLUETOOTH_RADIOSSW = 0x02, /* Bluetooth radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003871 TP_ACPI_BLUETOOTH_RESUMECTRL = 0x04, /* Bluetooth state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003872 0 = disable, 1 = enable */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02003873};
3874
3875enum {
3876 /* ACPI \BLTH commands */
3877 TP_ACPI_BLTH_GET_ULTRAPORT_ID = 0x00, /* Get Ultraport BT ID */
3878 TP_ACPI_BLTH_GET_PWR_ON_RESUME = 0x01, /* Get power-on-resume state */
3879 TP_ACPI_BLTH_PWR_ON_ON_RESUME = 0x02, /* Resume powered on */
3880 TP_ACPI_BLTH_PWR_OFF_ON_RESUME = 0x03, /* Resume powered off */
3881 TP_ACPI_BLTH_SAVE_STATE = 0x05, /* Save state for S4/S5 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003882};
3883
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003884#define TPACPI_RFK_BLUETOOTH_SW_NAME "tpacpi_bluetooth_sw"
3885
Johannes Berg19d337d2009-06-02 13:01:37 +02003886static int bluetooth_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003887{
3888 int status;
3889
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003890#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3891 if (dbg_bluetoothemul)
3892 return (tpacpi_bluetooth_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003893 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003894#endif
3895
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003896 if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
3897 return -EIO;
3898
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003899 return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02003900 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003901}
3902
Johannes Berg19d337d2009-06-02 13:01:37 +02003903static int bluetooth_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003904{
3905 int status;
3906
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003907 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02003908 "will attempt to %s bluetooth\n",
3909 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003910
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003911#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
3912 if (dbg_bluetoothemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02003913 tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02003914 return 0;
3915 }
3916#endif
3917
Johannes Berg19d337d2009-06-02 13:01:37 +02003918 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03003919 status = TP_ACPI_BLUETOOTH_RADIOSSW
3920 | TP_ACPI_BLUETOOTH_RESUMECTRL;
3921 else
3922 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02003923
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003924 if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
3925 return -EIO;
3926
3927 return 0;
3928}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02003929
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003930/* sysfs bluetooth enable ---------------------------------------------- */
3931static ssize_t bluetooth_enable_show(struct device *dev,
3932 struct device_attribute *attr,
3933 char *buf)
3934{
Johannes Berg19d337d2009-06-02 13:01:37 +02003935 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
3936 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003937}
3938
3939static ssize_t bluetooth_enable_store(struct device *dev,
3940 struct device_attribute *attr,
3941 const char *buf, size_t count)
3942{
Johannes Berg19d337d2009-06-02 13:01:37 +02003943 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
3944 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003945}
3946
3947static struct device_attribute dev_attr_bluetooth_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03003948 __ATTR(bluetooth_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003949 bluetooth_enable_show, bluetooth_enable_store);
3950
3951/* --------------------------------------------------------------------- */
3952
3953static struct attribute *bluetooth_attributes[] = {
3954 &dev_attr_bluetooth_enable.attr,
3955 NULL
3956};
3957
3958static const struct attribute_group bluetooth_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003959 .attrs = bluetooth_attributes,
3960};
3961
Johannes Berg19d337d2009-06-02 13:01:37 +02003962static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
3963 .get_status = bluetooth_get_status,
3964 .set_status = bluetooth_set_status,
3965};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03003966
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003967static void bluetooth_shutdown(void)
3968{
3969 /* Order firmware to save current state to NVRAM */
3970 if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
3971 TP_ACPI_BLTH_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07003972 pr_notice("failed to save bluetooth state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003973 else
3974 vdbg_printk(TPACPI_DBG_RFKILL,
Paul Bolle1f013582011-10-06 22:57:56 +02003975 "bluetooth state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02003976}
3977
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003978static void bluetooth_exit(void)
3979{
3980 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
3981 &bluetooth_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02003982
3983 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
3984
3985 bluetooth_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03003986}
3987
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03003988static int __init bluetooth_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03003990 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03003991 int status = 0;
3992
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00003993 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
3994 "initializing bluetooth subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03003995
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02003996 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03003997
Borislav Deianov78f81cc2005-08-17 00:00:00 -04003998 /* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
3999 G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004000 tp_features.bluetooth = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004001 acpi_evalf(hkey_handle, &status, "GBDC", "qd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004003 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4004 "bluetooth is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004005 str_supported(tp_features.bluetooth),
4006 status);
4007
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004008#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4009 if (dbg_bluetoothemul) {
4010 tp_features.bluetooth = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004011 pr_info("bluetooth switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004012 } else
4013#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004014 if (tp_features.bluetooth &&
4015 !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
4016 /* no bluetooth hardware present in system */
4017 tp_features.bluetooth = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004018 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004019 "bluetooth hardware not installed\n");
4020 }
4021
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004022 if (!tp_features.bluetooth)
4023 return 1;
4024
Johannes Berg19d337d2009-06-02 13:01:37 +02004025 res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
4026 &bluetooth_tprfk_ops,
4027 RFKILL_TYPE_BLUETOOTH,
4028 TPACPI_RFK_BLUETOOTH_SW_NAME,
4029 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004030 if (res)
4031 return res;
4032
Johannes Berg19d337d2009-06-02 13:01:37 +02004033 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4034 &bluetooth_attr_group);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004035 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004036 tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004037 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004038 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004039
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004040 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041}
4042
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004043/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004044static int bluetooth_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004046 return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047}
4048
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004049static int bluetooth_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
Johannes Berg19d337d2009-06-02 13:01:37 +02004051 return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052}
4053
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004054static struct ibm_struct bluetooth_driver_data = {
4055 .name = "bluetooth",
4056 .read = bluetooth_read,
4057 .write = bluetooth_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004058 .exit = bluetooth_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004059 .shutdown = bluetooth_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004060};
4061
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004062/*************************************************************************
4063 * Wan subdriver
4064 */
4065
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004066enum {
4067 /* ACPI GWAN/SWAN bits */
4068 TP_ACPI_WANCARD_HWPRESENT = 0x01, /* Wan hw available */
4069 TP_ACPI_WANCARD_RADIOSSW = 0x02, /* Wan radio enabled */
Henrique de Moraes Holschuh153f8222009-01-11 03:01:01 -02004070 TP_ACPI_WANCARD_RESUMECTRL = 0x04, /* Wan state at resume:
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004071 0 = disable, 1 = enable */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004072};
4073
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004074#define TPACPI_RFK_WWAN_SW_NAME "tpacpi_wwan_sw"
4075
Johannes Berg19d337d2009-06-02 13:01:37 +02004076static int wan_get_status(void)
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004077{
4078 int status;
4079
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004080#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4081 if (dbg_wwanemul)
4082 return (tpacpi_wwan_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004083 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004084#endif
4085
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004086 if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
4087 return -EIO;
4088
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004089 return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004090 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004091}
4092
Johannes Berg19d337d2009-06-02 13:01:37 +02004093static int wan_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004094{
4095 int status;
4096
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004097 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004098 "will attempt to %s wwan\n",
4099 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004100
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004101#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4102 if (dbg_wwanemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004103 tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004104 return 0;
4105 }
4106#endif
4107
Johannes Berg19d337d2009-06-02 13:01:37 +02004108 if (state == TPACPI_RFK_RADIO_ON)
Henrique de Moraes Holschuh08fedfc2010-02-25 22:22:07 -03004109 status = TP_ACPI_WANCARD_RADIOSSW
4110 | TP_ACPI_WANCARD_RESUMECTRL;
4111 else
4112 status = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02004113
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004114 if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
4115 return -EIO;
4116
4117 return 0;
4118}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004119
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004120/* sysfs wan enable ---------------------------------------------------- */
4121static ssize_t wan_enable_show(struct device *dev,
4122 struct device_attribute *attr,
4123 char *buf)
4124{
Johannes Berg19d337d2009-06-02 13:01:37 +02004125 return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
4126 attr, buf);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004127}
4128
4129static ssize_t wan_enable_store(struct device *dev,
4130 struct device_attribute *attr,
4131 const char *buf, size_t count)
4132{
Johannes Berg19d337d2009-06-02 13:01:37 +02004133 return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
4134 attr, buf, count);
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004135}
4136
4137static struct device_attribute dev_attr_wan_enable =
Henrique de Moraes Holschuhcc4c24e2007-05-30 20:50:14 -03004138 __ATTR(wwan_enable, S_IWUSR | S_IRUGO,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004139 wan_enable_show, wan_enable_store);
4140
4141/* --------------------------------------------------------------------- */
4142
4143static struct attribute *wan_attributes[] = {
4144 &dev_attr_wan_enable.attr,
4145 NULL
4146};
4147
4148static const struct attribute_group wan_attr_group = {
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004149 .attrs = wan_attributes,
4150};
4151
Johannes Berg19d337d2009-06-02 13:01:37 +02004152static const struct tpacpi_rfk_ops wan_tprfk_ops = {
4153 .get_status = wan_get_status,
4154 .set_status = wan_set_status,
4155};
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004156
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004157static void wan_shutdown(void)
4158{
4159 /* Order firmware to save current state to NVRAM */
4160 if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
4161 TP_ACPI_WGSV_SAVE_STATE))
Joe Perches0978e012011-04-04 10:06:25 -07004162 pr_notice("failed to save WWAN state to NVRAM\n");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004163 else
4164 vdbg_printk(TPACPI_DBG_RFKILL,
4165 "WWAN state saved to NVRAM\n");
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004166}
4167
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004168static void wan_exit(void)
4169{
4170 sysfs_remove_group(&tpacpi_pdev->dev.kobj,
4171 &wan_attr_group);
Johannes Berg19d337d2009-06-02 13:01:37 +02004172
4173 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
4174
4175 wan_shutdown();
Henrique de Moraes Holschuh07431ec2008-07-21 09:15:50 -03004176}
4177
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004178static int __init wan_init(struct ibm_init_struct *iibm)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004179{
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004180 int res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004181 int status = 0;
4182
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004183 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4184 "initializing wan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004185
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004186 TPACPI_ACPIHANDLE_INIT(hkey);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004187
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004188 tp_features.wan = hkey_handle &&
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004189 acpi_evalf(hkey_handle, &status, "GWAN", "qd");
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004190
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004191 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4192 "wan is %s, status 0x%02x\n",
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004193 str_supported(tp_features.wan),
4194 status);
4195
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004196#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4197 if (dbg_wwanemul) {
4198 tp_features.wan = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004199 pr_info("wwan switch emulation enabled\n");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02004200 } else
4201#endif
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004202 if (tp_features.wan &&
4203 !(status & TP_ACPI_WANCARD_HWPRESENT)) {
4204 /* no wan hardware present in system */
4205 tp_features.wan = 0;
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004206 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
Henrique de Moraes Holschuh3a872082008-07-21 09:15:49 -03004207 "wan hardware not installed\n");
4208 }
4209
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004210 if (!tp_features.wan)
4211 return 1;
4212
Johannes Berg19d337d2009-06-02 13:01:37 +02004213 res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
4214 &wan_tprfk_ops,
4215 RFKILL_TYPE_WWAN,
4216 TPACPI_RFK_WWAN_SW_NAME,
4217 true);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004218 if (res)
4219 return res;
4220
Johannes Berg19d337d2009-06-02 13:01:37 +02004221 res = sysfs_create_group(&tpacpi_pdev->dev.kobj,
4222 &wan_attr_group);
4223
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004224 if (res) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004225 tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004226 return res;
Henrique de Moraes Holschuhd6fdd1e2007-04-21 11:08:40 -03004227 }
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004228
Henrique de Moraes Holschuh0e74dc22008-07-21 09:15:51 -03004229 return 0;
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004230}
4231
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004232/* procfs -------------------------------------------------------------- */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004233static int wan_read(struct seq_file *m)
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004234{
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004235 return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004236}
4237
4238static int wan_write(char *buf)
4239{
Johannes Berg19d337d2009-06-02 13:01:37 +02004240 return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
Jeremy Fitzhardinge42adb532006-06-01 17:41:00 -04004241}
4242
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004243static struct ibm_struct wan_driver_data = {
4244 .name = "wan",
4245 .read = wan_read,
4246 .write = wan_write,
Henrique de Moraes Holschuhd3a6ade2007-04-27 22:00:17 -03004247 .exit = wan_exit,
Henrique de Moraes Holschuh90d9d3c2009-01-11 03:01:02 -02004248 .shutdown = wan_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004249};
4250
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004251/*************************************************************************
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004252 * UWB subdriver
4253 */
4254
4255enum {
4256 /* ACPI GUWB/SUWB bits */
4257 TP_ACPI_UWB_HWPRESENT = 0x01, /* UWB hw available */
4258 TP_ACPI_UWB_RADIOSSW = 0x02, /* UWB radio enabled */
4259};
4260
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004261#define TPACPI_RFK_UWB_SW_NAME "tpacpi_uwb_sw"
4262
Johannes Berg19d337d2009-06-02 13:01:37 +02004263static int uwb_get_status(void)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004264{
4265 int status;
4266
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004267#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4268 if (dbg_uwbemul)
4269 return (tpacpi_uwb_emulstate) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004270 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004271#endif
4272
4273 if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
4274 return -EIO;
4275
4276 return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
Johannes Berg19d337d2009-06-02 13:01:37 +02004277 TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004278}
4279
Johannes Berg19d337d2009-06-02 13:01:37 +02004280static int uwb_set_status(enum tpacpi_rfkill_state state)
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004281{
4282 int status;
4283
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004284 vdbg_printk(TPACPI_DBG_RFKILL,
Johannes Berg19d337d2009-06-02 13:01:37 +02004285 "will attempt to %s UWB\n",
4286 (state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004287
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004288#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4289 if (dbg_uwbemul) {
Johannes Berg19d337d2009-06-02 13:01:37 +02004290 tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004291 return 0;
4292 }
4293#endif
4294
Johannes Berg19d337d2009-06-02 13:01:37 +02004295 if (state == TPACPI_RFK_RADIO_ON)
4296 status = TP_ACPI_UWB_RADIOSSW;
4297 else
4298 status = 0;
4299
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004300 if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
4301 return -EIO;
4302
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004303 return 0;
4304}
4305
4306/* --------------------------------------------------------------------- */
4307
Johannes Berg19d337d2009-06-02 13:01:37 +02004308static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
4309 .get_status = uwb_get_status,
4310 .set_status = uwb_set_status,
4311};
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004312
4313static void uwb_exit(void)
4314{
Johannes Berg19d337d2009-06-02 13:01:37 +02004315 tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004316}
4317
4318static int __init uwb_init(struct ibm_init_struct *iibm)
4319{
4320 int res;
4321 int status = 0;
4322
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004323 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4324 "initializing uwb subdriver\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004325
4326 TPACPI_ACPIHANDLE_INIT(hkey);
4327
4328 tp_features.uwb = hkey_handle &&
4329 acpi_evalf(hkey_handle, &status, "GUWB", "qd");
4330
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004331 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
4332 "uwb is %s, status 0x%02x\n",
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004333 str_supported(tp_features.uwb),
4334 status);
4335
4336#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
4337 if (dbg_uwbemul) {
4338 tp_features.uwb = 1;
Joe Perches0978e012011-04-04 10:06:25 -07004339 pr_info("uwb switch emulation enabled\n");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004340 } else
4341#endif
4342 if (tp_features.uwb &&
4343 !(status & TP_ACPI_UWB_HWPRESENT)) {
4344 /* no uwb hardware present in system */
4345 tp_features.uwb = 0;
4346 dbg_printk(TPACPI_DBG_INIT,
4347 "uwb hardware not installed\n");
4348 }
4349
4350 if (!tp_features.uwb)
4351 return 1;
4352
4353 res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
Johannes Berg19d337d2009-06-02 13:01:37 +02004354 &uwb_tprfk_ops,
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004355 RFKILL_TYPE_UWB,
Henrique de Moraes Holschuhbee4cd92009-04-04 04:25:50 +00004356 TPACPI_RFK_UWB_SW_NAME,
Johannes Berg19d337d2009-06-02 13:01:37 +02004357 false);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02004358 return res;
4359}
4360
4361static struct ibm_struct uwb_driver_data = {
4362 .name = "uwb",
4363 .exit = uwb_exit,
4364 .flags.experimental = 1,
4365};
4366
4367/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004368 * Video subdriver
4369 */
4370
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004371#ifdef CONFIG_THINKPAD_ACPI_VIDEO
4372
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004373enum video_access_mode {
4374 TPACPI_VIDEO_NONE = 0,
4375 TPACPI_VIDEO_570, /* 570 */
4376 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
4377 TPACPI_VIDEO_NEW, /* all others */
4378};
4379
4380enum { /* video status flags, based on VIDEO_570 */
4381 TP_ACPI_VIDEO_S_LCD = 0x01, /* LCD output enabled */
4382 TP_ACPI_VIDEO_S_CRT = 0x02, /* CRT output enabled */
4383 TP_ACPI_VIDEO_S_DVI = 0x08, /* DVI output enabled */
4384};
4385
4386enum { /* TPACPI_VIDEO_570 constants */
4387 TP_ACPI_VIDEO_570_PHSCMD = 0x87, /* unknown magic constant :( */
4388 TP_ACPI_VIDEO_570_PHSMASK = 0x03, /* PHS bits that map to
4389 * video_status_flags */
4390 TP_ACPI_VIDEO_570_PHS2CMD = 0x8b, /* unknown magic constant :( */
4391 TP_ACPI_VIDEO_570_PHS2SET = 0x80, /* unknown magic constant :( */
4392};
4393
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02004394static enum video_access_mode video_supported;
4395static int video_orig_autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004396
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004397static int video_autosw_get(void);
4398static int video_autosw_set(int enable);
4399
Joe Perches112a6ee2011-04-04 10:06:24 -07004400TPACPI_HANDLE(vid, root,
4401 "\\_SB.PCI.AGP.VGA", /* 570 */
4402 "\\_SB.PCI0.AGP0.VID0", /* 600e/x, 770x */
4403 "\\_SB.PCI0.VID0", /* 770e */
4404 "\\_SB.PCI0.VID", /* A21e, G4x, R50e, X30, X40 */
4405 "\\_SB.PCI0.AGP.VGA", /* X100e and a few others */
4406 "\\_SB.PCI0.AGP.VID", /* all others */
4407 ); /* R30, R31 */
4408
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004409TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID"); /* G41 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004410
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004411static int __init video_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004413 int ivga;
4414
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004415 vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
4416
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004417 TPACPI_ACPIHANDLE_INIT(vid);
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004418 if (tpacpi_is_ibm())
4419 TPACPI_ACPIHANDLE_INIT(vid2);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004420
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004421 if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
4422 /* G41, assume IVGA doesn't change */
4423 vid_handle = vid2_handle;
4424
4425 if (!vid_handle)
4426 /* video switching not supported on R30, R31 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004427 video_supported = TPACPI_VIDEO_NONE;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004428 else if (tpacpi_is_ibm() &&
4429 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004430 /* 570 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004431 video_supported = TPACPI_VIDEO_570;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004432 else if (tpacpi_is_ibm() &&
4433 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004434 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004435 video_supported = TPACPI_VIDEO_770;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004436 else
4437 /* all others */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004438 video_supported = TPACPI_VIDEO_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004440 vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
4441 str_supported(video_supported != TPACPI_VIDEO_NONE),
4442 video_supported);
4443
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004444 return (video_supported != TPACPI_VIDEO_NONE)? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445}
4446
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004447static void video_exit(void)
4448{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004449 dbg_printk(TPACPI_DBG_EXIT,
4450 "restoring original video autoswitch mode\n");
4451 if (video_autosw_set(video_orig_autosw))
Joe Perches0978e012011-04-04 10:06:25 -07004452 pr_err("error while trying to restore original "
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004453 "video autoswitch mode\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004454}
4455
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004456static int video_outputsw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
4458 int status = 0;
4459 int i;
4460
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004461 switch (video_supported) {
4462 case TPACPI_VIDEO_570:
4463 if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
4464 TP_ACPI_VIDEO_570_PHSCMD))
4465 return -EIO;
4466 status = i & TP_ACPI_VIDEO_570_PHSMASK;
4467 break;
4468 case TPACPI_VIDEO_770:
4469 if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
4470 return -EIO;
4471 if (i)
4472 status |= TP_ACPI_VIDEO_S_LCD;
4473 if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
4474 return -EIO;
4475 if (i)
4476 status |= TP_ACPI_VIDEO_S_CRT;
4477 break;
4478 case TPACPI_VIDEO_NEW:
4479 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
4480 !acpi_evalf(NULL, &i, "\\VCDC", "d"))
4481 return -EIO;
4482 if (i)
4483 status |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004485 if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
4486 !acpi_evalf(NULL, &i, "\\VCDL", "d"))
4487 return -EIO;
4488 if (i)
4489 status |= TP_ACPI_VIDEO_S_LCD;
4490 if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
4491 return -EIO;
4492 if (i)
4493 status |= TP_ACPI_VIDEO_S_DVI;
4494 break;
4495 default:
4496 return -ENOSYS;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
4499 return status;
4500}
4501
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004502static int video_outputsw_set(int status)
4503{
4504 int autosw;
4505 int res = 0;
4506
4507 switch (video_supported) {
4508 case TPACPI_VIDEO_570:
4509 res = acpi_evalf(NULL, NULL,
4510 "\\_SB.PHS2", "vdd",
4511 TP_ACPI_VIDEO_570_PHS2CMD,
4512 status | TP_ACPI_VIDEO_570_PHS2SET);
4513 break;
4514 case TPACPI_VIDEO_770:
4515 autosw = video_autosw_get();
4516 if (autosw < 0)
4517 return autosw;
4518
4519 res = video_autosw_set(1);
4520 if (res)
4521 return res;
4522 res = acpi_evalf(vid_handle, NULL,
4523 "ASWT", "vdd", status * 0x100, 0);
4524 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004525 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004526 return -EIO;
4527 }
4528 break;
4529 case TPACPI_VIDEO_NEW:
4530 res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02004531 acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004532 break;
4533 default:
4534 return -ENOSYS;
4535 }
4536
4537 return (res)? 0 : -EIO;
4538}
4539
4540static int video_autosw_get(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004542 int autosw = 0;
4543
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004544 switch (video_supported) {
4545 case TPACPI_VIDEO_570:
4546 if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
4547 return -EIO;
4548 break;
4549 case TPACPI_VIDEO_770:
4550 case TPACPI_VIDEO_NEW:
4551 if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
4552 return -EIO;
4553 break;
4554 default:
4555 return -ENOSYS;
4556 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004557
4558 return autosw & 1;
4559}
4560
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004561static int video_autosw_set(int enable)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004562{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004563 if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable)? 1 : 0))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004564 return -EIO;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004565 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004566}
4567
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004568static int video_outputsw_cycle(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004569{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004570 int autosw = video_autosw_get();
4571 int res;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004572
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004573 if (autosw < 0)
4574 return autosw;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004575
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004576 switch (video_supported) {
4577 case TPACPI_VIDEO_570:
4578 res = video_autosw_set(1);
4579 if (res)
4580 return res;
4581 res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
4582 break;
4583 case TPACPI_VIDEO_770:
4584 case TPACPI_VIDEO_NEW:
4585 res = video_autosw_set(1);
4586 if (res)
4587 return res;
4588 res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
4589 break;
4590 default:
4591 return -ENOSYS;
4592 }
4593 if (!autosw && video_autosw_set(autosw)) {
Joe Perches0978e012011-04-04 10:06:25 -07004594 pr_err("video auto-switch left enabled due to error\n");
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004595 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004596 }
4597
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004598 return (res)? 0 : -EIO;
4599}
4600
4601static int video_expand_toggle(void)
4602{
4603 switch (video_supported) {
4604 case TPACPI_VIDEO_570:
4605 return acpi_evalf(ec_handle, NULL, "_Q17", "v")?
4606 0 : -EIO;
4607 case TPACPI_VIDEO_770:
4608 return acpi_evalf(vid_handle, NULL, "VEXP", "v")?
4609 0 : -EIO;
4610 case TPACPI_VIDEO_NEW:
4611 return acpi_evalf(NULL, NULL, "\\VEXP", "v")?
4612 0 : -EIO;
4613 default:
4614 return -ENOSYS;
4615 }
4616 /* not reached */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004617}
4618
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004619static int video_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004620{
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004621 int status, autosw;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004622
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004623 if (video_supported == TPACPI_VIDEO_NONE) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004624 seq_printf(m, "status:\t\tnot supported\n");
4625 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004626 }
4627
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004628 /* Even reads can crash X.org, so... */
4629 if (!capable(CAP_SYS_ADMIN))
4630 return -EPERM;
4631
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004632 status = video_outputsw_get();
4633 if (status < 0)
4634 return status;
4635
4636 autosw = video_autosw_get();
4637 if (autosw < 0)
4638 return autosw;
4639
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004640 seq_printf(m, "status:\t\tsupported\n");
4641 seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
4642 seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004643 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004644 seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
4645 seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
4646 seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
4647 seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004648 if (video_supported == TPACPI_VIDEO_NEW)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004649 seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
4650 seq_printf(m, "commands:\tauto_enable, auto_disable\n");
4651 seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004652
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004653 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004654}
4655
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004656static int video_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657{
4658 char *cmd;
4659 int enable, disable, status;
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004660 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004662 if (video_supported == TPACPI_VIDEO_NONE)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004663 return -ENODEV;
4664
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03004665 /* Even reads can crash X.org, let alone writes... */
4666 if (!capable(CAP_SYS_ADMIN))
4667 return -EPERM;
4668
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004669 enable = 0;
4670 disable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671
4672 while ((cmd = next_cmd(&buf))) {
4673 if (strlencmp(cmd, "lcd_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004674 enable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 } else if (strlencmp(cmd, "lcd_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004676 disable |= TP_ACPI_VIDEO_S_LCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 } else if (strlencmp(cmd, "crt_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004678 enable |= TP_ACPI_VIDEO_S_CRT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 } else if (strlencmp(cmd, "crt_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004680 disable |= TP_ACPI_VIDEO_S_CRT;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004681 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004682 strlencmp(cmd, "dvi_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004683 enable |= TP_ACPI_VIDEO_S_DVI;
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03004684 } else if (video_supported == TPACPI_VIDEO_NEW &&
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004685 strlencmp(cmd, "dvi_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004686 disable |= TP_ACPI_VIDEO_S_DVI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 } else if (strlencmp(cmd, "auto_enable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004688 res = video_autosw_set(1);
4689 if (res)
4690 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 } else if (strlencmp(cmd, "auto_disable") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004692 res = video_autosw_set(0);
4693 if (res)
4694 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 } else if (strlencmp(cmd, "video_switch") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004696 res = video_outputsw_cycle();
4697 if (res)
4698 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 } else if (strlencmp(cmd, "expand_toggle") == 0) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004700 res = video_expand_toggle();
4701 if (res)
4702 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 } else
4704 return -EINVAL;
4705 }
4706
4707 if (enable || disable) {
Henrique de Moraes Holschuh83f34722007-04-21 11:08:41 -03004708 status = video_outputsw_get();
4709 if (status < 0)
4710 return status;
4711 res = video_outputsw_set((status & ~disable) | enable);
4712 if (res)
4713 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 }
4715
4716 return 0;
4717}
4718
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004719static struct ibm_struct video_driver_data = {
4720 .name = "video",
4721 .read = video_read,
4722 .write = video_write,
4723 .exit = video_exit,
4724};
4725
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02004726#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
4727
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004728/*************************************************************************
4729 * Light (thinklight) subdriver
4730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004732TPACPI_HANDLE(lght, root, "\\LGHT"); /* A21e, A2xm/p, T20-22, X20-21 */
4733TPACPI_HANDLE(ledb, ec, "LEDB"); /* G4x */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004734
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004735static int light_get_status(void)
4736{
4737 int status = 0;
4738
4739 if (tp_features.light_status) {
4740 if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
4741 return -EIO;
4742 return (!!status);
4743 }
4744
4745 return -ENXIO;
4746}
4747
4748static int light_set_status(int status)
4749{
4750 int rc;
4751
4752 if (tp_features.light) {
4753 if (cmos_handle) {
4754 rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
4755 (status)?
4756 TP_CMOS_THINKLIGHT_ON :
4757 TP_CMOS_THINKLIGHT_OFF);
4758 } else {
4759 rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
4760 (status)? 1 : 0);
4761 }
4762 return (rc)? 0 : -EIO;
4763 }
4764
4765 return -ENXIO;
4766}
4767
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004768static void light_set_status_worker(struct work_struct *work)
4769{
4770 struct tpacpi_led_classdev *data =
4771 container_of(work, struct tpacpi_led_classdev, work);
4772
4773 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004774 light_set_status((data->new_state != TPACPI_LED_OFF));
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004775}
4776
4777static void light_sysfs_set(struct led_classdev *led_cdev,
4778 enum led_brightness brightness)
4779{
4780 struct tpacpi_led_classdev *data =
4781 container_of(led_cdev,
4782 struct tpacpi_led_classdev,
4783 led_classdev);
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00004784 data->new_state = (brightness != LED_OFF) ?
4785 TPACPI_LED_ON : TPACPI_LED_OFF;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03004786 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004787}
4788
4789static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
4790{
4791 return (light_get_status() == 1)? LED_FULL : LED_OFF;
4792}
4793
4794static struct tpacpi_led_classdev tpacpi_led_thinklight = {
4795 .led_classdev = {
4796 .name = "tpacpi::thinklight",
4797 .brightness_set = &light_sysfs_set,
4798 .brightness_get = &light_sysfs_get,
4799 }
4800};
4801
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004802static int __init light_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004804 int rc;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004805
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004806 vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
4807
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03004808 if (tpacpi_is_ibm()) {
4809 TPACPI_ACPIHANDLE_INIT(ledb);
4810 TPACPI_ACPIHANDLE_INIT(lght);
4811 }
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004812 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004813 INIT_WORK(&tpacpi_led_thinklight.work, light_set_status_worker);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004814
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004815 /* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004816 tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004817
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004818 if (tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004819 /* light status not supported on
4820 570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004821 tp_features.light_status =
4822 acpi_evalf(ec_handle, NULL, "KBLT", "qv");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004824 vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
4825 str_supported(tp_features.light),
4826 str_supported(tp_features.light_status));
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004827
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004828 if (!tp_features.light)
4829 return 1;
4830
4831 rc = led_classdev_register(&tpacpi_pdev->dev,
4832 &tpacpi_led_thinklight.led_classdev);
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004833
4834 if (rc < 0) {
4835 tp_features.light = 0;
4836 tp_features.light_status = 0;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004837 } else {
4838 rc = 0;
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004839 }
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03004840
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004841 return rc;
4842}
4843
4844static void light_exit(void)
4845{
4846 led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
Tejun Heo6d394e12012-12-21 17:56:58 -08004847 flush_workqueue(tpacpi_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848}
4849
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004850static int light_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851{
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004852 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004854 if (!tp_features.light) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004855 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004856 } else if (!tp_features.light_status) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004857 seq_printf(m, "status:\t\tunknown\n");
4858 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004859 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004860 status = light_get_status();
4861 if (status < 0)
4862 return status;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004863 seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
4864 seq_printf(m, "commands:\ton, off\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868}
4869
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004870static int light_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004873 int newstatus = 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004874
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03004875 if (!tp_features.light)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004876 return -ENODEV;
4877
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 while ((cmd = next_cmd(&buf))) {
4879 if (strlencmp(cmd, "on") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004880 newstatus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 } else if (strlencmp(cmd, "off") == 0) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004882 newstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 } else
4884 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 }
4886
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03004887 return light_set_status(newstatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888}
4889
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004890static struct ibm_struct light_driver_data = {
4891 .name = "light",
4892 .read = light_read,
4893 .write = light_write,
Henrique de Moraes Holschuhe3065012008-04-26 01:02:24 -03004894 .exit = light_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004895};
4896
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004897/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004898 * CMOS subdriver
4899 */
4900
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004901/* sysfs cmos_command -------------------------------------------------- */
4902static ssize_t cmos_command_store(struct device *dev,
4903 struct device_attribute *attr,
4904 const char *buf, size_t count)
4905{
4906 unsigned long cmos_cmd;
4907 int res;
4908
4909 if (parse_strtoul(buf, 21, &cmos_cmd))
4910 return -EINVAL;
4911
4912 res = issue_thinkpad_cmos_command(cmos_cmd);
4913 return (res)? res : count;
4914}
4915
4916static struct device_attribute dev_attr_cmos_command =
4917 __ATTR(cmos_command, S_IWUSR, NULL, cmos_command_store);
4918
4919/* --------------------------------------------------------------------- */
4920
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004921static int __init cmos_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004922{
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004923 int res;
4924
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004925 vdbg_printk(TPACPI_DBG_INIT,
4926 "initializing cmos commands subdriver\n");
4927
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02004928 TPACPI_ACPIHANDLE_INIT(cmos);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004929
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03004930 vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
4931 str_supported(cmos_handle != NULL));
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004932
4933 res = device_create_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4934 if (res)
4935 return res;
4936
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03004937 return (cmos_handle)? 0 : 1;
4938}
4939
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004940static void cmos_exit(void)
4941{
4942 device_remove_file(&tpacpi_pdev->dev, &dev_attr_cmos_command);
4943}
4944
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004945static int cmos_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004947 /* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
4948 R30, R31, T20-22, X20-21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 if (!cmos_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004950 seq_printf(m, "status:\t\tnot supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004952 seq_printf(m, "status:\t\tsupported\n");
4953 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 }
4955
Alexey Dobriyan887965e2009-12-15 21:51:12 -02004956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957}
4958
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004959static int cmos_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960{
4961 char *cmd;
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004962 int cmos_cmd, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004965 if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
4966 cmos_cmd >= 0 && cmos_cmd <= 21) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 /* cmos_cmd set */
4968 } else
4969 return -EINVAL;
4970
Henrique de Moraes Holschuhc9bea992007-04-21 11:08:42 -03004971 res = issue_thinkpad_cmos_command(cmos_cmd);
4972 if (res)
4973 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 }
4975
4976 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04004977}
4978
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004979static struct ibm_struct cmos_driver_data = {
4980 .name = "cmos",
4981 .read = cmos_read,
4982 .write = cmos_write,
Henrique de Moraes Holschuhb6160042007-04-24 11:48:19 -03004983 .exit = cmos_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03004984};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03004985
4986/*************************************************************************
4987 * LED subdriver
4988 */
4989
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02004990enum led_access_mode {
4991 TPACPI_LED_NONE = 0,
4992 TPACPI_LED_570, /* 570 */
4993 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
4994 TPACPI_LED_NEW, /* all others */
4995};
4996
4997enum { /* For TPACPI_LED_OLD */
4998 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
4999 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
5000 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
5001};
5002
Henrique de Moraes Holschuh9a8e1732006-11-25 16:36:00 -02005003static enum led_access_mode led_supported;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005004
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005005static acpi_handle led_handle;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005006
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005007#define TPACPI_LED_NUMLEDS 16
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005008static struct tpacpi_led_classdev *tpacpi_leds;
5009static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
Harvey Harrisone3aa51f2008-05-29 17:51:57 -07005010static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005011 /* there's a limit of 19 chars + NULL before 2.6.26 */
5012 "tpacpi::power",
5013 "tpacpi:orange:batt",
5014 "tpacpi:green:batt",
5015 "tpacpi::dock_active",
5016 "tpacpi::bay_active",
5017 "tpacpi::dock_batt",
5018 "tpacpi::unknown_led",
5019 "tpacpi::standby",
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005020 "tpacpi::dock_status1",
5021 "tpacpi::dock_status2",
5022 "tpacpi::unknown_led2",
5023 "tpacpi::unknown_led3",
5024 "tpacpi::thinkvantage",
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005025};
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005026#define TPACPI_SAFE_LEDS 0x1081U
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005027
5028static inline bool tpacpi_is_led_restricted(const unsigned int led)
5029{
5030#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
5031 return false;
5032#else
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005033 return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005034#endif
5035}
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005036
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005037static int led_get_status(const unsigned int led)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005038{
5039 int status;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005040 enum led_status_t led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005041
5042 switch (led_supported) {
5043 case TPACPI_LED_570:
5044 if (!acpi_evalf(ec_handle,
5045 &status, "GLED", "dd", 1 << led))
5046 return -EIO;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005047 led_s = (status == 0)?
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005048 TPACPI_LED_OFF :
5049 ((status == 1)?
5050 TPACPI_LED_ON :
5051 TPACPI_LED_BLINK);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005052 tpacpi_led_state_cache[led] = led_s;
5053 return led_s;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005054 default:
5055 return -ENXIO;
5056 }
5057
5058 /* not reached */
5059}
5060
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005061static int led_set_status(const unsigned int led,
5062 const enum led_status_t ledstatus)
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005063{
5064 /* off, on, blink. Index is led_status_t */
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005065 static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
5066 static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005067
5068 int rc = 0;
5069
5070 switch (led_supported) {
5071 case TPACPI_LED_570:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005072 /* 570 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005073 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005074 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005075 if (unlikely(tpacpi_is_led_restricted(led)))
5076 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005077 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5078 (1 << led), led_sled_arg1[ledstatus]))
5079 rc = -EIO;
5080 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005081 case TPACPI_LED_OLD:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005082 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005083 if (unlikely(led > 7))
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005084 return -EINVAL;
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005085 if (unlikely(tpacpi_is_led_restricted(led)))
5086 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005087 rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
5088 if (rc >= 0)
5089 rc = ec_write(TPACPI_LED_EC_HLBL,
5090 (ledstatus == TPACPI_LED_BLINK) << led);
5091 if (rc >= 0)
5092 rc = ec_write(TPACPI_LED_EC_HLCL,
5093 (ledstatus != TPACPI_LED_OFF) << led);
5094 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005095 case TPACPI_LED_NEW:
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005096 /* all others */
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005097 if (unlikely(led >= TPACPI_LED_NUMLEDS))
5098 return -EINVAL;
5099 if (unlikely(tpacpi_is_led_restricted(led)))
5100 return -EPERM;
Henrique de Moraes Holschuh24e45bb2008-06-03 23:36:11 -03005101 if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
5102 led, led_led_arg1[ledstatus]))
5103 rc = -EIO;
5104 break;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005105 default:
5106 rc = -ENXIO;
5107 }
5108
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005109 if (!rc)
5110 tpacpi_led_state_cache[led] = ledstatus;
5111
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005112 return rc;
5113}
5114
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005115static void led_set_status_worker(struct work_struct *work)
5116{
5117 struct tpacpi_led_classdev *data =
5118 container_of(work, struct tpacpi_led_classdev, work);
5119
5120 if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING))
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005121 led_set_status(data->led, data->new_state);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005122}
5123
5124static void led_sysfs_set(struct led_classdev *led_cdev,
5125 enum led_brightness brightness)
5126{
5127 struct tpacpi_led_classdev *data = container_of(led_cdev,
5128 struct tpacpi_led_classdev, led_classdev);
5129
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005130 if (brightness == LED_OFF)
5131 data->new_state = TPACPI_LED_OFF;
5132 else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
5133 data->new_state = TPACPI_LED_ON;
5134 else
5135 data->new_state = TPACPI_LED_BLINK;
5136
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005137 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005138}
5139
5140static int led_sysfs_blink_set(struct led_classdev *led_cdev,
5141 unsigned long *delay_on, unsigned long *delay_off)
5142{
5143 struct tpacpi_led_classdev *data = container_of(led_cdev,
5144 struct tpacpi_led_classdev, led_classdev);
5145
5146 /* Can we choose the flash rate? */
5147 if (*delay_on == 0 && *delay_off == 0) {
5148 /* yes. set them to the hardware blink rate (1 Hz) */
5149 *delay_on = 500; /* ms */
5150 *delay_off = 500; /* ms */
5151 } else if ((*delay_on != 500) || (*delay_off != 500))
5152 return -EINVAL;
5153
Henrique de Moraes Holschuh75bd3bf2009-04-14 02:44:11 +00005154 data->new_state = TPACPI_LED_BLINK;
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03005155 queue_work(tpacpi_wq, &data->work);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005156
5157 return 0;
5158}
5159
5160static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
5161{
5162 int rc;
5163
5164 struct tpacpi_led_classdev *data = container_of(led_cdev,
5165 struct tpacpi_led_classdev, led_classdev);
5166
5167 rc = led_get_status(data->led);
5168
5169 if (rc == TPACPI_LED_OFF || rc < 0)
5170 rc = LED_OFF; /* no error handling in led class :( */
5171 else
5172 rc = LED_FULL;
5173
5174 return rc;
5175}
5176
5177static void led_exit(void)
5178{
5179 unsigned int i;
5180
5181 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
5182 if (tpacpi_leds[i].led_classdev.name)
5183 led_classdev_unregister(&tpacpi_leds[i].led_classdev);
5184 }
5185
Li Dongyange03e3892012-07-25 10:45:07 +10005186 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005187 kfree(tpacpi_leds);
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005188}
5189
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005190static int __init tpacpi_init_led(unsigned int led)
5191{
5192 int rc;
5193
5194 tpacpi_leds[led].led = led;
5195
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005196 /* LEDs with no name don't get registered */
5197 if (!tpacpi_led_names[led])
5198 return 0;
5199
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005200 tpacpi_leds[led].led_classdev.brightness_set = &led_sysfs_set;
5201 tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
5202 if (led_supported == TPACPI_LED_570)
5203 tpacpi_leds[led].led_classdev.brightness_get =
5204 &led_sysfs_get;
5205
5206 tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
5207
5208 INIT_WORK(&tpacpi_leds[led].work, led_set_status_worker);
5209
5210 rc = led_classdev_register(&tpacpi_pdev->dev,
5211 &tpacpi_leds[led].led_classdev);
5212 if (rc < 0)
5213 tpacpi_leds[led].led_classdev.name = NULL;
5214
5215 return rc;
5216}
5217
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005218static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
5219 TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
5220 TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
5221 TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
5222
5223 TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
5224 TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
5225 TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
5226 TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
5227 TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
5228 TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
5229 TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
5230 TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
5231
5232 TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
5233 TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
5234 TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
5235 TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
5236 TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
5237
5238 TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
5239 TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
5240 TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
5241 TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
5242
5243 /* (1) - may have excess leds enabled on MSB */
5244
5245 /* Defaults (order matters, keep last, don't reorder!) */
5246 { /* Lenovo */
5247 .vendor = PCI_VENDOR_ID_LENOVO,
5248 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5249 .quirks = 0x1fffU,
5250 },
5251 { /* IBM ThinkPads with no EC version string */
5252 .vendor = PCI_VENDOR_ID_IBM,
5253 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
5254 .quirks = 0x00ffU,
5255 },
5256 { /* IBM ThinkPads with EC version string */
5257 .vendor = PCI_VENDOR_ID_IBM,
5258 .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
5259 .quirks = 0x00bfU,
5260 },
5261};
5262
5263#undef TPACPI_LEDQ_IBM
5264#undef TPACPI_LEDQ_LNV
5265
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005266static enum led_access_mode __init led_init_detect_mode(void)
5267{
5268 acpi_status status;
5269
5270 if (tpacpi_is_ibm()) {
5271 /* 570 */
5272 status = acpi_get_handle(ec_handle, "SLED", &led_handle);
5273 if (ACPI_SUCCESS(status))
5274 return TPACPI_LED_570;
5275
5276 /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
5277 status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
5278 if (ACPI_SUCCESS(status))
5279 return TPACPI_LED_OLD;
5280 }
5281
5282 /* most others */
5283 status = acpi_get_handle(ec_handle, "LED", &led_handle);
5284 if (ACPI_SUCCESS(status))
5285 return TPACPI_LED_NEW;
5286
5287 /* R30, R31, and unknown firmwares */
5288 led_handle = NULL;
5289 return TPACPI_LED_NONE;
5290}
5291
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005292static int __init led_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005293{
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005294 unsigned int i;
5295 int rc;
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005296 unsigned long useful_leds;
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005297
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005298 vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
5299
Henrique de Moraes Holschuh2cbb5c82010-05-16 19:45:50 -03005300 led_supported = led_init_detect_mode();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005301
Adam Leefcb44e12013-06-07 16:20:08 +08005302 if (led_supported != TPACPI_LED_NONE) {
5303 useful_leds = tpacpi_check_quirks(led_useful_qtable,
5304 ARRAY_SIZE(led_useful_qtable));
5305
5306 if (!useful_leds) {
5307 led_handle = NULL;
5308 led_supported = TPACPI_LED_NONE;
5309 }
5310 }
5311
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005312 vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
5313 str_supported(led_supported), led_supported);
5314
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005315 if (led_supported == TPACPI_LED_NONE)
5316 return 1;
5317
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005318 tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS,
5319 GFP_KERNEL);
5320 if (!tpacpi_leds) {
Joe Perches0978e012011-04-04 10:06:25 -07005321 pr_err("Out of memory for LED data\n");
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005322 return -ENOMEM;
5323 }
5324
5325 for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
Adam Leeedf2d772013-06-08 16:51:15 +08005326 tpacpi_leds[i].led = -1;
5327
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005328 if (!tpacpi_is_led_restricted(i) &&
5329 test_bit(i, &useful_leds)) {
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005330 rc = tpacpi_init_led(i);
5331 if (rc < 0) {
5332 led_exit();
5333 return rc;
5334 }
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005335 }
5336 }
5337
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005338#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
Joe Perches0978e012011-04-04 10:06:25 -07005339 pr_notice("warning: userspace override of important "
5340 "firmware LEDs is enabled\n");
Henrique de Moraes Holschuha4d5eff2009-04-04 04:25:49 +00005341#endif
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005342 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005343}
5344
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005345#define str_led_status(s) \
5346 ((s) == TPACPI_LED_OFF ? "off" : \
5347 ((s) == TPACPI_LED_ON ? "on" : "blinking"))
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005348
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005349static int led_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005351 if (!led_supported) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005352 seq_printf(m, "status:\t\tnot supported\n");
5353 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005354 }
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005355 seq_printf(m, "status:\t\tsupported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005356
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005357 if (led_supported == TPACPI_LED_570) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005358 /* 570 */
5359 int i, status;
5360 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005361 status = led_get_status(i);
5362 if (status < 0)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005363 return -EIO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005364 seq_printf(m, "%d:\t\t%s\n",
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005365 i, str_led_status(status));
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005366 }
5367 }
5368
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005369 seq_printf(m, "commands:\t"
Henrique de Moraes Holschuhf21179a2009-05-30 13:25:08 -03005370 "<led> on, <led> off, <led> blink (<led> is 0-15)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005372 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373}
5374
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005375static int led_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376{
5377 char *cmd;
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005378 int led, rc;
5379 enum led_status_t s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005380
5381 if (!led_supported)
5382 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
5384 while ((cmd = next_cmd(&buf))) {
Adam Leeedf2d772013-06-08 16:51:15 +08005385 if (sscanf(cmd, "%d", &led) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 return -EINVAL;
5387
Adam Leeedf2d772013-06-08 16:51:15 +08005388 if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1) ||
5389 tpacpi_leds[led].led < 0)
5390 return -ENODEV;
5391
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005392 if (strstr(cmd, "off")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005393 s = TPACPI_LED_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 } else if (strstr(cmd, "on")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005395 s = TPACPI_LED_ON;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005396 } else if (strstr(cmd, "blink")) {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005397 s = TPACPI_LED_BLINK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005398 } else {
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005399 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005400 }
Henrique de Moraes Holschuh4fa68112008-04-26 01:02:23 -03005401
5402 rc = led_set_status(led, s);
5403 if (rc < 0)
5404 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 }
5406
5407 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005408}
5409
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005410static struct ibm_struct led_driver_data = {
5411 .name = "led",
5412 .read = led_read,
5413 .write = led_write,
Henrique de Moraes Holschuhaf116102008-04-26 01:02:25 -03005414 .exit = led_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005415};
5416
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005417/*************************************************************************
5418 * Beep subdriver
5419 */
5420
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005421TPACPI_HANDLE(beep, ec, "BEEP"); /* all except R30, R31 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005422
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005423#define TPACPI_BEEP_Q1 0x0001
5424
5425static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
5426 TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
5427 TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
5428};
5429
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005430static int __init beep_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005431{
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005432 unsigned long quirks;
5433
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005434 vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
5435
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02005436 TPACPI_ACPIHANDLE_INIT(beep);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005437
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005438 vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
5439 str_supported(beep_handle != NULL));
5440
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005441 quirks = tpacpi_check_quirks(beep_quirk_table,
5442 ARRAY_SIZE(beep_quirk_table));
5443
5444 tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
5445
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005446 return (beep_handle)? 0 : 1;
5447}
5448
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005449static int beep_read(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450{
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005451 if (!beep_handle)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005452 seq_printf(m, "status:\t\tnot supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005453 else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005454 seq_printf(m, "status:\t\tsupported\n");
5455 seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459}
5460
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005461static int beep_write(char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462{
5463 char *cmd;
5464 int beep_cmd;
5465
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005466 if (!beep_handle)
5467 return -ENODEV;
5468
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 while ((cmd = next_cmd(&buf))) {
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005470 if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
5471 beep_cmd >= 0 && beep_cmd <= 17) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 /* beep_cmd set */
5473 } else
5474 return -EINVAL;
Henrique de Moraes Holschuh60201732009-05-30 13:25:07 -03005475 if (tp_features.beep_needs_two_args) {
5476 if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
5477 beep_cmd, 0))
5478 return -EIO;
5479 } else {
5480 if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
5481 beep_cmd))
5482 return -EIO;
5483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 }
5485
5486 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005487}
5488
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005489static struct ibm_struct beep_driver_data = {
5490 .name = "beep",
5491 .read = beep_read,
5492 .write = beep_write,
5493};
5494
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005495/*************************************************************************
5496 * Thermal subdriver
5497 */
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005498
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005499enum thermal_access_mode {
5500 TPACPI_THERMAL_NONE = 0, /* No thermal support */
5501 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
5502 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
5503 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
5504 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
5505};
5506
5507enum { /* TPACPI_THERMAL_TPEC_* */
5508 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */
5509 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */
5510 TP_EC_THERMAL_TMP_NA = -128, /* ACPI EC sensor not available */
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005511
5512 TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005513};
5514
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005515
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005516#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
5517struct ibm_thermal_sensors_struct {
5518 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
5519};
5520
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005521static enum thermal_access_mode thermal_read_mode;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005522
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005523/* idx is zero-based */
5524static int thermal_get_sensor(int idx, s32 *value)
5525{
5526 int t;
5527 s8 tmp;
5528 char tmpi[5];
5529
5530 t = TP_EC_THERMAL_TMP0;
5531
5532 switch (thermal_read_mode) {
5533#if TPACPI_MAX_THERMAL_SENSORS >= 16
5534 case TPACPI_THERMAL_TPEC_16:
5535 if (idx >= 8 && idx <= 15) {
5536 t = TP_EC_THERMAL_TMP8;
5537 idx -= 8;
5538 }
5539 /* fallthrough */
5540#endif
5541 case TPACPI_THERMAL_TPEC_8:
5542 if (idx <= 7) {
5543 if (!acpi_ec_read(t + idx, &tmp))
5544 return -EIO;
5545 *value = tmp * 1000;
5546 return 0;
5547 }
5548 break;
5549
5550 case TPACPI_THERMAL_ACPI_UPDT:
5551 if (idx <= 7) {
5552 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5553 if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
5554 return -EIO;
5555 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5556 return -EIO;
5557 *value = (t - 2732) * 100;
5558 return 0;
5559 }
5560 break;
5561
5562 case TPACPI_THERMAL_ACPI_TMP07:
5563 if (idx <= 7) {
5564 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
5565 if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
5566 return -EIO;
5567 if (t > 127 || t < -127)
5568 t = TP_EC_THERMAL_TMP_NA;
5569 *value = t * 1000;
5570 return 0;
5571 }
5572 break;
5573
5574 case TPACPI_THERMAL_NONE:
5575 default:
5576 return -ENOSYS;
5577 }
5578
5579 return -EINVAL;
5580}
5581
5582static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
5583{
5584 int res, i;
5585 int n;
5586
5587 n = 8;
5588 i = 0;
5589
5590 if (!s)
5591 return -EINVAL;
5592
5593 if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
5594 n = 16;
5595
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005596 for (i = 0 ; i < n; i++) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005597 res = thermal_get_sensor(i, &s->temp[i]);
5598 if (res)
5599 return res;
5600 }
5601
5602 return n;
5603}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005604
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005605static void thermal_dump_all_sensors(void)
5606{
5607 int n, i;
5608 struct ibm_thermal_sensors_struct t;
5609
5610 n = thermal_get_sensors(&t);
5611 if (n <= 0)
5612 return;
5613
Joe Perches0978e012011-04-04 10:06:25 -07005614 pr_notice("temperatures (Celsius):");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005615
5616 for (i = 0; i < n; i++) {
5617 if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
Joe Perches0978e012011-04-04 10:06:25 -07005618 pr_cont(" %d", (int)(t.temp[i] / 1000));
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005619 else
Joe Perches0978e012011-04-04 10:06:25 -07005620 pr_cont(" N/A");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005621 }
5622
Joe Perches0978e012011-04-04 10:06:25 -07005623 pr_cont("\n");
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005624}
5625
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005626/* sysfs temp##_input -------------------------------------------------- */
5627
5628static ssize_t thermal_temp_input_show(struct device *dev,
5629 struct device_attribute *attr,
5630 char *buf)
5631{
5632 struct sensor_device_attribute *sensor_attr =
5633 to_sensor_dev_attr(attr);
5634 int idx = sensor_attr->index;
5635 s32 value;
5636 int res;
5637
5638 res = thermal_get_sensor(idx, &value);
5639 if (res)
5640 return res;
Henrique de Moraes Holschuh9ebd9e82009-12-09 01:36:28 +00005641 if (value == TPACPI_THERMAL_SENSOR_NA)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005642 return -ENXIO;
5643
5644 return snprintf(buf, PAGE_SIZE, "%d\n", value);
5645}
5646
5647#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005648 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
5649 thermal_temp_input_show, NULL, _idxB)
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005650
5651static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
5652 THERMAL_SENSOR_ATTR_TEMP(1, 0),
5653 THERMAL_SENSOR_ATTR_TEMP(2, 1),
5654 THERMAL_SENSOR_ATTR_TEMP(3, 2),
5655 THERMAL_SENSOR_ATTR_TEMP(4, 3),
5656 THERMAL_SENSOR_ATTR_TEMP(5, 4),
5657 THERMAL_SENSOR_ATTR_TEMP(6, 5),
5658 THERMAL_SENSOR_ATTR_TEMP(7, 6),
5659 THERMAL_SENSOR_ATTR_TEMP(8, 7),
5660 THERMAL_SENSOR_ATTR_TEMP(9, 8),
5661 THERMAL_SENSOR_ATTR_TEMP(10, 9),
5662 THERMAL_SENSOR_ATTR_TEMP(11, 10),
5663 THERMAL_SENSOR_ATTR_TEMP(12, 11),
5664 THERMAL_SENSOR_ATTR_TEMP(13, 12),
5665 THERMAL_SENSOR_ATTR_TEMP(14, 13),
5666 THERMAL_SENSOR_ATTR_TEMP(15, 14),
5667 THERMAL_SENSOR_ATTR_TEMP(16, 15),
5668};
5669
5670#define THERMAL_ATTRS(X) \
5671 &sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
5672
5673static struct attribute *thermal_temp_input_attr[] = {
5674 THERMAL_ATTRS(8),
5675 THERMAL_ATTRS(9),
5676 THERMAL_ATTRS(10),
5677 THERMAL_ATTRS(11),
5678 THERMAL_ATTRS(12),
5679 THERMAL_ATTRS(13),
5680 THERMAL_ATTRS(14),
5681 THERMAL_ATTRS(15),
5682 THERMAL_ATTRS(0),
5683 THERMAL_ATTRS(1),
5684 THERMAL_ATTRS(2),
5685 THERMAL_ATTRS(3),
5686 THERMAL_ATTRS(4),
5687 THERMAL_ATTRS(5),
5688 THERMAL_ATTRS(6),
5689 THERMAL_ATTRS(7),
5690 NULL
5691};
5692
5693static const struct attribute_group thermal_temp_input16_group = {
5694 .attrs = thermal_temp_input_attr
5695};
5696
5697static const struct attribute_group thermal_temp_input8_group = {
5698 .attrs = &thermal_temp_input_attr[8]
5699};
5700
5701#undef THERMAL_SENSOR_ATTR_TEMP
5702#undef THERMAL_ATTRS
5703
5704/* --------------------------------------------------------------------- */
5705
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005706static int __init thermal_init(struct ibm_init_struct *iibm)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005707{
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005708 u8 t, ta1, ta2;
5709 int i;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005710 int acpi_tmp7;
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005711 int res;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005712
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005713 vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
5714
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03005715 acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005716
Henrique de Moraes Holschuh3d6f99c2007-07-18 23:45:46 -03005717 if (thinkpad_id.ec_model) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005718 /*
5719 * Direct EC access mode: sensors at registers
5720 * 0x78-0x7F, 0xC0-0xC7. Registers return 0x00 for
5721 * non-implemented, thermal sensors return 0x80 when
5722 * not available
5723 */
5724
5725 ta1 = ta2 = 0;
5726 for (i = 0; i < 8; i++) {
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005727 if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005728 ta1 |= t;
5729 } else {
5730 ta1 = 0;
5731 break;
5732 }
Henrique de Moraes Holschuh04cc8622007-04-21 11:08:43 -03005733 if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005734 ta2 |= t;
5735 } else {
5736 ta1 = 0;
5737 break;
5738 }
5739 }
5740 if (ta1 == 0) {
5741 /* This is sheer paranoia, but we handle it anyway */
5742 if (acpi_tmp7) {
Joe Perches0978e012011-04-04 10:06:25 -07005743 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005744 "falling back to ACPI TMPx access "
5745 "mode\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005746 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005747 } else {
Joe Perches0978e012011-04-04 10:06:25 -07005748 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005749 "disabling thermal sensors access\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005750 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005751 }
5752 } else {
5753 thermal_read_mode =
5754 (ta2 != 0) ?
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005755 TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02005756 }
5757 } else if (acpi_tmp7) {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005758 if (tpacpi_is_ibm() &&
5759 acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005760 /* 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005761 thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005762 } else {
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03005763 /* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005764 thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005765 }
5766 } else {
5767 /* temperatures not supported on 570, G4x, R30, R31, R32 */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03005768 thermal_read_mode = TPACPI_THERMAL_NONE;
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005769 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005770
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03005771 vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
5772 str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
5773 thermal_read_mode);
5774
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005775 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005776 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005777 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005778 &thermal_temp_input16_group);
5779 if (res)
5780 return res;
5781 break;
5782 case TPACPI_THERMAL_TPEC_8:
5783 case TPACPI_THERMAL_ACPI_TMP07:
5784 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005785 res = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005786 &thermal_temp_input8_group);
5787 if (res)
5788 return res;
5789 break;
5790 case TPACPI_THERMAL_NONE:
5791 default:
5792 return 1;
5793 }
5794
5795 return 0;
5796}
5797
5798static void thermal_exit(void)
5799{
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02005800 switch (thermal_read_mode) {
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005801 case TPACPI_THERMAL_TPEC_16:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005802 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005803 &thermal_temp_input16_group);
5804 break;
5805 case TPACPI_THERMAL_TPEC_8:
5806 case TPACPI_THERMAL_ACPI_TMP07:
5807 case TPACPI_THERMAL_ACPI_UPDT:
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03005808 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
Roel Kluinf04d5e02010-02-02 14:37:58 -08005809 &thermal_temp_input8_group);
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005810 break;
5811 case TPACPI_THERMAL_NONE:
5812 default:
5813 break;
5814 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005815}
5816
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005817static int thermal_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005818{
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005819 int n, i;
5820 struct ibm_thermal_sensors_struct t;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005821
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005822 n = thermal_get_sensors(&t);
5823 if (unlikely(n < 0))
5824 return n;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005825
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005826 seq_printf(m, "temperatures:\t");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005827
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005828 if (n > 0) {
5829 for (i = 0; i < (n - 1); i++)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005830 seq_printf(m, "%d ", t.temp[i] / 1000);
5831 seq_printf(m, "%d\n", t.temp[i] / 1000);
Henrique de Moraes Holschuha26f8782006-11-24 11:47:08 -02005832 } else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005833 seq_printf(m, "not supported\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005834
Alexey Dobriyan887965e2009-12-15 21:51:12 -02005835 return 0;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04005836}
5837
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005838static struct ibm_struct thermal_driver_data = {
5839 .name = "thermal",
5840 .read = thermal_read,
Henrique de Moraes Holschuh2c37aa42007-04-24 11:48:16 -03005841 .exit = thermal_exit,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03005842};
5843
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005844/*************************************************************************
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03005845 * Backlight/brightness subdriver
5846 */
Holger Macht8acb0252006-10-20 14:30:28 -07005847
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005848#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
5849
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005850/*
5851 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
5852 * CMOS NVRAM byte 0x5E, bits 0-3.
5853 *
5854 * EC HBRV (0x31) has the following layout
5855 * Bit 7: unknown function
5856 * Bit 6: unknown function
5857 * Bit 5: Z: honour scale changes, NZ: ignore scale changes
5858 * Bit 4: must be set to zero to avoid problems
5859 * Bit 3-0: backlight brightness level
5860 *
5861 * brightness_get_raw returns status data in the HBRV layout
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03005862 *
5863 * WARNING: The X61 has been verified to use HBRV for something else, so
5864 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
5865 * testing on the very early *60 Lenovo models...
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005866 */
5867
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03005868enum {
5869 TP_EC_BACKLIGHT = 0x31,
5870
5871 /* TP_EC_BACKLIGHT bitmasks */
5872 TP_EC_BACKLIGHT_LVLMSK = 0x1F,
5873 TP_EC_BACKLIGHT_CMDMSK = 0xE0,
5874 TP_EC_BACKLIGHT_MAPSW = 0x20,
5875};
5876
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005877enum tpacpi_brightness_access_mode {
5878 TPACPI_BRGHT_MODE_AUTO = 0, /* Not implemented yet */
5879 TPACPI_BRGHT_MODE_EC, /* EC control */
5880 TPACPI_BRGHT_MODE_UCMS_STEP, /* UCMS step-based control */
5881 TPACPI_BRGHT_MODE_ECNVRAM, /* EC control w/ NVRAM store */
5882 TPACPI_BRGHT_MODE_MAX
5883};
5884
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03005885static struct backlight_device *ibm_backlight_device;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005886
5887static enum tpacpi_brightness_access_mode brightness_mode =
5888 TPACPI_BRGHT_MODE_MAX;
5889
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02005890static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
5891
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005892static struct mutex brightness_mutex;
5893
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005894/* NVRAM brightness access,
5895 * call with brightness_mutex held! */
5896static unsigned int tpacpi_brightness_nvram_get(void)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005897{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005898 u8 lnvram;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005899
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005900 lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
5901 & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5902 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03005903 lnvram &= bright_maxlvl;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005904
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005905 return lnvram;
5906}
5907
5908static void tpacpi_brightness_checkpoint_nvram(void)
5909{
5910 u8 lec = 0;
5911 u8 b_nvram;
5912
5913 if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
5914 return;
5915
5916 vdbg_printk(TPACPI_DBG_BRGHT,
5917 "trying to checkpoint backlight level to NVRAM...\n");
5918
5919 if (mutex_lock_killable(&brightness_mutex) < 0)
5920 return;
5921
5922 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5923 goto unlock;
5924 lec &= TP_EC_BACKLIGHT_LVLMSK;
5925 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
5926
5927 if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
5928 >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
5929 /* NVRAM needs update */
5930 b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
5931 TP_NVRAM_POS_LEVEL_BRIGHTNESS);
5932 b_nvram |= lec;
5933 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
5934 dbg_printk(TPACPI_DBG_BRGHT,
5935 "updated NVRAM backlight level to %u (0x%02x)\n",
5936 (unsigned int) lec, (unsigned int) b_nvram);
5937 } else
5938 vdbg_printk(TPACPI_DBG_BRGHT,
5939 "NVRAM backlight level already is %u (0x%02x)\n",
5940 (unsigned int) lec, (unsigned int) b_nvram);
5941
5942unlock:
5943 mutex_unlock(&brightness_mutex);
5944}
5945
5946
5947/* call with brightness_mutex held! */
5948static int tpacpi_brightness_get_raw(int *status)
5949{
5950 u8 lec = 0;
5951
5952 switch (brightness_mode) {
5953 case TPACPI_BRGHT_MODE_UCMS_STEP:
5954 *status = tpacpi_brightness_nvram_get();
5955 return 0;
5956 case TPACPI_BRGHT_MODE_EC:
5957 case TPACPI_BRGHT_MODE_ECNVRAM:
5958 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
Henrique de Moraes Holschuh2d5e94d2008-04-26 01:02:20 -03005959 return -EIO;
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005960 *status = lec;
5961 return 0;
5962 default:
5963 return -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02005964 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00005965}
5966
5967/* call with brightness_mutex held! */
5968/* do NOT call with illegal backlight level value */
5969static int tpacpi_brightness_set_ec(unsigned int value)
5970{
5971 u8 lec = 0;
5972
5973 if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
5974 return -EIO;
5975
5976 if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
5977 (lec & TP_EC_BACKLIGHT_CMDMSK) |
5978 (value & TP_EC_BACKLIGHT_LVLMSK))))
5979 return -EIO;
5980
5981 return 0;
5982}
5983
5984/* call with brightness_mutex held! */
5985static int tpacpi_brightness_set_ucmsstep(unsigned int value)
5986{
5987 int cmos_cmd, inc;
5988 unsigned int current_value, i;
5989
5990 current_value = tpacpi_brightness_nvram_get();
5991
5992 if (value == current_value)
5993 return 0;
5994
5995 cmos_cmd = (value > current_value) ?
5996 TP_CMOS_BRIGHTNESS_UP :
5997 TP_CMOS_BRIGHTNESS_DOWN;
5998 inc = (value > current_value) ? 1 : -1;
5999
6000 for (i = current_value; i != value; i += inc)
6001 if (issue_thinkpad_cmos_command(cmos_cmd))
6002 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006003
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006004 return 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006005}
6006
6007/* May return EINTR which can always be mapped to ERESTARTSYS */
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006008static int brightness_set(unsigned int value)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006009{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006010 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006011
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006012 if (value > bright_maxlvl || value < 0)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006013 return -EINVAL;
6014
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006015 vdbg_printk(TPACPI_DBG_BRGHT,
6016 "set backlight level to %d\n", value);
6017
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02006018 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006019 if (res < 0)
6020 return res;
6021
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006022 switch (brightness_mode) {
6023 case TPACPI_BRGHT_MODE_EC:
6024 case TPACPI_BRGHT_MODE_ECNVRAM:
6025 res = tpacpi_brightness_set_ec(value);
6026 break;
6027 case TPACPI_BRGHT_MODE_UCMS_STEP:
6028 res = tpacpi_brightness_set_ucmsstep(value);
6029 break;
6030 default:
6031 res = -ENXIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006032 }
6033
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006034 mutex_unlock(&brightness_mutex);
6035 return res;
6036}
6037
6038/* sysfs backlight class ----------------------------------------------- */
6039
6040static int brightness_update_status(struct backlight_device *bd)
6041{
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006042 unsigned int level =
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006043 (bd->props.fb_blank == FB_BLANK_UNBLANK &&
6044 bd->props.power == FB_BLANK_UNBLANK) ?
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006045 bd->props.brightness : 0;
6046
6047 dbg_printk(TPACPI_DBG_BRGHT,
6048 "backlight: attempt to set level to %d\n",
6049 level);
6050
6051 /* it is the backlight class's job (caller) to handle
6052 * EINTR and other errors properly */
6053 return brightness_set(level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006054}
Holger Macht8acb0252006-10-20 14:30:28 -07006055
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006056static int brightness_get(struct backlight_device *bd)
6057{
6058 int status, res;
6059
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006060 res = mutex_lock_killable(&brightness_mutex);
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006061 if (res < 0)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006062 return 0;
6063
6064 res = tpacpi_brightness_get_raw(&status);
6065
6066 mutex_unlock(&brightness_mutex);
6067
6068 if (res < 0)
6069 return 0;
Henrique de Moraes Holschuhe11aecf2008-04-26 01:02:21 -03006070
6071 return status & TP_EC_BACKLIGHT_LVLMSK;
6072}
6073
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006074static void tpacpi_brightness_notify_change(void)
6075{
6076 backlight_force_update(ibm_backlight_device,
6077 BACKLIGHT_UPDATE_HOTKEY);
6078}
6079
Lionel Debrouxacc24722010-11-16 14:14:02 +01006080static const struct backlight_ops ibm_backlight_data = {
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006081 .get_brightness = brightness_get,
6082 .update_status = brightness_update_status,
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006083};
6084
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02006085/* --------------------------------------------------------------------- */
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006086
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006087/*
6088 * Call _BCL method of video device. On some ThinkPads this will
6089 * switch the firmware to the ACPI brightness control mode.
6090 */
6091
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006092static int __init tpacpi_query_bcl_levels(acpi_handle handle)
6093{
6094 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
6095 union acpi_object *obj;
Aaron Lu46445b62013-10-11 21:27:46 +08006096 struct acpi_device *device, *child;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006097 int rc;
6098
Aaron Lu46445b62013-10-11 21:27:46 +08006099 if (acpi_bus_get_device(handle, &device))
6100 return 0;
6101
6102 rc = 0;
6103 list_for_each_entry(child, &device->children, node) {
6104 acpi_status status = acpi_evaluate_object(child->handle, "_BCL",
6105 NULL, &buffer);
6106 if (ACPI_FAILURE(status))
6107 continue;
6108
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006109 obj = (union acpi_object *)buffer.pointer;
6110 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Joe Perches0978e012011-04-04 10:06:25 -07006111 pr_err("Unknown _BCL data, please report this to %s\n",
Aaron Lu46445b62013-10-11 21:27:46 +08006112 TPACPI_MAIL);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006113 rc = 0;
6114 } else {
6115 rc = obj->package.count;
6116 }
Aaron Lu46445b62013-10-11 21:27:46 +08006117 break;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006118 }
6119
6120 kfree(buffer.pointer);
6121 return rc;
6122}
6123
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006124
6125/*
6126 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
6127 */
6128static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
6129{
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006130 acpi_handle video_device;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006131 int bcl_levels = 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006132
Aaron Lu46445b62013-10-11 21:27:46 +08006133 tpacpi_acpi_handle_locate("video", NULL, &video_device);
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006134 if (video_device)
6135 bcl_levels = tpacpi_query_bcl_levels(video_device);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006136
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006137 tp_features.bright_acpimode = (bcl_levels > 0);
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006138
Henrique de Moraes Holschuh122f2672010-08-09 23:48:18 -03006139 return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006140}
6141
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006142/*
6143 * These are only useful for models that have only one possibility
6144 * of GPU. If the BIOS model handles both ATI and Intel, don't use
6145 * these quirks.
6146 */
6147#define TPACPI_BRGHT_Q_NOEC 0x0001 /* Must NOT use EC HBRV */
6148#define TPACPI_BRGHT_Q_EC 0x0002 /* Should or must use EC HBRV */
6149#define TPACPI_BRGHT_Q_ASK 0x8000 /* Ask for user report */
6150
6151static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
6152 /* Models with ATI GPUs known to require ECNVRAM mode */
6153 TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC), /* T43/p ATI */
6154
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006155 /* Models with ATI GPUs that can use ECNVRAM */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006156 TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC), /* R50,51 T40-42 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006157 TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006158 TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC), /* R52 */
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006159 TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6160
Henrique de Moraes Holschuh6da25bf2009-09-12 15:22:11 -03006161 /* Models with Intel Extreme Graphics 2 */
Henrique de Moraes Holschuh7d1894d2010-02-25 21:28:56 -03006162 TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC), /* X40 */
Henrique de Moraes Holschuha9f8eac2009-12-09 01:36:21 +00006163 TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
6164 TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006165
6166 /* Models with Intel GMA900 */
6167 TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC), /* T43, R52 */
6168 TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC), /* X41 */
6169 TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC), /* X41 Tablet */
6170};
6171
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006172/*
6173 * Returns < 0 for error, otherwise sets tp_features.bright_*
6174 * and bright_maxlvl.
6175 */
6176static void __init tpacpi_detect_brightness_capabilities(void)
6177{
6178 unsigned int b;
6179
6180 vdbg_printk(TPACPI_DBG_INIT,
6181 "detecting firmware brightness interface capabilities\n");
6182
6183 /* we could run a quirks check here (same table used by
6184 * brightness_init) if needed */
6185
6186 /*
6187 * We always attempt to detect acpi support, so as to switch
6188 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
6189 * going to publish a backlight interface
6190 */
6191 b = tpacpi_check_std_acpi_brightness_support();
6192 switch (b) {
6193 case 16:
6194 bright_maxlvl = 15;
Joe Perches0978e012011-04-04 10:06:25 -07006195 pr_info("detected a 16-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006196 break;
6197 case 8:
6198 case 0:
6199 bright_maxlvl = 7;
Joe Perches0978e012011-04-04 10:06:25 -07006200 pr_info("detected a 8-level brightness capable ThinkPad\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006201 break;
6202 default:
Joe Perches0978e012011-04-04 10:06:25 -07006203 pr_err("Unsupported brightness interface, "
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006204 "please contact %s\n", TPACPI_MAIL);
6205 tp_features.bright_unkfw = 1;
6206 bright_maxlvl = b - 1;
6207 }
6208}
6209
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006210static int __init brightness_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006211{
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006212 struct backlight_properties props;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006213 int b;
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006214 unsigned long quirks;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006215
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006216 vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
6217
Henrique de Moraes Holschuhf4322552007-07-18 23:45:48 -03006218 mutex_init(&brightness_mutex);
6219
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006220 quirks = tpacpi_check_quirks(brightness_quirk_table,
6221 ARRAY_SIZE(brightness_quirk_table));
6222
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006223 /* tpacpi_detect_brightness_capabilities() must have run already */
Thomas Renninger2dba1b52008-08-01 17:38:03 +02006224
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006225 /* if it is unknown, we don't handle it: it wouldn't be safe */
6226 if (tp_features.bright_unkfw)
6227 return 1;
6228
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006229 if (!brightness_enable) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006230 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhb5972792008-04-26 01:02:17 -03006231 "brightness support disabled by "
6232 "module parameter\n");
6233 return 1;
6234 }
6235
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006236 if (acpi_video_backlight_support()) {
6237 if (brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006238 pr_info("Standard ACPI backlight interface "
6239 "available, not loading native one\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006240 return 1;
6241 } else if (brightness_enable == 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006242 pr_warn("Cannot enable backlight brightness support, "
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006243 "ACPI is already handling it. Refer to the "
Joe Perches0978e012011-04-04 10:06:25 -07006244 "acpi_backlight kernel parameter.\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006245 return 1;
6246 }
6247 } else if (tp_features.bright_acpimode && brightness_enable > 1) {
Joe Perches0978e012011-04-04 10:06:25 -07006248 pr_notice("Standard ACPI backlight interface not "
6249 "available, thinkpad_acpi native "
6250 "brightness control enabled\n");
Henrique de Moraes Holschuh217f0962010-08-09 23:48:19 -03006251 }
6252
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006253 /*
6254 * Check for module parameter bogosity, note that we
6255 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
6256 * able to detect "unspecified"
6257 */
6258 if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006259 return -EINVAL;
6260
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006261 /* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
6262 if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
6263 brightness_mode == TPACPI_BRGHT_MODE_MAX) {
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006264 if (quirks & TPACPI_BRGHT_Q_EC)
6265 brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
6266 else
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006267 brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
6268
6269 dbg_printk(TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006270 "driver auto-selected brightness_mode=%d\n",
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006271 brightness_mode);
6272 }
6273
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006274 /* Safety */
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03006275 if (!tpacpi_is_ibm() &&
Henrique de Moraes Holschuhd7880f12009-06-18 00:40:16 -03006276 (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
6277 brightness_mode == TPACPI_BRGHT_MODE_EC))
6278 return -EINVAL;
6279
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006280 if (tpacpi_brightness_get_raw(&b) < 0)
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03006281 return 1;
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006282
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006283 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07006284 props.type = BACKLIGHT_PLATFORM;
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006285 props.max_brightness = bright_maxlvl;
6286 props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05006287 ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
6288 NULL, NULL,
6289 &ibm_backlight_data,
6290 &props);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006291 if (IS_ERR(ibm_backlight_device)) {
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006292 int rc = PTR_ERR(ibm_backlight_device);
6293 ibm_backlight_device = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07006294 pr_err("Could not register backlight device\n");
Henrique de Moraes Holschuh435c47e2009-09-20 14:09:22 -03006295 return rc;
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006296 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006297 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6298 "brightness is supported\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006299
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006300 if (quirks & TPACPI_BRGHT_Q_ASK) {
Joe Perches0978e012011-04-04 10:06:25 -07006301 pr_notice("brightness: will use unverified default: "
6302 "brightness_mode=%d\n", brightness_mode);
6303 pr_notice("brightness: please report to %s whether it works well "
6304 "or not on your ThinkPad\n", TPACPI_MAIL);
Henrique de Moraes Holschuh59fe4fe2009-08-01 12:04:20 -03006305 }
6306
Henrique de Moraes Holschuh7d9745c2010-05-16 19:45:57 -03006307 /* Added by mistake in early 2007. Probably useless, but it could
6308 * be working around some unknown firmware problem where the value
6309 * read at startup doesn't match the real hardware state... so leave
6310 * it in place just in case */
Henrique de Moraes Holschuhadb00582007-02-22 16:04:55 -02006311 backlight_update_status(ibm_backlight_device);
Richard Purdie599a52d2007-02-10 23:07:48 +00006312
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006313 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
6314 "brightness: registering brightness hotkeys "
6315 "as change notification\n");
6316 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6317 | TP_ACPI_HKEY_BRGHTUP_MASK
Joe Perches30980642010-11-14 19:04:38 -08006318 | TP_ACPI_HKEY_BRGHTDWN_MASK);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006319 return 0;
6320}
6321
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02006322static void brightness_suspend(void)
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006323{
6324 tpacpi_brightness_checkpoint_nvram();
6325}
6326
6327static void brightness_shutdown(void)
6328{
6329 tpacpi_brightness_checkpoint_nvram();
6330}
6331
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006332static void brightness_exit(void)
6333{
6334 if (ibm_backlight_device) {
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006335 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03006336 "calling backlight_device_unregister()\n");
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006337 backlight_device_unregister(ibm_backlight_device);
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006338 }
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006339
6340 tpacpi_brightness_checkpoint_nvram();
Henrique de Moraes Holschuhfb87a812006-11-25 16:35:09 -02006341}
6342
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006343static int brightness_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006344{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006345 int level;
6346
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006347 level = brightness_get(NULL);
6348 if (level < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006349 seq_printf(m, "level:\t\tunreadable\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006350 } else {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006351 seq_printf(m, "level:\t\t%d\n", level);
6352 seq_printf(m, "commands:\tup, down\n");
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006353 seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
6354 bright_maxlvl);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006355 }
6356
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006357 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006358}
6359
6360static int brightness_write(char *buf)
6361{
6362 int level;
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006363 int rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006364 char *cmd;
6365
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006366 level = brightness_get(NULL);
6367 if (level < 0)
6368 return level;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006369
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006370 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006371 if (strlencmp(cmd, "up") == 0) {
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006372 if (level < bright_maxlvl)
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006373 level++;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006374 } else if (strlencmp(cmd, "down") == 0) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006375 if (level > 0)
6376 level--;
6377 } else if (sscanf(cmd, "level %d", &level) == 1 &&
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03006378 level >= 0 && level <= bright_maxlvl) {
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006379 /* new level set */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006380 } else
6381 return -EINVAL;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006382 }
6383
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006384 tpacpi_disclose_usertask("procfs brightness",
6385 "set level to %d\n", level);
6386
Henrique de Moraes Holschuh4273af82007-10-30 17:46:25 -02006387 /*
6388 * Now we know what the final level should be, so we try to set it.
6389 * Doing it this way makes the syscall restartable in case of EINTR
6390 */
6391 rc = brightness_set(level);
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00006392 if (!rc && ibm_backlight_device)
6393 backlight_force_update(ibm_backlight_device,
6394 BACKLIGHT_UPDATE_SYSFS);
Roel Kluin80a8d122009-11-20 19:48:23 +01006395 return (rc == -EINTR)? -ERESTARTSYS : rc;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006396}
6397
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006398static struct ibm_struct brightness_driver_data = {
6399 .name = "brightness",
6400 .read = brightness_read,
6401 .write = brightness_write,
6402 .exit = brightness_exit,
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00006403 .suspend = brightness_suspend,
6404 .shutdown = brightness_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03006405};
6406
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03006407/*************************************************************************
6408 * Volume subdriver
6409 */
6410
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006411/*
6412 * IBM ThinkPads have a simple volume controller with MUTE gating.
6413 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
6414 *
6415 * Since the *61 series (and probably also the later *60 series), Lenovo
6416 * ThinkPads only implement the MUTE gate.
6417 *
6418 * EC register 0x30
6419 * Bit 6: MUTE (1 mutes sound)
6420 * Bit 3-0: Volume
6421 * Other bits should be zero as far as we know.
6422 *
6423 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
6424 * bits 3-0 (volume). Other bits in NVRAM may have other functions,
6425 * such as bit 7 which is used to detect repeated presses of MUTE,
6426 * and we leave them unchanged.
6427 */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02006428
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02006429#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
6430
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006431#define TPACPI_ALSA_DRVNAME "ThinkPad EC"
6432#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
6433#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
6434
Henrique de Moraes Holschuhead510c2009-12-26 22:52:13 -02006435static int alsa_index = ~((1 << (SNDRV_CARDS - 3)) - 1); /* last three slots */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006436static char *alsa_id = "ThinkPadEC";
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306437static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006438
6439struct tpacpi_alsa_data {
6440 struct snd_card *card;
6441 struct snd_ctl_elem_id *ctl_mute_id;
6442 struct snd_ctl_elem_id *ctl_vol_id;
6443};
6444
6445static struct snd_card *alsa_card;
6446
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006447enum {
6448 TP_EC_AUDIO = 0x30,
6449
6450 /* TP_EC_AUDIO bits */
6451 TP_EC_AUDIO_MUTESW = 6,
6452
6453 /* TP_EC_AUDIO bitmasks */
6454 TP_EC_AUDIO_LVL_MSK = 0x0F,
6455 TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
6456
6457 /* Maximum volume */
6458 TP_EC_VOLUME_MAX = 14,
6459};
6460
6461enum tpacpi_volume_access_mode {
6462 TPACPI_VOL_MODE_AUTO = 0, /* Not implemented yet */
6463 TPACPI_VOL_MODE_EC, /* Pure EC control */
6464 TPACPI_VOL_MODE_UCMS_STEP, /* UCMS step-based control: N/A */
6465 TPACPI_VOL_MODE_ECNVRAM, /* EC control w/ NVRAM store */
6466 TPACPI_VOL_MODE_MAX
6467};
6468
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006469enum tpacpi_volume_capabilities {
6470 TPACPI_VOL_CAP_AUTO = 0, /* Use white/blacklist */
6471 TPACPI_VOL_CAP_VOLMUTE, /* Output vol and mute */
6472 TPACPI_VOL_CAP_MUTEONLY, /* Output mute only */
6473 TPACPI_VOL_CAP_MAX
6474};
6475
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006476static enum tpacpi_volume_access_mode volume_mode =
6477 TPACPI_VOL_MODE_MAX;
6478
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006479static enum tpacpi_volume_capabilities volume_capabilities;
Rusty Russell90ab5ee2012-01-13 09:32:20 +10306480static bool volume_control_allowed;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006481
6482/*
6483 * Used to syncronize writers to TP_EC_AUDIO and
6484 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
6485 */
6486static struct mutex volume_mutex;
6487
6488static void tpacpi_volume_checkpoint_nvram(void)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006489{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006490 u8 lec = 0;
6491 u8 b_nvram;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006492 u8 ec_mask;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006493
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006494 if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
6495 return;
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006496 if (!volume_control_allowed)
6497 return;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006498
6499 vdbg_printk(TPACPI_DBG_MIXER,
6500 "trying to checkpoint mixer state to NVRAM...\n");
6501
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006502 if (tp_features.mixer_no_level_control)
6503 ec_mask = TP_EC_AUDIO_MUTESW_MSK;
6504 else
6505 ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
6506
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006507 if (mutex_lock_killable(&volume_mutex) < 0)
6508 return;
6509
6510 if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
6511 goto unlock;
6512 lec &= ec_mask;
6513 b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
6514
6515 if (lec != (b_nvram & ec_mask)) {
6516 /* NVRAM needs update */
6517 b_nvram &= ~ec_mask;
6518 b_nvram |= lec;
6519 nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
6520 dbg_printk(TPACPI_DBG_MIXER,
6521 "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
6522 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006523 } else {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006524 vdbg_printk(TPACPI_DBG_MIXER,
6525 "NVRAM mixer status already is 0x%02x (0x%02x)\n",
6526 (unsigned int) lec, (unsigned int) b_nvram);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006527 }
6528
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006529unlock:
6530 mutex_unlock(&volume_mutex);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006531}
6532
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006533static int volume_get_status_ec(u8 *status)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006534{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006535 u8 s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006536
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006537 if (!acpi_ec_read(TP_EC_AUDIO, &s))
6538 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006539
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006540 *status = s;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006541
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006542 dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006543
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006544 return 0;
6545}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006546
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006547static int volume_get_status(u8 *status)
6548{
6549 return volume_get_status_ec(status);
6550}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006551
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006552static int volume_set_status_ec(const u8 status)
6553{
6554 if (!acpi_ec_write(TP_EC_AUDIO, status))
6555 return -EIO;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006556
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006557 dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
6558
6559 return 0;
6560}
6561
6562static int volume_set_status(const u8 status)
6563{
6564 return volume_set_status_ec(status);
6565}
6566
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006567/* returns < 0 on error, 0 on no change, 1 on change */
6568static int __volume_set_mute_ec(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006569{
6570 int rc;
6571 u8 s, n;
6572
6573 if (mutex_lock_killable(&volume_mutex) < 0)
6574 return -EINTR;
6575
6576 rc = volume_get_status_ec(&s);
6577 if (rc)
6578 goto unlock;
6579
6580 n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
6581 s & ~TP_EC_AUDIO_MUTESW_MSK;
6582
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006583 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006584 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006585 if (!rc)
6586 rc = 1;
6587 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006588
6589unlock:
6590 mutex_unlock(&volume_mutex);
6591 return rc;
6592}
6593
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006594static int volume_alsa_set_mute(const bool mute)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006595{
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006596 dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006597 (mute) ? "" : "un");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006598 return __volume_set_mute_ec(mute);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006599}
6600
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006601static int volume_set_mute(const bool mute)
6602{
6603 int rc;
6604
6605 dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
6606 (mute) ? "" : "un");
6607
6608 rc = __volume_set_mute_ec(mute);
6609 return (rc < 0) ? rc : 0;
6610}
6611
6612/* returns < 0 on error, 0 on no change, 1 on change */
6613static int __volume_set_volume_ec(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006614{
6615 int rc;
6616 u8 s, n;
6617
6618 if (vol > TP_EC_VOLUME_MAX)
6619 return -EINVAL;
6620
6621 if (mutex_lock_killable(&volume_mutex) < 0)
6622 return -EINTR;
6623
6624 rc = volume_get_status_ec(&s);
6625 if (rc)
6626 goto unlock;
6627
6628 n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
6629
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006630 if (n != s) {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006631 rc = volume_set_status_ec(n);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006632 if (!rc)
6633 rc = 1;
6634 }
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006635
6636unlock:
6637 mutex_unlock(&volume_mutex);
6638 return rc;
6639}
6640
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006641static int volume_alsa_set_volume(const u8 vol)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006642{
6643 dbg_printk(TPACPI_DBG_MIXER,
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006644 "ALSA: trying to set volume level to %hu\n", vol);
6645 return __volume_set_volume_ec(vol);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006646}
6647
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006648static void volume_alsa_notify_change(void)
6649{
6650 struct tpacpi_alsa_data *d;
6651
6652 if (alsa_card && alsa_card->private_data) {
6653 d = alsa_card->private_data;
6654 if (d->ctl_mute_id)
6655 snd_ctl_notify(alsa_card,
6656 SNDRV_CTL_EVENT_MASK_VALUE,
6657 d->ctl_mute_id);
6658 if (d->ctl_vol_id)
6659 snd_ctl_notify(alsa_card,
6660 SNDRV_CTL_EVENT_MASK_VALUE,
6661 d->ctl_vol_id);
6662 }
6663}
6664
6665static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
6666 struct snd_ctl_elem_info *uinfo)
6667{
6668 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
6669 uinfo->count = 1;
6670 uinfo->value.integer.min = 0;
6671 uinfo->value.integer.max = TP_EC_VOLUME_MAX;
6672 return 0;
6673}
6674
6675static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
6676 struct snd_ctl_elem_value *ucontrol)
6677{
6678 u8 s;
6679 int rc;
6680
6681 rc = volume_get_status(&s);
6682 if (rc < 0)
6683 return rc;
6684
6685 ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
6686 return 0;
6687}
6688
6689static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
6690 struct snd_ctl_elem_value *ucontrol)
6691{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03006692 tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
6693 ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006694 return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006695}
6696
6697#define volume_alsa_mute_info snd_ctl_boolean_mono_info
6698
6699static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
6700 struct snd_ctl_elem_value *ucontrol)
6701{
6702 u8 s;
6703 int rc;
6704
6705 rc = volume_get_status(&s);
6706 if (rc < 0)
6707 return rc;
6708
6709 ucontrol->value.integer.value[0] =
6710 (s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
6711 return 0;
6712}
6713
6714static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
6715 struct snd_ctl_elem_value *ucontrol)
6716{
Henrique de Moraes Holschuh38e11cd2010-05-16 19:45:40 -03006717 tpacpi_disclose_usertask("ALSA", "%smute\n",
6718 ucontrol->value.integer.value[0] ?
6719 "un" : "");
Henrique de Moraes Holschuh88cc8372010-02-27 18:45:29 -03006720 return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006721}
6722
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08006723static struct snd_kcontrol_new volume_alsa_control_vol = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006724 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6725 .name = "Console Playback Volume",
6726 .index = 0,
6727 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6728 .info = volume_alsa_vol_info,
6729 .get = volume_alsa_vol_get,
6730};
6731
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08006732static struct snd_kcontrol_new volume_alsa_control_mute = {
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006733 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6734 .name = "Console Playback Switch",
6735 .index = 0,
6736 .access = SNDRV_CTL_ELEM_ACCESS_READ,
6737 .info = volume_alsa_mute_info,
6738 .get = volume_alsa_mute_get,
6739};
6740
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02006741static void volume_suspend(void)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006742{
6743 tpacpi_volume_checkpoint_nvram();
6744}
6745
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006746static void volume_resume(void)
6747{
6748 volume_alsa_notify_change();
6749}
6750
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006751static void volume_shutdown(void)
6752{
6753 tpacpi_volume_checkpoint_nvram();
6754}
6755
6756static void volume_exit(void)
6757{
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006758 if (alsa_card) {
6759 snd_card_free(alsa_card);
6760 alsa_card = NULL;
6761 }
6762
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006763 tpacpi_volume_checkpoint_nvram();
6764}
6765
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006766static int __init volume_create_alsa_mixer(void)
6767{
6768 struct snd_card *card;
6769 struct tpacpi_alsa_data *data;
6770 struct snd_kcontrol *ctl_vol;
6771 struct snd_kcontrol *ctl_mute;
6772 int rc;
6773
6774 rc = snd_card_create(alsa_index, alsa_id, THIS_MODULE,
6775 sizeof(struct tpacpi_alsa_data), &card);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006776 if (rc < 0 || !card) {
Joe Perches0978e012011-04-04 10:06:25 -07006777 pr_err("Failed to create ALSA card structures: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006778 return 1;
6779 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006780
6781 BUG_ON(!card->private_data);
6782 data = card->private_data;
6783 data->card = card;
6784
6785 strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
6786 sizeof(card->driver));
6787 strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
6788 sizeof(card->shortname));
6789 snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
6790 (thinkpad_id.ec_version_str) ?
6791 thinkpad_id.ec_version_str : "(unknown)");
6792 snprintf(card->longname, sizeof(card->longname),
6793 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
6794 (thinkpad_id.ec_version_str) ?
6795 thinkpad_id.ec_version_str : "unknown");
6796
6797 if (volume_control_allowed) {
6798 volume_alsa_control_vol.put = volume_alsa_vol_put;
6799 volume_alsa_control_vol.access =
6800 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6801
6802 volume_alsa_control_mute.put = volume_alsa_mute_put;
6803 volume_alsa_control_mute.access =
6804 SNDRV_CTL_ELEM_ACCESS_READWRITE;
6805 }
6806
6807 if (!tp_features.mixer_no_level_control) {
6808 ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
6809 rc = snd_ctl_add(card, ctl_vol);
6810 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006811 pr_err("Failed to create ALSA volume control: %d\n",
6812 rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006813 goto err_exit;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006814 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006815 data->ctl_vol_id = &ctl_vol->id;
6816 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006817
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006818 ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
6819 rc = snd_ctl_add(card, ctl_mute);
6820 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006821 pr_err("Failed to create ALSA mute control: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006822 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006823 }
6824 data->ctl_mute_id = &ctl_mute->id;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02006825
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006826 snd_card_set_dev(card, &tpacpi_pdev->dev);
6827 rc = snd_card_register(card);
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006828 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07006829 pr_err("Failed to register ALSA card: %d\n", rc);
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006830 goto err_exit;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006831 }
6832
6833 alsa_card = card;
Henrique de Moraes Holschuh74c75c12009-12-26 22:52:14 -02006834 return 0;
6835
6836err_exit:
6837 snd_card_free(card);
6838 return 1;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006839}
6840
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006841#define TPACPI_VOL_Q_MUTEONLY 0x0001 /* Mute-only control available */
6842#define TPACPI_VOL_Q_LEVEL 0x0002 /* Volume control available */
6843
6844static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
6845 /* Whitelist volume level on all IBM by default */
6846 { .vendor = PCI_VENDOR_ID_IBM,
6847 .bios = TPACPI_MATCH_ANY,
6848 .ec = TPACPI_MATCH_ANY,
6849 .quirks = TPACPI_VOL_Q_LEVEL },
6850
6851 /* Lenovo models with volume control (needs confirmation) */
6852 TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
6853 TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
6854 TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
6855 TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
6856 TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
6857 TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
6858 TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
6859
6860 /* Whitelist mute-only on all Lenovo by default */
6861 { .vendor = PCI_VENDOR_ID_LENOVO,
6862 .bios = TPACPI_MATCH_ANY,
6863 .ec = TPACPI_MATCH_ANY,
6864 .quirks = TPACPI_VOL_Q_MUTEONLY }
6865};
6866
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006867static int __init volume_init(struct ibm_init_struct *iibm)
6868{
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006869 unsigned long quirks;
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006870 int rc;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006871
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006872 vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
6873
6874 mutex_init(&volume_mutex);
6875
6876 /*
6877 * Check for module parameter bogosity, note that we
6878 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
6879 * able to detect "unspecified"
6880 */
6881 if (volume_mode > TPACPI_VOL_MODE_MAX)
6882 return -EINVAL;
6883
6884 if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
Joe Perches0978e012011-04-04 10:06:25 -07006885 pr_err("UCMS step volume mode not implemented, "
6886 "please contact %s\n", TPACPI_MAIL);
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006887 return 1;
6888 }
6889
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006890 if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
6891 return -EINVAL;
6892
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006893 /*
6894 * The ALSA mixer is our primary interface.
6895 * When disabled, don't install the subdriver at all
6896 */
6897 if (!alsa_enable) {
6898 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6899 "ALSA mixer disabled by parameter, "
6900 "not loading volume subdriver...\n");
6901 return 1;
6902 }
6903
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006904 quirks = tpacpi_check_quirks(volume_quirk_table,
6905 ARRAY_SIZE(volume_quirk_table));
6906
6907 switch (volume_capabilities) {
6908 case TPACPI_VOL_CAP_AUTO:
6909 if (quirks & TPACPI_VOL_Q_MUTEONLY)
6910 tp_features.mixer_no_level_control = 1;
6911 else if (quirks & TPACPI_VOL_Q_LEVEL)
6912 tp_features.mixer_no_level_control = 0;
6913 else
6914 return 1; /* no mixer */
6915 break;
6916 case TPACPI_VOL_CAP_VOLMUTE:
6917 tp_features.mixer_no_level_control = 0;
6918 break;
6919 case TPACPI_VOL_CAP_MUTEONLY:
6920 tp_features.mixer_no_level_control = 1;
6921 break;
6922 default:
6923 return 1;
6924 }
6925
6926 if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
6927 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6928 "using user-supplied volume_capabilities=%d\n",
6929 volume_capabilities);
6930
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006931 if (volume_mode == TPACPI_VOL_MODE_AUTO ||
6932 volume_mode == TPACPI_VOL_MODE_MAX) {
6933 volume_mode = TPACPI_VOL_MODE_ECNVRAM;
6934
6935 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6936 "driver auto-selected volume_mode=%d\n",
6937 volume_mode);
6938 } else {
6939 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6940 "using user-supplied volume_mode=%d\n",
6941 volume_mode);
6942 }
6943
6944 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006945 "mute is supported, volume control is %s\n",
6946 str_supported(!tp_features.mixer_no_level_control));
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006947
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006948 rc = volume_create_alsa_mixer();
6949 if (rc) {
Joe Perches0978e012011-04-04 10:06:25 -07006950 pr_err("Could not create the ALSA mixer interface\n");
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006951 return rc;
6952 }
6953
Joe Perches0978e012011-04-04 10:06:25 -07006954 pr_info("Console audio control enabled, mode: %s\n",
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006955 (volume_control_allowed) ?
6956 "override (read/write)" :
6957 "monitor (read only)");
6958
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02006959 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
6960 "registering volume hotkeys as change notification\n");
6961 tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
6962 | TP_ACPI_HKEY_VOLUP_MASK
6963 | TP_ACPI_HKEY_VOLDWN_MASK
6964 | TP_ACPI_HKEY_MUTE_MASK);
6965
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006966 return 0;
6967}
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006968
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006969static int volume_read(struct seq_file *m)
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006970{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006971 u8 status;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006972
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006973 if (volume_get_status(&status) < 0) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006974 seq_printf(m, "level:\t\tunreadable\n");
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006975 } else {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006976 if (tp_features.mixer_no_level_control)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006977 seq_printf(m, "level:\t\tunsupported\n");
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006978 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006979 seq_printf(m, "level:\t\t%d\n",
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006980 status & TP_EC_AUDIO_LVL_MSK);
6981
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006982 seq_printf(m, "mute:\t\t%s\n",
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02006983 onoff(status, TP_EC_AUDIO_MUTESW));
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02006984
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006985 if (volume_control_allowed) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006986 seq_printf(m, "commands:\tunmute, mute\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006987 if (!tp_features.mixer_no_level_control) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006988 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006989 "commands:\tup, down\n");
Alexey Dobriyan887965e2009-12-15 21:51:12 -02006990 seq_printf(m,
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02006991 "commands:\tlevel <level>"
6992 " (<level> is 0-%d)\n",
6993 TP_EC_VOLUME_MAX);
6994 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04006995 }
6996 }
6997
6998 return 0;
6999}
7000
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007001static int volume_write(char *buf)
7002{
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007003 u8 s;
7004 u8 new_level, new_mute;
7005 int l;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007006 char *cmd;
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007007 int rc;
7008
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007009 /*
7010 * We do allow volume control at driver startup, so that the
7011 * user can set initial state through the volume=... parameter hack.
7012 */
7013 if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
7014 if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
7015 tp_warned.volume_ctrl_forbidden = 1;
Joe Perches0978e012011-04-04 10:06:25 -07007016 pr_notice("Console audio control in monitor mode, "
7017 "changes are not allowed\n");
7018 pr_notice("Use the volume_control=1 module parameter "
7019 "to enable volume control\n");
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02007020 }
7021 return -EPERM;
7022 }
7023
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007024 rc = volume_get_status(&s);
7025 if (rc < 0)
7026 return rc;
7027
7028 new_level = s & TP_EC_AUDIO_LVL_MSK;
7029 new_mute = s & TP_EC_AUDIO_MUTESW_MSK;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007030
7031 while ((cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007032 if (!tp_features.mixer_no_level_control) {
7033 if (strlencmp(cmd, "up") == 0) {
7034 if (new_mute)
7035 new_mute = 0;
7036 else if (new_level < TP_EC_VOLUME_MAX)
7037 new_level++;
7038 continue;
7039 } else if (strlencmp(cmd, "down") == 0) {
7040 if (new_mute)
7041 new_mute = 0;
7042 else if (new_level > 0)
7043 new_level--;
7044 continue;
7045 } else if (sscanf(cmd, "level %u", &l) == 1 &&
7046 l >= 0 && l <= TP_EC_VOLUME_MAX) {
7047 new_level = l;
7048 continue;
7049 }
7050 }
7051 if (strlencmp(cmd, "mute") == 0)
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007052 new_mute = TP_EC_AUDIO_MUTESW_MSK;
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007053 else if (strlencmp(cmd, "unmute") == 0)
7054 new_mute = 0;
7055 else
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007056 return -EINVAL;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007057 }
7058
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02007059 if (tp_features.mixer_no_level_control) {
7060 tpacpi_disclose_usertask("procfs volume", "%smute\n",
7061 new_mute ? "" : "un");
7062 rc = volume_set_mute(!!new_mute);
7063 } else {
7064 tpacpi_disclose_usertask("procfs volume",
7065 "%smute and set level to %d\n",
7066 new_mute ? "" : "un", new_level);
7067 rc = volume_set_status(new_mute | new_level);
7068 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007069 volume_alsa_notify_change();
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007070
7071 return (rc == -EINTR) ? -ERESTARTSYS : rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04007072}
7073
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007074static struct ibm_struct volume_driver_data = {
7075 .name = "volume",
7076 .read = volume_read,
7077 .write = volume_write,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007078 .exit = volume_exit,
7079 .suspend = volume_suspend,
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02007080 .resume = volume_resume,
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02007081 .shutdown = volume_shutdown,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007082};
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007083
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007084#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7085
7086#define alsa_card NULL
7087
7088static void inline volume_alsa_notify_change(void)
7089{
7090}
7091
7092static int __init volume_init(struct ibm_init_struct *iibm)
7093{
Joe Perches0978e012011-04-04 10:06:25 -07007094 pr_info("volume: disabled as there is no ALSA support in this kernel\n");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02007095
7096 return 1;
7097}
7098
7099static struct ibm_struct volume_driver_data = {
7100 .name = "volume",
7101};
7102
7103#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
7104
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007105/*************************************************************************
7106 * Fan subdriver
7107 */
7108
7109/*
7110 * FAN ACCESS MODES
7111 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007112 * TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007113 * ACPI GFAN method: returns fan level
7114 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007115 * see TPACPI_FAN_WR_ACPI_SFAN
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007116 * EC 0x2f (HFSP) not available if GFAN exists
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007117 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007118 * TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007119 * ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
7120 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007121 * EC 0x2f (HFSP) might be available *for reading*, but do not use
7122 * it for writing.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007123 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007124 * TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007125 * ThinkPad EC register 0x2f (HFSP): fan control loop mode
7126 * Supported on almost all ThinkPads
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007127 *
7128 * Fan speed changes of any sort (including those caused by the
7129 * disengaged mode) are usually done slowly by the firmware as the
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01007130 * maximum amount of fan duty cycle change per second seems to be
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007131 * limited.
7132 *
7133 * Reading is not available if GFAN exists.
7134 * Writing is not available if SFAN exists.
7135 *
7136 * Bits
7137 * 7 automatic mode engaged;
7138 * (default operation mode of the ThinkPad)
7139 * fan level is ignored in this mode.
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007140 * 6 full speed mode (takes precedence over bit 7);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007141 * not available on all thinkpads. May disable
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007142 * the tachometer while the fan controller ramps up
7143 * the speed (which can take up to a few *minutes*).
7144 * Speeds up fan to 100% duty-cycle, which is far above
7145 * the standard RPM levels. It is not impossible that
7146 * it could cause hardware damage.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007147 * 5-3 unused in some models. Extra bits for fan level
7148 * in others, but still useless as all values above
7149 * 7 map to the same speed as level 7 in these models.
7150 * 2-0 fan level (0..7 usually)
7151 * 0x00 = stop
7152 * 0x07 = max (set when temperatures critical)
7153 * Some ThinkPads may have other levels, see
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007154 * TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007155 *
7156 * FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007157 * boot. Apparently the EC does not initialize it, so unless ACPI DSDT
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007158 * does so, its initial value is meaningless (0x07).
7159 *
7160 * For firmware bugs, refer to:
7161 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7162 *
7163 * ----
7164 *
7165 * ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
7166 * Main fan tachometer reading (in RPM)
7167 *
7168 * This register is present on all ThinkPads with a new-style EC, and
7169 * it is known not to be present on the A21m/e, and T22, as there is
7170 * something else in offset 0x84 according to the ACPI DSDT. Other
7171 * ThinkPads from this same time period (and earlier) probably lack the
7172 * tachometer as well.
7173 *
Nick Andrew877d0312009-01-26 11:06:57 +01007174 * Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007175 * was never fixed by IBM to report the EC firmware version string
7176 * probably support the tachometer (like the early X models), so
7177 * detecting it is quite hard. We need more data to know for sure.
7178 *
7179 * FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
7180 * might result.
7181 *
Henrique de Moraes Holschuhf51d1a32007-04-21 11:08:29 -03007182 * FIRMWARE BUG: may go stale while the EC is switching to full speed
7183 * mode.
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007184 *
7185 * For firmware bugs, refer to:
7186 * http://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
7187 *
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007188 * ----
7189 *
7190 * ThinkPad EC register 0x31 bit 0 (only on select models)
7191 *
7192 * When bit 0 of EC register 0x31 is zero, the tachometer registers
7193 * show the speed of the main fan. When bit 0 of EC register 0x31
7194 * is one, the tachometer registers show the speed of the auxiliary
7195 * fan.
7196 *
7197 * Fan control seems to affect both fans, regardless of the state
7198 * of this bit.
7199 *
7200 * So far, only the firmware for the X60/X61 non-tablet versions
7201 * seem to support this (firmware TP-7M).
7202 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007203 * TPACPI_FAN_WR_ACPI_FANS:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007204 * ThinkPad X31, X40, X41. Not available in the X60.
7205 *
7206 * FANS ACPI handle: takes three arguments: low speed, medium speed,
7207 * high speed. ACPI DSDT seems to map these three speeds to levels
7208 * as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
7209 * (this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
7210 *
7211 * The speeds are stored on handles
7212 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).
7213 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02007214 * There are three default speed sets, accessible as handles:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007215 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
7216 *
7217 * ACPI DSDT switches which set is in use depending on various
7218 * factors.
7219 *
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007220 * TPACPI_FAN_WR_TPEC is also available and should be used to
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007221 * command the fan. The X31/X40/X41 seems to have 8 fan levels,
7222 * but the ACPI tables just mention level 7.
7223 */
7224
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007225enum { /* Fan control constants */
7226 fan_status_offset = 0x2f, /* EC register 0x2f */
7227 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
7228 * 0x84 must be read before 0x85 */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007229 fan_select_offset = 0x31, /* EC register 0x31 (Firmware 7M)
7230 bit 0 selects which fan is active */
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007231
7232 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
7233 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
7234
7235 TPACPI_FAN_LAST_LEVEL = 0x100, /* Use cached last-seen fan level */
7236};
7237
7238enum fan_status_access_mode {
7239 TPACPI_FAN_NONE = 0, /* No fan status or control */
7240 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
7241 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
7242};
7243
7244enum fan_control_access_mode {
7245 TPACPI_FAN_WR_NONE = 0, /* No fan control */
7246 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
7247 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
7248 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
7249};
7250
7251enum fan_control_commands {
7252 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
7253 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
7254 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
7255 * and also watchdog cmd */
7256};
7257
Rusty Russell90ab5ee2012-01-13 09:32:20 +10307258static bool fan_control_allowed;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007259
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007260static enum fan_status_access_mode fan_status_access_mode;
7261static enum fan_control_access_mode fan_control_access_mode;
7262static enum fan_control_commands fan_control_commands;
7263
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007264static u8 fan_control_initial_status;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007265static u8 fan_control_desired_level;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007266static u8 fan_control_resume_level;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007267static int fan_watchdog_maxinterval;
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007268
7269static struct mutex fan_mutex;
7270
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02007271static void fan_watchdog_fire(struct work_struct *ignored);
Len Brown25c68a32006-12-08 04:43:41 -05007272static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007273
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007274TPACPI_HANDLE(fans, ec, "FANS"); /* X31, X40, X41 */
7275TPACPI_HANDLE(gfan, ec, "GFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007276 "\\FSPD", /* 600e/x, 770e, 770x */
7277 ); /* all others */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02007278TPACPI_HANDLE(sfan, ec, "SFAN", /* 570 */
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03007279 "JFNS", /* 770x-JL */
7280 ); /* all others */
7281
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007282/*
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007283 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
7284 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
7285 * be in auto mode (0x80).
7286 *
7287 * This is corrected by any write to HFSP either by the driver, or
7288 * by the firmware.
7289 *
7290 * We assume 0x07 really means auto mode while this quirk is active,
7291 * as this is far more likely than the ThinkPad being in level 7,
7292 * which is only used by the firmware during thermal emergencies.
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007293 *
7294 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
7295 * TP-70 (T43, R52), which are known to be buggy.
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007296 */
7297
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007298static void fan_quirk1_setup(void)
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007299{
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007300 if (fan_control_initial_status == 0x07) {
Joe Perches0978e012011-04-04 10:06:25 -07007301 pr_notice("fan_init: initial fan status is unknown, "
7302 "assuming it is in auto mode\n");
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007303 tp_features.fan_ctrl_status_undef = 1;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007304 }
7305}
7306
7307static void fan_quirk1_handle(u8 *fan_status)
7308{
7309 if (unlikely(tp_features.fan_ctrl_status_undef)) {
7310 if (*fan_status != fan_control_initial_status) {
7311 /* something changed the HFSP regisnter since
7312 * driver init time, so it is not undefined
7313 * anymore */
7314 tp_features.fan_ctrl_status_undef = 0;
7315 } else {
7316 /* Return most likely status. In fact, it
7317 * might be the only possible status */
7318 *fan_status = TP_EC_FAN_AUTO;
7319 }
7320 }
7321}
7322
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007323/* Select main fan on X60/X61, NOOP on others */
7324static bool fan_select_fan1(void)
7325{
7326 if (tp_features.second_fan) {
7327 u8 val;
7328
7329 if (ec_read(fan_select_offset, &val) < 0)
7330 return false;
7331 val &= 0xFEU;
7332 if (ec_write(fan_select_offset, val) < 0)
7333 return false;
7334 }
7335 return true;
7336}
7337
7338/* Select secondary fan on X60/X61 */
7339static bool fan_select_fan2(void)
7340{
7341 u8 val;
7342
7343 if (!tp_features.second_fan)
7344 return false;
7345
7346 if (ec_read(fan_select_offset, &val) < 0)
7347 return false;
7348 val |= 0x01U;
7349 if (ec_write(fan_select_offset, val) < 0)
7350 return false;
7351
7352 return true;
7353}
7354
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007355/*
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007356 * Call with fan_mutex held
7357 */
7358static void fan_update_desired_level(u8 status)
7359{
7360 if ((status &
7361 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7362 if (status > 7)
7363 fan_control_desired_level = 7;
7364 else
7365 fan_control_desired_level = status;
7366 }
7367}
7368
7369static int fan_get_status(u8 *status)
7370{
7371 u8 s;
7372
7373 /* TODO:
7374 * Add TPACPI_FAN_RD_ACPI_FANS ? */
7375
7376 switch (fan_status_access_mode) {
Dan Carpentereceeb432012-09-01 12:54:07 -07007377 case TPACPI_FAN_RD_ACPI_GFAN: {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007378 /* 570, 600e/x, 770e, 770x */
Dan Carpentereceeb432012-09-01 12:54:07 -07007379 int res;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007380
Dan Carpentereceeb432012-09-01 12:54:07 -07007381 if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007382 return -EIO;
7383
7384 if (likely(status))
Dan Carpentereceeb432012-09-01 12:54:07 -07007385 *status = res & 0x07;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007386
7387 break;
Dan Carpentereceeb432012-09-01 12:54:07 -07007388 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007389 case TPACPI_FAN_RD_TPEC:
7390 /* all except 570, 600e/x, 770e, 770x */
7391 if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
7392 return -EIO;
7393
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007394 if (likely(status)) {
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007395 *status = s;
Henrique de Moraes Holschuh1c2ece72009-01-11 03:01:08 -02007396 fan_quirk1_handle(status);
7397 }
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007398
7399 break;
7400
7401 default:
7402 return -ENXIO;
7403 }
7404
7405 return 0;
7406}
7407
7408static int fan_get_status_safe(u8 *status)
7409{
7410 int rc;
7411 u8 s;
7412
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007413 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007414 return -ERESTARTSYS;
7415 rc = fan_get_status(&s);
7416 if (!rc)
7417 fan_update_desired_level(s);
7418 mutex_unlock(&fan_mutex);
7419
7420 if (status)
7421 *status = s;
7422
7423 return rc;
7424}
7425
7426static int fan_get_speed(unsigned int *speed)
7427{
7428 u8 hi, lo;
7429
7430 switch (fan_status_access_mode) {
7431 case TPACPI_FAN_RD_TPEC:
7432 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007433 if (unlikely(!fan_select_fan1()))
7434 return -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007435 if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
7436 !acpi_ec_read(fan_rpm_offset + 1, &hi)))
7437 return -EIO;
7438
7439 if (likely(speed))
7440 *speed = (hi << 8) | lo;
7441
7442 break;
7443
7444 default:
7445 return -ENXIO;
7446 }
7447
7448 return 0;
7449}
7450
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007451static int fan2_get_speed(unsigned int *speed)
7452{
7453 u8 hi, lo;
7454 bool rc;
7455
7456 switch (fan_status_access_mode) {
7457 case TPACPI_FAN_RD_TPEC:
7458 /* all except 570, 600e/x, 770e, 770x */
7459 if (unlikely(!fan_select_fan2()))
7460 return -EIO;
7461 rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
7462 !acpi_ec_read(fan_rpm_offset + 1, &hi);
7463 fan_select_fan1(); /* play it safe */
7464 if (rc)
7465 return -EIO;
7466
7467 if (likely(speed))
7468 *speed = (hi << 8) | lo;
7469
7470 break;
7471
7472 default:
7473 return -ENXIO;
7474 }
7475
7476 return 0;
7477}
7478
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007479static int fan_set_level(int level)
7480{
7481 if (!fan_control_allowed)
7482 return -EPERM;
7483
7484 switch (fan_control_access_mode) {
7485 case TPACPI_FAN_WR_ACPI_SFAN:
7486 if (level >= 0 && level <= 7) {
7487 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
7488 return -EIO;
7489 } else
7490 return -EINVAL;
7491 break;
7492
7493 case TPACPI_FAN_WR_ACPI_FANS:
7494 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02007495 if (!(level & TP_EC_FAN_AUTO) &&
7496 !(level & TP_EC_FAN_FULLSPEED) &&
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007497 ((level < 0) || (level > 7)))
7498 return -EINVAL;
7499
7500 /* safety net should the EC not support AUTO
7501 * or FULLSPEED mode bits and just ignore them */
7502 if (level & TP_EC_FAN_FULLSPEED)
7503 level |= 7; /* safety min speed 7 */
Roel Kluin547266e2008-02-05 00:24:56 +01007504 else if (level & TP_EC_FAN_AUTO)
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007505 level |= 4; /* safety min speed 4 */
7506
7507 if (!acpi_ec_write(fan_status_offset, level))
7508 return -EIO;
7509 else
7510 tp_features.fan_ctrl_status_undef = 0;
7511 break;
7512
7513 default:
7514 return -ENXIO;
7515 }
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007516
7517 vdbg_printk(TPACPI_DBG_FAN,
7518 "fan control: set fan control register to 0x%02x\n", level);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007519 return 0;
7520}
7521
7522static int fan_set_level_safe(int level)
7523{
7524 int rc;
7525
7526 if (!fan_control_allowed)
7527 return -EPERM;
7528
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007529 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007530 return -ERESTARTSYS;
7531
7532 if (level == TPACPI_FAN_LAST_LEVEL)
7533 level = fan_control_desired_level;
7534
7535 rc = fan_set_level(level);
7536 if (!rc)
7537 fan_update_desired_level(level);
7538
7539 mutex_unlock(&fan_mutex);
7540 return rc;
7541}
7542
7543static int fan_set_enable(void)
7544{
7545 u8 s;
7546 int rc;
7547
7548 if (!fan_control_allowed)
7549 return -EPERM;
7550
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007551 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007552 return -ERESTARTSYS;
7553
7554 switch (fan_control_access_mode) {
7555 case TPACPI_FAN_WR_ACPI_FANS:
7556 case TPACPI_FAN_WR_TPEC:
7557 rc = fan_get_status(&s);
7558 if (rc < 0)
7559 break;
7560
7561 /* Don't go out of emergency fan mode */
7562 if (s != 7) {
7563 s &= 0x07;
7564 s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
7565 }
7566
7567 if (!acpi_ec_write(fan_status_offset, s))
7568 rc = -EIO;
7569 else {
7570 tp_features.fan_ctrl_status_undef = 0;
7571 rc = 0;
7572 }
7573 break;
7574
7575 case TPACPI_FAN_WR_ACPI_SFAN:
7576 rc = fan_get_status(&s);
7577 if (rc < 0)
7578 break;
7579
7580 s &= 0x07;
7581
7582 /* Set fan to at least level 4 */
7583 s |= 4;
7584
7585 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02007586 rc = -EIO;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007587 else
7588 rc = 0;
7589 break;
7590
7591 default:
7592 rc = -ENXIO;
7593 }
7594
7595 mutex_unlock(&fan_mutex);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007596
7597 if (!rc)
7598 vdbg_printk(TPACPI_DBG_FAN,
7599 "fan control: set fan control register to 0x%02x\n",
7600 s);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007601 return rc;
7602}
7603
7604static int fan_set_disable(void)
7605{
7606 int rc;
7607
7608 if (!fan_control_allowed)
7609 return -EPERM;
7610
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007611 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007612 return -ERESTARTSYS;
7613
7614 rc = 0;
7615 switch (fan_control_access_mode) {
7616 case TPACPI_FAN_WR_ACPI_FANS:
7617 case TPACPI_FAN_WR_TPEC:
7618 if (!acpi_ec_write(fan_status_offset, 0x00))
7619 rc = -EIO;
7620 else {
7621 fan_control_desired_level = 0;
7622 tp_features.fan_ctrl_status_undef = 0;
7623 }
7624 break;
7625
7626 case TPACPI_FAN_WR_ACPI_SFAN:
7627 if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
7628 rc = -EIO;
7629 else
7630 fan_control_desired_level = 0;
7631 break;
7632
7633 default:
7634 rc = -ENXIO;
7635 }
7636
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007637 if (!rc)
7638 vdbg_printk(TPACPI_DBG_FAN,
7639 "fan control: set fan control register to 0\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007640
7641 mutex_unlock(&fan_mutex);
7642 return rc;
7643}
7644
7645static int fan_set_speed(int speed)
7646{
7647 int rc;
7648
7649 if (!fan_control_allowed)
7650 return -EPERM;
7651
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007652 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007653 return -ERESTARTSYS;
7654
7655 rc = 0;
7656 switch (fan_control_access_mode) {
7657 case TPACPI_FAN_WR_ACPI_FANS:
7658 if (speed >= 0 && speed <= 65535) {
7659 if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
7660 speed, speed, speed))
7661 rc = -EIO;
7662 } else
7663 rc = -EINVAL;
7664 break;
7665
7666 default:
7667 rc = -ENXIO;
7668 }
7669
7670 mutex_unlock(&fan_mutex);
7671 return rc;
7672}
7673
7674static void fan_watchdog_reset(void)
7675{
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007676 if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
7677 return;
7678
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007679 if (fan_watchdog_maxinterval > 0 &&
Tejun Heo41f63c52012-08-03 10:30:47 -07007680 tpacpi_lifecycle != TPACPI_LIFE_EXITING)
7681 mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
7682 msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
7683 else
7684 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007685}
7686
7687static void fan_watchdog_fire(struct work_struct *ignored)
7688{
7689 int rc;
7690
7691 if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
7692 return;
7693
Joe Perches0978e012011-04-04 10:06:25 -07007694 pr_notice("fan watchdog: enabling fan\n");
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007695 rc = fan_set_enable();
7696 if (rc < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07007697 pr_err("fan watchdog: error %d while enabling fan, "
7698 "will try again later...\n", -rc);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02007699 /* reschedule for later */
7700 fan_watchdog_reset();
7701 }
7702}
7703
7704/*
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007705 * SYSFS fan layout: hwmon compatible (device)
7706 *
7707 * pwm*_enable:
7708 * 0: "disengaged" mode
7709 * 1: manual mode
7710 * 2: native EC "auto" mode (recommended, hardware default)
7711 *
7712 * pwm*: set speed in manual mode, ignored otherwise.
7713 * 0 is level 0; 255 is level 7. Intermediate points done with linear
7714 * interpolation.
7715 *
7716 * fan*_input: tachometer reading, RPM
7717 *
7718 *
7719 * SYSFS fan layout: extensions
7720 *
7721 * fan_watchdog (driver):
7722 * fan watchdog interval in seconds, 0 disables (default), max 120
7723 */
7724
7725/* sysfs fan pwm1_enable ----------------------------------------------- */
7726static ssize_t fan_pwm1_enable_show(struct device *dev,
7727 struct device_attribute *attr,
7728 char *buf)
7729{
7730 int res, mode;
7731 u8 status;
7732
7733 res = fan_get_status_safe(&status);
7734 if (res)
7735 return res;
7736
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007737 if (status & TP_EC_FAN_FULLSPEED) {
7738 mode = 0;
7739 } else if (status & TP_EC_FAN_AUTO) {
7740 mode = 2;
7741 } else
7742 mode = 1;
7743
7744 return snprintf(buf, PAGE_SIZE, "%d\n", mode);
7745}
7746
7747static ssize_t fan_pwm1_enable_store(struct device *dev,
7748 struct device_attribute *attr,
7749 const char *buf, size_t count)
7750{
7751 unsigned long t;
7752 int res, level;
7753
7754 if (parse_strtoul(buf, 2, &t))
7755 return -EINVAL;
7756
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007757 tpacpi_disclose_usertask("hwmon pwm1_enable",
7758 "set fan mode to %lu\n", t);
7759
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007760 switch (t) {
7761 case 0:
7762 level = TP_EC_FAN_FULLSPEED;
7763 break;
7764 case 1:
7765 level = TPACPI_FAN_LAST_LEVEL;
7766 break;
7767 case 2:
7768 level = TP_EC_FAN_AUTO;
7769 break;
7770 case 3:
7771 /* reserved for software-controlled auto mode */
7772 return -ENOSYS;
7773 default:
7774 return -EINVAL;
7775 }
7776
7777 res = fan_set_level_safe(level);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007778 if (res == -ENXIO)
7779 return -EINVAL;
7780 else if (res < 0)
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007781 return res;
7782
7783 fan_watchdog_reset();
7784
7785 return count;
7786}
7787
7788static struct device_attribute dev_attr_fan_pwm1_enable =
7789 __ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
7790 fan_pwm1_enable_show, fan_pwm1_enable_store);
7791
7792/* sysfs fan pwm1 ------------------------------------------------------ */
7793static ssize_t fan_pwm1_show(struct device *dev,
7794 struct device_attribute *attr,
7795 char *buf)
7796{
7797 int res;
7798 u8 status;
7799
7800 res = fan_get_status_safe(&status);
7801 if (res)
7802 return res;
7803
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007804 if ((status &
7805 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
7806 status = fan_control_desired_level;
7807
7808 if (status > 7)
7809 status = 7;
7810
7811 return snprintf(buf, PAGE_SIZE, "%u\n", (status * 255) / 7);
7812}
7813
7814static ssize_t fan_pwm1_store(struct device *dev,
7815 struct device_attribute *attr,
7816 const char *buf, size_t count)
7817{
7818 unsigned long s;
7819 int rc;
7820 u8 status, newlevel;
7821
7822 if (parse_strtoul(buf, 255, &s))
7823 return -EINVAL;
7824
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007825 tpacpi_disclose_usertask("hwmon pwm1",
7826 "set fan speed to %lu\n", s);
7827
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007828 /* scale down from 0-255 to 0-7 */
7829 newlevel = (s >> 5) & 0x07;
7830
Henrique de Moraes Holschuh7646ea82009-01-11 03:01:04 -02007831 if (mutex_lock_killable(&fan_mutex))
Henrique de Moraes Holschuhfc589a32007-10-30 17:46:24 -02007832 return -ERESTARTSYS;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007833
7834 rc = fan_get_status(&status);
7835 if (!rc && (status &
7836 (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
7837 rc = fan_set_level(newlevel);
Henrique de Moraes Holschuhc573ddb2007-04-27 22:00:12 -03007838 if (rc == -ENXIO)
7839 rc = -EINVAL;
7840 else if (!rc) {
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007841 fan_update_desired_level(newlevel);
Henrique de Moraes Holschuhca4ac2f2007-04-27 22:00:11 -03007842 fan_watchdog_reset();
7843 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007844 }
7845
7846 mutex_unlock(&fan_mutex);
7847 return (rc)? rc : count;
7848}
7849
7850static struct device_attribute dev_attr_fan_pwm1 =
7851 __ATTR(pwm1, S_IWUSR | S_IRUGO,
7852 fan_pwm1_show, fan_pwm1_store);
7853
7854/* sysfs fan fan1_input ------------------------------------------------ */
7855static ssize_t fan_fan1_input_show(struct device *dev,
7856 struct device_attribute *attr,
7857 char *buf)
7858{
7859 int res;
7860 unsigned int speed;
7861
7862 res = fan_get_speed(&speed);
7863 if (res < 0)
7864 return res;
7865
7866 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7867}
7868
7869static struct device_attribute dev_attr_fan_fan1_input =
7870 __ATTR(fan1_input, S_IRUGO,
7871 fan_fan1_input_show, NULL);
7872
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007873/* sysfs fan fan2_input ------------------------------------------------ */
7874static ssize_t fan_fan2_input_show(struct device *dev,
7875 struct device_attribute *attr,
7876 char *buf)
7877{
7878 int res;
7879 unsigned int speed;
7880
7881 res = fan2_get_speed(&speed);
7882 if (res < 0)
7883 return res;
7884
7885 return snprintf(buf, PAGE_SIZE, "%u\n", speed);
7886}
7887
7888static struct device_attribute dev_attr_fan_fan2_input =
7889 __ATTR(fan2_input, S_IRUGO,
7890 fan_fan2_input_show, NULL);
7891
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03007892/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007893static ssize_t fan_fan_watchdog_show(struct device_driver *drv,
7894 char *buf)
7895{
7896 return snprintf(buf, PAGE_SIZE, "%u\n", fan_watchdog_maxinterval);
7897}
7898
7899static ssize_t fan_fan_watchdog_store(struct device_driver *drv,
7900 const char *buf, size_t count)
7901{
7902 unsigned long t;
7903
7904 if (parse_strtoul(buf, 120, &t))
7905 return -EINVAL;
7906
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03007907 if (!fan_control_allowed)
7908 return -EPERM;
7909
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007910 fan_watchdog_maxinterval = t;
7911 fan_watchdog_reset();
7912
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007913 tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
7914
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007915 return count;
7916}
7917
7918static DRIVER_ATTR(fan_watchdog, S_IWUSR | S_IRUGO,
7919 fan_fan_watchdog_show, fan_fan_watchdog_store);
7920
7921/* --------------------------------------------------------------------- */
7922static struct attribute *fan_attributes[] = {
7923 &dev_attr_fan_pwm1_enable.attr, &dev_attr_fan_pwm1.attr,
7924 &dev_attr_fan_fan1_input.attr,
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007925 NULL, /* for fan2_input */
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007926 NULL
7927};
7928
7929static const struct attribute_group fan_attr_group = {
7930 .attrs = fan_attributes,
7931};
7932
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007933#define TPACPI_FAN_Q1 0x0001 /* Unitialized HFSP */
7934#define TPACPI_FAN_2FAN 0x0002 /* EC 0x31 bit 0 selects fan2 */
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007935
7936#define TPACPI_FAN_QI(__id1, __id2, __quirks) \
7937 { .vendor = PCI_VENDOR_ID_IBM, \
7938 .bios = TPACPI_MATCH_ANY, \
7939 .ec = TPID(__id1, __id2), \
7940 .quirks = __quirks }
7941
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007942#define TPACPI_FAN_QL(__id1, __id2, __quirks) \
7943 { .vendor = PCI_VENDOR_ID_LENOVO, \
7944 .bios = TPACPI_MATCH_ANY, \
7945 .ec = TPID(__id1, __id2), \
7946 .quirks = __quirks }
7947
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007948static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
7949 TPACPI_FAN_QI('1', 'Y', TPACPI_FAN_Q1),
7950 TPACPI_FAN_QI('7', '8', TPACPI_FAN_Q1),
7951 TPACPI_FAN_QI('7', '6', TPACPI_FAN_Q1),
7952 TPACPI_FAN_QI('7', '0', TPACPI_FAN_Q1),
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007953 TPACPI_FAN_QL('7', 'M', TPACPI_FAN_2FAN),
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007954};
7955
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007956#undef TPACPI_FAN_QL
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007957#undef TPACPI_FAN_QI
7958
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03007959static int __init fan_init(struct ibm_init_struct *iibm)
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007960{
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007961 int rc;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007962 unsigned long quirks;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007963
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00007964 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7965 "initializing fan subdriver\n");
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03007966
Henrique de Moraes Holschuh40ca9fd2007-04-24 11:48:15 -03007967 mutex_init(&fan_mutex);
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007968 fan_status_access_mode = TPACPI_FAN_NONE;
7969 fan_control_access_mode = TPACPI_FAN_WR_NONE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007970 fan_control_commands = 0;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02007971 fan_watchdog_maxinterval = 0;
Henrique de Moraes Holschuhd8fd94d2007-04-21 11:08:36 -03007972 tp_features.fan_ctrl_status_undef = 0;
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007973 tp_features.second_fan = 0;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03007974 fan_control_desired_level = 7;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007975
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03007976 if (tpacpi_is_ibm()) {
7977 TPACPI_ACPIHANDLE_INIT(fans);
7978 TPACPI_ACPIHANDLE_INIT(gfan);
7979 TPACPI_ACPIHANDLE_INIT(sfan);
7980 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03007981
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007982 quirks = tpacpi_check_quirks(fan_quirk_table,
7983 ARRAY_SIZE(fan_quirk_table));
7984
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007985 if (gfan_handle) {
7986 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007987 fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02007988 } else {
7989 /* all other ThinkPads: note that even old-style
7990 * ThinkPad ECs supports the fan control register */
Henrique de Moraes Holschuh778b4d72006-11-24 11:47:14 -02007991 if (likely(acpi_ec_read(fan_status_offset,
7992 &fan_control_initial_status))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03007993 fan_status_access_mode = TPACPI_FAN_RD_TPEC;
Henrique de Moraes Holschuh7d95a3d2009-05-30 13:25:06 -03007994 if (quirks & TPACPI_FAN_Q1)
7995 fan_quirk1_setup();
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03007996 if (quirks & TPACPI_FAN_2FAN) {
7997 tp_features.second_fan = 1;
7998 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
7999 "secondary fan support enabled\n");
8000 }
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008001 } else {
Joe Perches0978e012011-04-04 10:06:25 -07008002 pr_err("ThinkPad ACPI EC access misbehaving, "
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008003 "fan status and control unavailable\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008004 return 1;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008005 }
8006 }
8007
8008 if (sfan_handle) {
8009 /* 570, 770x-JL */
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008010 fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
Henrique de Moraes Holschuh1c6a3342006-11-24 11:47:12 -02008011 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008012 TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008013 } else {
8014 if (!gfan_handle) {
8015 /* gfan without sfan means no fan control */
8016 /* all other models implement TP EC 0x2f control */
8017
8018 if (fans_handle) {
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008019 /* X31, X40, X41 */
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008020 fan_control_access_mode =
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008021 TPACPI_FAN_WR_ACPI_FANS;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008022 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008023 TPACPI_FAN_CMD_SPEED |
8024 TPACPI_FAN_CMD_LEVEL |
8025 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008026 } else {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008027 fan_control_access_mode = TPACPI_FAN_WR_TPEC;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008028 fan_control_commands |=
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008029 TPACPI_FAN_CMD_LEVEL |
8030 TPACPI_FAN_CMD_ENABLE;
Henrique de Moraes Holschuh69ba91c2006-11-24 11:47:09 -02008031 }
8032 }
8033 }
8034
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008035 vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
8036 "fan is %s, modes %d, %d\n",
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008037 str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
8038 fan_control_access_mode != TPACPI_FAN_WR_NONE),
8039 fan_status_access_mode, fan_control_access_mode);
8040
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008041 /* fan control master switch */
8042 if (!fan_control_allowed) {
8043 fan_control_access_mode = TPACPI_FAN_WR_NONE;
8044 fan_control_commands = 0;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008045 dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008046 "fan control features disabled by parameter\n");
8047 }
8048
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008049 /* update fan_control_desired_level */
8050 if (fan_status_access_mode != TPACPI_FAN_NONE)
8051 fan_get_status_safe(NULL);
8052
8053 if (fan_status_access_mode != TPACPI_FAN_NONE ||
8054 fan_control_access_mode != TPACPI_FAN_WR_NONE) {
Henrique de Moraes Holschuhd7377242009-06-18 00:40:17 -03008055 if (tp_features.second_fan) {
8056 /* attach second fan tachometer */
8057 fan_attributes[ARRAY_SIZE(fan_attributes)-2] =
8058 &dev_attr_fan_fan2_input.attr;
8059 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008060 rc = sysfs_create_group(&tpacpi_sensors_pdev->dev.kobj,
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008061 &fan_attr_group);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008062 if (rc < 0)
8063 return rc;
Henrique de Moraes Holschuh9c0a76e2008-06-03 23:36:10 -03008064
8065 rc = driver_create_file(&tpacpi_hwmon_pdriver.driver,
8066 &driver_attr_fan_watchdog);
8067 if (rc < 0) {
8068 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj,
8069 &fan_attr_group);
8070 return rc;
8071 }
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008072 return 0;
8073 } else
8074 return 1;
8075}
8076
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008077static void fan_exit(void)
8078{
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008079 vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008080 "cancelling any pending fan watchdog tasks\n");
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008081
8082 /* FIXME: can we really do this unconditionally? */
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008083 sysfs_remove_group(&tpacpi_sensors_pdev->dev.kobj, &fan_attr_group);
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008084 driver_remove_file(&tpacpi_hwmon_pdriver.driver,
8085 &driver_attr_fan_watchdog);
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008086
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008087 cancel_delayed_work(&fan_watchdog_task);
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03008088 flush_workqueue(tpacpi_wq);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008089}
8090
Rafael J. Wysockifd3c3a42012-06-27 23:18:44 +02008091static void fan_suspend(void)
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008092{
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008093 int rc;
8094
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008095 if (!fan_control_allowed)
8096 return;
8097
8098 /* Store fan status in cache */
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008099 fan_control_resume_level = 0;
8100 rc = fan_get_status_safe(&fan_control_resume_level);
8101 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008102 pr_notice("failed to read fan level for later "
8103 "restore during resume: %d\n", rc);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008104
8105 /* if it is undefined, don't attempt to restore it.
8106 * KEEP THIS LAST */
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008107 if (tp_features.fan_ctrl_status_undef)
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008108 fan_control_resume_level = 0;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008109}
8110
8111static void fan_resume(void)
8112{
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008113 u8 current_level = 7;
8114 bool do_set = false;
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008115 int rc;
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008116
8117 /* DSDT *always* updates status on resume */
8118 tp_features.fan_ctrl_status_undef = 0;
8119
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008120 if (!fan_control_allowed ||
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008121 !fan_control_resume_level ||
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008122 (fan_get_status_safe(&current_level) < 0))
8123 return;
8124
8125 switch (fan_control_access_mode) {
8126 case TPACPI_FAN_WR_ACPI_SFAN:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008127 /* never decrease fan level */
8128 do_set = (fan_control_resume_level > current_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008129 break;
8130 case TPACPI_FAN_WR_ACPI_FANS:
8131 case TPACPI_FAN_WR_TPEC:
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008132 /* never decrease fan level, scale is:
8133 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
8134 *
8135 * We expect the firmware to set either 7 or AUTO, but we
8136 * handle FULLSPEED out of paranoia.
8137 *
8138 * So, we can safely only restore FULLSPEED or 7, anything
8139 * else could slow the fan. Restoring AUTO is useless, at
8140 * best that's exactly what the DSDT already set (it is the
8141 * slower it uses).
8142 *
8143 * Always keep in mind that the DSDT *will* have set the
8144 * fans to what the vendor supposes is the best level. We
8145 * muck with it only to speed the fan up.
8146 */
8147 if (fan_control_resume_level != 7 &&
8148 !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
8149 return;
8150 else
8151 do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
8152 (current_level != fan_control_resume_level);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008153 break;
8154 default:
8155 return;
8156 }
8157 if (do_set) {
Joe Perches0978e012011-04-04 10:06:25 -07008158 pr_notice("restoring fan level to 0x%02x\n",
8159 fan_control_resume_level);
Henrique de Moraes Holschuh0081b162008-11-09 10:54:02 -02008160 rc = fan_set_level_safe(fan_control_resume_level);
8161 if (rc < 0)
Joe Perches0978e012011-04-04 10:06:25 -07008162 pr_notice("failed to restore fan level: %d\n", rc);
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008163 }
8164}
8165
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008166static int fan_read(struct seq_file *m)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008167{
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008168 int rc;
8169 u8 status;
8170 unsigned int speed = 0;
8171
8172 switch (fan_status_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008173 case TPACPI_FAN_RD_ACPI_GFAN:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008174 /* 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008175 rc = fan_get_status_safe(&status);
8176 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008177 return rc;
8178
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008179 seq_printf(m, "status:\t\t%s\n"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008180 "level:\t\t%d\n",
8181 (status != 0) ? "enabled" : "disabled", status);
8182 break;
8183
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008184 case TPACPI_FAN_RD_TPEC:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008185 /* all except 570, 600e/x, 770e, 770x */
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008186 rc = fan_get_status_safe(&status);
8187 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008188 return rc;
8189
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008190 seq_printf(m, "status:\t\t%s\n",
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008191 (status != 0) ? "enabled" : "disabled");
8192
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008193 rc = fan_get_speed(&speed);
8194 if (rc < 0)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008195 return rc;
8196
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008197 seq_printf(m, "speed:\t\t%d\n", speed);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008198
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008199 if (status & TP_EC_FAN_FULLSPEED)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008200 /* Disengaged mode takes precedence */
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008201 seq_printf(m, "level:\t\tdisengaged\n");
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008202 else if (status & TP_EC_FAN_AUTO)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008203 seq_printf(m, "level:\t\tauto\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008204 else
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008205 seq_printf(m, "level:\t\t%d\n", status);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008206 break;
8207
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008208 case TPACPI_FAN_NONE:
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008209 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008210 seq_printf(m, "status:\t\tnot supported\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008211 }
8212
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008213 if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008214 seq_printf(m, "commands:\tlevel <level>");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008215
8216 switch (fan_control_access_mode) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008217 case TPACPI_FAN_WR_ACPI_SFAN:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008218 seq_printf(m, " (<level> is 0-7)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008219 break;
8220
8221 default:
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008222 seq_printf(m, " (<level> is 0-7, "
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008223 "auto, disengaged, full-speed)\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008224 break;
8225 }
8226 }
8227
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008228 if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008229 seq_printf(m, "commands:\tenable, disable\n"
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008230 "commands:\twatchdog <timeout> (<timeout> "
8231 "is 0 (off), 1-120 (seconds))\n");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008232
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008233 if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008234 seq_printf(m, "commands:\tspeed <speed>"
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008235 " (<speed> is 0-65535)\n");
8236
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008237 return 0;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008238}
8239
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008240static int fan_write_cmd_level(const char *cmd, int *rc)
8241{
8242 int level;
8243
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008244 if (strlencmp(cmd, "level auto") == 0)
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008245 level = TP_EC_FAN_AUTO;
Henrique de Moraes Holschuhfe98a522007-04-24 11:48:17 -03008246 else if ((strlencmp(cmd, "level disengaged") == 0) |
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008247 (strlencmp(cmd, "level full-speed") == 0))
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008248 level = TP_EC_FAN_FULLSPEED;
Henrique de Moraes Holschuha12095c2006-11-24 11:47:13 -02008249 else if (sscanf(cmd, "level %d", &level) != 1)
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008250 return 0;
8251
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008252 *rc = fan_set_level_safe(level);
8253 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008254 pr_err("level command accepted for unsupported access mode %d\n",
8255 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008256 else if (!*rc)
8257 tpacpi_disclose_usertask("procfs fan",
8258 "set level to %d\n", level);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008259
8260 return 1;
8261}
8262
8263static int fan_write_cmd_enable(const char *cmd, int *rc)
8264{
8265 if (strlencmp(cmd, "enable") != 0)
8266 return 0;
8267
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008268 *rc = fan_set_enable();
8269 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008270 pr_err("enable command accepted for unsupported access mode %d\n",
8271 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008272 else if (!*rc)
8273 tpacpi_disclose_usertask("procfs fan", "enable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008274
8275 return 1;
8276}
8277
8278static int fan_write_cmd_disable(const char *cmd, int *rc)
8279{
8280 if (strlencmp(cmd, "disable") != 0)
8281 return 0;
8282
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008283 *rc = fan_set_disable();
8284 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008285 pr_err("disable command accepted for unsupported access mode %d\n",
8286 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008287 else if (!*rc)
8288 tpacpi_disclose_usertask("procfs fan", "disable\n");
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008289
8290 return 1;
8291}
8292
8293static int fan_write_cmd_speed(const char *cmd, int *rc)
8294{
8295 int speed;
8296
Henrique de Moraes Holschuha8b7a662006-11-24 11:47:11 -02008297 /* TODO:
8298 * Support speed <low> <medium> <high> ? */
8299
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008300 if (sscanf(cmd, "speed %d", &speed) != 1)
8301 return 0;
8302
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008303 *rc = fan_set_speed(speed);
8304 if (*rc == -ENXIO)
Joe Perches0978e012011-04-04 10:06:25 -07008305 pr_err("speed command accepted for unsupported access mode %d\n",
8306 fan_control_access_mode);
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008307 else if (!*rc)
8308 tpacpi_disclose_usertask("procfs fan",
8309 "set speed to %d\n", speed);
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008310
8311 return 1;
8312}
8313
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008314static int fan_write_cmd_watchdog(const char *cmd, int *rc)
8315{
8316 int interval;
8317
8318 if (sscanf(cmd, "watchdog %d", &interval) != 1)
8319 return 0;
8320
8321 if (interval < 0 || interval > 120)
8322 *rc = -EINVAL;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008323 else {
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008324 fan_watchdog_maxinterval = interval;
Henrique de Moraes Holschuh74a60c02009-04-04 04:25:52 +00008325 tpacpi_disclose_usertask("procfs fan",
8326 "set watchdog timer to %d\n",
8327 interval);
8328 }
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008329
8330 return 1;
8331}
8332
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008333static int fan_write(char *buf)
8334{
8335 char *cmd;
8336 int rc = 0;
8337
8338 while (!rc && (cmd = next_cmd(&buf))) {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008339 if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008340 fan_write_cmd_level(cmd, &rc)) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008341 !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008342 (fan_write_cmd_enable(cmd, &rc) ||
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008343 fan_write_cmd_disable(cmd, &rc) ||
8344 fan_write_cmd_watchdog(cmd, &rc))) &&
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -03008345 !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008346 fan_write_cmd_speed(cmd, &rc))
8347 )
8348 rc = -EINVAL;
Henrique de Moraes Holschuh16663a82006-11-24 11:47:14 -02008349 else if (!rc)
8350 fan_watchdog_reset();
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008351 }
8352
Henrique de Moraes Holschuh18ad7992006-11-24 11:47:11 -02008353 return rc;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008354}
8355
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008356static struct ibm_struct fan_driver_data = {
8357 .name = "fan",
8358 .read = fan_read,
8359 .write = fan_write,
8360 .exit = fan_exit,
Henrique de Moraes Holschuh75700e52008-10-18 14:23:52 -03008361 .suspend = fan_suspend,
8362 .resume = fan_resume,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008363};
8364
David Henningsson420f9732013-10-16 23:10:31 +02008365/*************************************************************************
8366 * Mute LED subdriver
8367 */
8368
8369
8370struct tp_led_table {
8371 acpi_string name;
8372 int on_value;
8373 int off_value;
8374 int state;
8375};
8376
8377static struct tp_led_table led_tables[] = {
8378 [TPACPI_LED_MUTE] = {
8379 .name = "SSMS",
8380 .on_value = 1,
8381 .off_value = 0,
8382 },
8383 [TPACPI_LED_MICMUTE] = {
8384 .name = "MMTS",
8385 .on_value = 2,
8386 .off_value = 0,
8387 },
8388};
8389
8390static int mute_led_on_off(struct tp_led_table *t, bool state)
8391{
8392 acpi_handle temp;
8393 int output;
8394
8395 if (!ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp))) {
8396 pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
8397 return -EIO;
8398 }
8399
8400 if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
8401 state ? t->on_value : t->off_value))
8402 return -EIO;
8403
8404 t->state = state;
8405 return state;
8406}
8407
8408int tpacpi_led_set(int whichled, bool on)
8409{
8410 struct tp_led_table *t;
8411
8412 if (whichled < 0 || whichled >= TPACPI_LED_MAX)
8413 return -EINVAL;
8414
8415 t = &led_tables[whichled];
8416 if (t->state < 0 || t->state == on)
8417 return t->state;
8418 return mute_led_on_off(t, on);
8419}
8420EXPORT_SYMBOL_GPL(tpacpi_led_set);
8421
8422static int mute_led_init(struct ibm_init_struct *iibm)
8423{
8424 acpi_handle temp;
8425 int i;
8426
8427 for (i = 0; i < TPACPI_LED_MAX; i++) {
8428 struct tp_led_table *t = &led_tables[i];
8429 if (ACPI_SUCCESS(acpi_get_handle(hkey_handle, t->name, &temp)))
8430 mute_led_on_off(t, false);
8431 else
8432 t->state = -ENODEV;
8433 }
8434 return 0;
8435}
8436
8437static void mute_led_exit(void)
8438{
8439 int i;
8440
8441 for (i = 0; i < TPACPI_LED_MAX; i++)
8442 tpacpi_led_set(i, false);
8443}
8444
8445static struct ibm_struct mute_led_driver_data = {
8446 .name = "mute_led",
8447 .exit = mute_led_exit,
8448};
8449
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008450/****************************************************************************
8451 ****************************************************************************
8452 *
8453 * Infrastructure
8454 *
8455 ****************************************************************************
8456 ****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07008457
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008458/*
8459 * HKEY event callout for other subdrivers go here
8460 * (yes, it is ugly, but it is quick, safe, and gets the job done
8461 */
8462static void tpacpi_driver_event(const unsigned int hkey_event)
8463{
Henrique de Moraes Holschuh347a2682009-12-09 01:36:24 +00008464 if (ibm_backlight_device) {
8465 switch (hkey_event) {
8466 case TP_HKEY_EV_BRGHT_UP:
8467 case TP_HKEY_EV_BRGHT_DOWN:
8468 tpacpi_brightness_notify_change();
8469 }
8470 }
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008471 if (alsa_card) {
8472 switch (hkey_event) {
8473 case TP_HKEY_EV_VOL_UP:
8474 case TP_HKEY_EV_VOL_DOWN:
8475 case TP_HKEY_EV_VOL_MUTE:
8476 volume_alsa_notify_change();
8477 }
8478 }
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008479}
8480
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008481static void hotkey_driver_event(const unsigned int scancode)
8482{
Henrique de Moraes Holschuh67bcae62009-09-20 14:09:27 -03008483 tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
Henrique de Moraes Holschuh8b468c02009-09-20 14:09:26 -03008484}
8485
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008486/* sysfs name ---------------------------------------------------------- */
8487static ssize_t thinkpad_acpi_pdev_name_show(struct device *dev,
8488 struct device_attribute *attr,
8489 char *buf)
8490{
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008491 return snprintf(buf, PAGE_SIZE, "%s\n", TPACPI_NAME);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03008492}
8493
8494static struct device_attribute dev_attr_thinkpad_acpi_pdev_name =
8495 __ATTR(name, S_IRUGO, thinkpad_acpi_pdev_name_show, NULL);
8496
8497/* --------------------------------------------------------------------- */
8498
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008499/* /proc support */
Henrique de Moraes Holschuh94954cc2007-07-18 23:45:27 -03008500static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008501
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008502/*
8503 * Module and infrastructure proble, init and exit handling
8504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008505
Rusty Russell90ab5ee2012-01-13 09:32:20 +10308506static bool force_load;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008507
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008508#ifdef CONFIG_THINKPAD_ACPI_DEBUG
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008509static const char * __init str_supported(int is_supported)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008510{
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008511 static char text_unsupported[] __initdata = "not supported";
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008512
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008513 return (is_supported)? &text_unsupported[4] : &text_unsupported[0];
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008514}
8515#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
8516
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008517static void ibm_exit(struct ibm_struct *ibm)
8518{
8519 dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
8520
8521 list_del_init(&ibm->all_drivers);
8522
8523 if (ibm->flags.acpi_notify_installed) {
8524 dbg_printk(TPACPI_DBG_EXIT,
8525 "%s: acpi_remove_notify_handler\n", ibm->name);
8526 BUG_ON(!ibm->acpi);
8527 acpi_remove_notify_handler(*ibm->acpi->handle,
8528 ibm->acpi->type,
8529 dispatch_acpi_notify);
8530 ibm->flags.acpi_notify_installed = 0;
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008531 }
8532
8533 if (ibm->flags.proc_created) {
8534 dbg_printk(TPACPI_DBG_EXIT,
8535 "%s: remove_proc_entry\n", ibm->name);
8536 remove_proc_entry(ibm->name, proc_dir);
8537 ibm->flags.proc_created = 0;
8538 }
8539
8540 if (ibm->flags.acpi_driver_registered) {
8541 dbg_printk(TPACPI_DBG_EXIT,
8542 "%s: acpi_bus_unregister_driver\n", ibm->name);
8543 BUG_ON(!ibm->acpi);
8544 acpi_bus_unregister_driver(ibm->acpi->driver);
8545 kfree(ibm->acpi->driver);
8546 ibm->acpi->driver = NULL;
8547 ibm->flags.acpi_driver_registered = 0;
8548 }
8549
8550 if (ibm->flags.init_called && ibm->exit) {
8551 ibm->exit();
8552 ibm->flags.init_called = 0;
8553 }
8554
8555 dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
8556}
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02008557
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008558static int __init ibm_init(struct ibm_init_struct *iibm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559{
8560 int ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008561 struct ibm_struct *ibm = iibm->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562 struct proc_dir_entry *entry;
8563
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008564 BUG_ON(ibm == NULL);
8565
8566 INIT_LIST_HEAD(&ibm->all_drivers);
8567
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008568 if (ibm->flags.experimental && !experimental)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569 return 0;
8570
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008571 dbg_printk(TPACPI_DBG_INIT,
8572 "probing for %s\n", ibm->name);
8573
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008574 if (iibm->init) {
8575 ret = iibm->init(iibm);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008576 if (ret > 0)
8577 return 0; /* probe failed */
8578 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008579 return ret;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008580
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008581 ibm->flags.init_called = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582 }
8583
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008584 if (ibm->acpi) {
8585 if (ibm->acpi->hid) {
8586 ret = register_tpacpi_subdriver(ibm);
8587 if (ret)
8588 goto err_out;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008589 }
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008590
8591 if (ibm->acpi->notify) {
8592 ret = setup_acpi_notify(ibm);
8593 if (ret == -ENODEV) {
Joe Perches0978e012011-04-04 10:06:25 -07008594 pr_notice("disabling subdriver %s\n",
8595 ibm->name);
Henrique de Moraes Holschuh8d376cd2007-04-21 11:08:37 -03008596 ret = 0;
8597 goto err_out;
8598 }
8599 if (ret < 0)
8600 goto err_out;
8601 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008602 }
8603
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008604 dbg_printk(TPACPI_DBG_INIT,
8605 "%s installed\n", ibm->name);
8606
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008607 if (ibm->read) {
Al Virod161a132011-07-24 03:36:29 -04008608 umode_t mode = iibm->base_procfs_mode;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008609
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008610 if (!mode)
8611 mode = S_IRUGO;
Alexey Dobriyan887965e2009-12-15 21:51:12 -02008612 if (ibm->write)
8613 mode |= S_IWUSR;
8614 entry = proc_create_data(ibm->name, mode, proc_dir,
8615 &dispatch_proc_fops, ibm);
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008616 if (!entry) {
Joe Perches0978e012011-04-04 10:06:25 -07008617 pr_err("unable to create proc entry %s\n", ibm->name);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008618 ret = -ENODEV;
8619 goto err_out;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008620 }
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -03008621 ibm->flags.proc_created = 1;
Borislav Deianov78f81cc2005-08-17 00:00:00 -04008622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008624 list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
8625
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626 return 0;
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008627
8628err_out:
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -03008629 dbg_printk(TPACPI_DBG_INIT,
8630 "%s: at error exit path with result %d\n",
8631 ibm->name, ret);
8632
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008633 ibm_exit(ibm);
8634 return (ret < 0)? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635}
8636
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008637/* Probing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008639static bool __pure __init tpacpi_is_fw_digit(const char c)
8640{
8641 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z');
8642}
8643
8644/* Most models: xxyTkkWW (#.##c); Ancient 570/600 and -SL lacks (#.##c) */
8645static bool __pure __init tpacpi_is_valid_fw_id(const char* const s,
8646 const char t)
8647{
8648 return s && strlen(s) >= 8 &&
8649 tpacpi_is_fw_digit(s[0]) &&
8650 tpacpi_is_fw_digit(s[1]) &&
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05008651 s[2] == t &&
8652 (s[3] == 'T' || s[3] == 'N') &&
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008653 tpacpi_is_fw_digit(s[4]) &&
Keith Packardb569ab32011-03-31 15:22:33 -07008654 tpacpi_is_fw_digit(s[5]);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008655}
8656
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008657/* returns 0 - probe ok, or < 0 - probe error.
8658 * Probe ok doesn't mean thinkpad found.
8659 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
8660static int __must_check __init get_thinkpad_model_data(
8661 struct thinkpad_id_data *tp)
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008662{
Jeff Garzik18552562007-10-03 15:15:40 -04008663 const struct dmi_device *dev = NULL;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008664 char ec_fw_string[18];
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008665 char const *s;
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008666
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008667 if (!tp)
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008668 return -EINVAL;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008669
8670 memset(tp, 0, sizeof(*tp));
8671
8672 if (dmi_name_in_vendors("IBM"))
8673 tp->vendor = PCI_VENDOR_ID_IBM;
8674 else if (dmi_name_in_vendors("LENOVO"))
8675 tp->vendor = PCI_VENDOR_ID_LENOVO;
8676 else
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008677 return 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008678
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008679 s = dmi_get_system_info(DMI_BIOS_VERSION);
8680 tp->bios_version_str = kstrdup(s, GFP_KERNEL);
8681 if (s && !tp->bios_version_str)
8682 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008683
8684 /* Really ancient ThinkPad 240X will fail this, which is fine */
Manoj Iyer16a3d9f2012-09-24 11:57:40 -05008685 if (!(tpacpi_is_valid_fw_id(tp->bios_version_str, 'E') ||
8686 tpacpi_is_valid_fw_id(tp->bios_version_str, 'C')))
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008687 return 0;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008688
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008689 tp->bios_model = tp->bios_version_str[0]
8690 | (tp->bios_version_str[1] << 8);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008691 tp->bios_release = (tp->bios_version_str[4] << 8)
8692 | tp->bios_version_str[5];
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008693
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008694 /*
8695 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
8696 * X32 or newer, all Z series; Some models must have an
8697 * up-to-date BIOS or they will not be detected.
8698 *
8699 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
8700 */
8701 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008702 if (sscanf(dev->name,
8703 "IBM ThinkPad Embedded Controller -[%17c",
8704 ec_fw_string) == 1) {
8705 ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
8706 ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008707
8708 tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008709 if (!tp->ec_version_str)
8710 return -ENOMEM;
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008711
8712 if (tpacpi_is_valid_fw_id(ec_fw_string, 'H')) {
8713 tp->ec_model = ec_fw_string[0]
8714 | (ec_fw_string[1] << 8);
8715 tp->ec_release = (ec_fw_string[4] << 8)
8716 | ec_fw_string[5];
8717 } else {
Joe Perches0978e012011-04-04 10:06:25 -07008718 pr_notice("ThinkPad firmware release %s "
8719 "doesn't match the known patterns\n",
8720 ec_fw_string);
8721 pr_notice("please report this to %s\n",
8722 TPACPI_MAIL);
Henrique de Moraes Holschuh050df102009-05-30 13:25:05 -03008723 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008724 break;
Henrique de Moraes Holschuh49a13cd2006-11-24 11:47:13 -02008725 }
Henrique de Moraes Holschuh60eb0b32006-11-24 11:47:08 -02008726 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008727
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008728 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Manoj Iyer23b05312012-03-09 17:32:24 -06008729 if (s && !(strnicmp(s, "ThinkPad", 8) && strnicmp(s, "Lenovo", 6))) {
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008730 tp->model_str = kstrdup(s, GFP_KERNEL);
8731 if (!tp->model_str)
8732 return -ENOMEM;
Manoj Iyera4f46bb2012-08-06 18:15:37 -05008733 } else {
8734 s = dmi_get_system_info(DMI_BIOS_VENDOR);
8735 if (s && !(strnicmp(s, "Lenovo", 6))) {
8736 tp->model_str = kstrdup(s, GFP_KERNEL);
8737 if (!tp->model_str)
8738 return -ENOMEM;
8739 }
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03008740 }
Henrique de Moraes Holschuh8c74adb2008-04-26 01:02:19 -03008741
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03008742 s = dmi_get_system_info(DMI_PRODUCT_NAME);
8743 tp->nummodel_str = kstrdup(s, GFP_KERNEL);
8744 if (s && !tp->nummodel_str)
8745 return -ENOMEM;
8746
8747 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748}
8749
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008750static int __init probe_for_thinkpad(void)
8751{
8752 int is_thinkpad;
8753
8754 if (acpi_disabled)
8755 return -ENODEV;
8756
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03008757 /* It would be dangerous to run the driver in this case */
8758 if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
8759 return -ENODEV;
8760
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008761 /*
8762 * Non-ancient models have better DMI tagging, but very old models
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008763 * don't. tpacpi_is_fw_known() is a cheat to help in that case.
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008764 */
Henrique de Moraes Holschuhe675aba2009-09-12 15:22:13 -03008765 is_thinkpad = (thinkpad_id.model_str != NULL) ||
8766 (thinkpad_id.ec_model != 0) ||
8767 tpacpi_is_fw_known();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008768
Henrique de Moraes Holschuh437e4702010-05-16 19:45:43 -03008769 /* The EC handler is required */
8770 tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008771 if (!ec_handle) {
8772 if (is_thinkpad)
Joe Perches0978e012011-04-04 10:06:25 -07008773 pr_err("Not yet supported ThinkPad detected!\n");
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008774 return -ENODEV;
8775 }
8776
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008777 if (!is_thinkpad && !force_load)
8778 return -ENODEV;
8779
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008780 return 0;
8781}
8782
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008783static void __init thinkpad_acpi_init_banner(void)
8784{
Joe Perches0978e012011-04-04 10:06:25 -07008785 pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
8786 pr_info("%s\n", TPACPI_URL);
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008787
Joe Perches0978e012011-04-04 10:06:25 -07008788 pr_info("ThinkPad BIOS %s, EC %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008789 (thinkpad_id.bios_version_str) ?
8790 thinkpad_id.bios_version_str : "unknown",
8791 (thinkpad_id.ec_version_str) ?
8792 thinkpad_id.ec_version_str : "unknown");
8793
8794 BUG_ON(!thinkpad_id.vendor);
8795
8796 if (thinkpad_id.model_str)
Joe Perches0978e012011-04-04 10:06:25 -07008797 pr_info("%s %s, model %s\n",
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03008798 (thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
8799 "IBM" : ((thinkpad_id.vendor ==
8800 PCI_VENDOR_ID_LENOVO) ?
8801 "Lenovo" : "Unknown vendor"),
8802 thinkpad_id.model_str,
8803 (thinkpad_id.nummodel_str) ?
8804 thinkpad_id.nummodel_str : "unknown");
8805}
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03008806
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008807/* Module init, exit, parameters */
8808
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008809static struct ibm_init_struct ibms_init[] __initdata = {
8810 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008811 .data = &thinkpad_acpi_driver_data,
8812 },
8813 {
8814 .init = hotkey_init,
8815 .data = &hotkey_driver_data,
8816 },
8817 {
8818 .init = bluetooth_init,
8819 .data = &bluetooth_driver_data,
8820 },
8821 {
8822 .init = wan_init,
8823 .data = &wan_driver_data,
8824 },
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008825 {
8826 .init = uwb_init,
8827 .data = &uwb_driver_data,
8828 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008829#ifdef CONFIG_THINKPAD_ACPI_VIDEO
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008830 {
8831 .init = video_init,
Henrique de Moraes Holschuhb525c062010-02-25 22:22:22 -03008832 .base_procfs_mode = S_IRUSR,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008833 .data = &video_driver_data,
8834 },
Henrique de Moraes Holschuhd7c1d172008-02-16 02:17:54 -02008835#endif
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008836 {
8837 .init = light_init,
8838 .data = &light_driver_data,
8839 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008840 {
8841 .init = cmos_init,
8842 .data = &cmos_driver_data,
8843 },
8844 {
8845 .init = led_init,
8846 .data = &led_driver_data,
8847 },
8848 {
8849 .init = beep_init,
8850 .data = &beep_driver_data,
8851 },
8852 {
8853 .init = thermal_init,
8854 .data = &thermal_driver_data,
8855 },
8856 {
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008857 .init = brightness_init,
8858 .data = &brightness_driver_data,
8859 },
8860 {
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008861 .init = volume_init,
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008862 .data = &volume_driver_data,
8863 },
8864 {
8865 .init = fan_init,
8866 .data = &fan_driver_data,
8867 },
David Henningsson420f9732013-10-16 23:10:31 +02008868 {
8869 .init = mute_led_init,
8870 .data = &mute_led_driver_data,
8871 },
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008872};
8873
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008874static int __init set_ibm_param(const char *val, struct kernel_param *kp)
8875{
8876 unsigned int i;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008877 struct ibm_struct *ibm;
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008878
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008879 if (!kp || !kp->name || !val)
8880 return -EINVAL;
8881
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008882 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
8883 ibm = ibms_init[i].data;
Henrique de Moraes Holschuh59f91ff2007-11-18 09:18:29 -02008884 WARN_ON(ibm == NULL);
8885
8886 if (!ibm || !ibm->name)
8887 continue;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008888
8889 if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
8890 if (strlen(val) > sizeof(ibms_init[i].param) - 2)
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008891 return -ENOSPC;
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008892 strcpy(ibms_init[i].param, val);
8893 strcat(ibms_init[i].param, ",");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008894 return 0;
8895 }
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03008896 }
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008897
8898 return -EINVAL;
8899}
8900
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008901module_param(experimental, int, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008902MODULE_PARM_DESC(experimental,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008903 "Enables experimental features when non-zero");
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008904
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008905module_param_named(debug, dbg_level, uint, 0);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008906MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -03008907
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008908module_param(force_load, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008909MODULE_PARM_DESC(force_load,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008910 "Attempts to load the driver even on a "
8911 "mis-identified ThinkPad when true");
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -03008912
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008913module_param_named(fan_control, fan_control_allowed, bool, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008914MODULE_PARM_DESC(fan_control,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008915 "Enables setting fan parameters features when true");
Henrique de Moraes Holschuhecf2a802007-04-27 22:00:09 -03008916
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008917module_param_named(brightness_mode, brightness_mode, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008918MODULE_PARM_DESC(brightness_mode,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008919 "Selects brightness control strategy: "
Henrique de Moraes Holschuh0e501832009-04-04 04:25:53 +00008920 "0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
Henrique de Moraes Holschuh24d3b772007-07-18 23:45:43 -03008921
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008922module_param(brightness_enable, uint, 0444);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008923MODULE_PARM_DESC(brightness_enable,
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008924 "Enables backlight control when 1, disables when 0");
Henrique de Moraes Holschuh87cc5372007-10-30 18:02:07 -02008925
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008926#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
Henrique de Moraes Holschuh329e4e12009-12-15 21:51:08 -02008927module_param_named(volume_mode, volume_mode, uint, 0444);
8928MODULE_PARM_DESC(volume_mode,
8929 "Selects volume control strategy: "
8930 "0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
8931
Henrique de Moraes Holschuha112cee2009-12-15 21:51:09 -02008932module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
8933MODULE_PARM_DESC(volume_capabilities,
8934 "Selects the mixer capabilites: "
8935 "0=auto, 1=volume and mute, 2=mute only");
8936
Henrique de Moraes Holschuhc7ac6292009-12-15 21:51:10 -02008937module_param_named(volume_control, volume_control_allowed, bool, 0444);
8938MODULE_PARM_DESC(volume_control,
8939 "Enables software override for the console audio "
8940 "control when true");
8941
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008942/* ALSA module API parameters */
8943module_param_named(index, alsa_index, int, 0444);
8944MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
8945module_param_named(id, alsa_id, charp, 0444);
8946MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
8947module_param_named(enable, alsa_enable, bool, 0444);
8948MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
Henrique de Moraes Holschuhff850c32009-12-26 22:52:15 -02008949#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
Henrique de Moraes Holschuh0d204c32009-12-15 21:51:11 -02008950
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008951#define TPACPI_PARAM(feature) \
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02008952 module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
Henrique de Moraes Holschuhcbb14842008-02-16 02:17:50 -02008953 MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command " \
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02008954 "at module load, see documentation")
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008955
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008956TPACPI_PARAM(hotkey);
8957TPACPI_PARAM(bluetooth);
8958TPACPI_PARAM(video);
8959TPACPI_PARAM(light);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008960TPACPI_PARAM(cmos);
8961TPACPI_PARAM(led);
8962TPACPI_PARAM(beep);
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02008963TPACPI_PARAM(brightness);
8964TPACPI_PARAM(volume);
8965TPACPI_PARAM(fan);
Henrique de Moraes Holschuh56b6aeb2007-03-23 17:33:57 -03008966
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008967#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008968module_param(dbg_wlswemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008969MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
8970module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
8971MODULE_PARM_DESC(wlsw_state,
8972 "Initial state of the emulated WLSW switch");
8973
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008974module_param(dbg_bluetoothemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008975MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
8976module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
8977MODULE_PARM_DESC(bluetooth_state,
8978 "Initial state of the emulated bluetooth switch");
8979
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008980module_param(dbg_wwanemul, uint, 0444);
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008981MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
8982module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
8983MODULE_PARM_DESC(wwan_state,
8984 "Initial state of the emulated WWAN switch");
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008985
Henrique de Moraes Holschuhb09c7222009-12-09 01:36:27 +00008986module_param(dbg_uwbemul, uint, 0444);
Henrique de Moraes Holschuh0045c0a2009-01-11 03:01:03 -02008987MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
8988module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
8989MODULE_PARM_DESC(uwb_state,
8990 "Initial state of the emulated UWB switch");
Henrique de Moraes Holschuha73f3092009-01-11 03:01:00 -02008991#endif
8992
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02008993static void thinkpad_acpi_module_exit(void)
8994{
8995 struct ibm_struct *ibm, *itmp;
8996
8997 tpacpi_lifecycle = TPACPI_LIFE_EXITING;
8998
8999 list_for_each_entry_safe_reverse(ibm, itmp,
9000 &tpacpi_all_drivers,
9001 all_drivers) {
9002 ibm_exit(ibm);
9003 }
9004
9005 dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
9006
9007 if (tpacpi_inputdev) {
9008 if (tp_features.input_device_registered)
9009 input_unregister_device(tpacpi_inputdev);
9010 else
9011 input_free_device(tpacpi_inputdev);
Li Dongyang00d39592012-07-25 10:45:09 +10009012 kfree(hotkey_keycode_map);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009013 }
9014
9015 if (tpacpi_hwmon)
9016 hwmon_device_unregister(tpacpi_hwmon);
9017
9018 if (tp_features.sensors_pdev_attrs_registered)
9019 device_remove_file(&tpacpi_sensors_pdev->dev,
9020 &dev_attr_thinkpad_acpi_pdev_name);
9021 if (tpacpi_sensors_pdev)
9022 platform_device_unregister(tpacpi_sensors_pdev);
9023 if (tpacpi_pdev)
9024 platform_device_unregister(tpacpi_pdev);
9025
9026 if (tp_features.sensors_pdrv_attrs_registered)
9027 tpacpi_remove_driver_attributes(&tpacpi_hwmon_pdriver.driver);
9028 if (tp_features.platform_drv_attrs_registered)
9029 tpacpi_remove_driver_attributes(&tpacpi_pdriver.driver);
9030
9031 if (tp_features.sensors_pdrv_registered)
9032 platform_driver_unregister(&tpacpi_hwmon_pdriver);
9033
9034 if (tp_features.platform_drv_registered)
9035 platform_driver_unregister(&tpacpi_pdriver);
9036
9037 if (proc_dir)
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009038 remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009039
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009040 if (tpacpi_wq)
9041 destroy_workqueue(tpacpi_wq);
9042
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009043 kfree(thinkpad_id.bios_version_str);
9044 kfree(thinkpad_id.ec_version_str);
9045 kfree(thinkpad_id.model_str);
Li Dongyangd2be15b2012-07-25 10:45:08 +10009046 kfree(thinkpad_id.nummodel_str);
Henrique de Moraes Holschuhb21a15f2008-01-08 13:02:45 -02009047}
9048
Henrique de Moraes Holschuhf74a27d2008-01-08 13:02:44 -02009049
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009050static int __init thinkpad_acpi_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009051{
9052 int ret, i;
9053
Henrique de Moraes Holschuh8fef5022007-09-23 11:39:02 -03009054 tpacpi_lifecycle = TPACPI_LIFE_INIT;
9055
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009056 /* Driver-level probe */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009057
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009058 ret = get_thinkpad_model_data(&thinkpad_id);
9059 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009060 pr_err("unable to get DMI data: %d\n", ret);
Henrique de Moraes Holschuhbf20e742008-07-21 09:15:51 -03009061 thinkpad_acpi_module_exit();
9062 return ret;
9063 }
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009064 ret = probe_for_thinkpad();
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009065 if (ret) {
9066 thinkpad_acpi_module_exit();
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -03009067 return ret;
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009069
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009070 /* Driver initialization */
Henrique de Moraes Holschuhd5a2f2f2007-07-18 23:45:42 -03009071
Henrique de Moraes Holschuh7a43f782010-05-16 19:45:31 -03009072 thinkpad_acpi_init_banner();
9073 tpacpi_check_outdated_fw();
9074
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009075 TPACPI_ACPIHANDLE_INIT(ecrd);
9076 TPACPI_ACPIHANDLE_INIT(ecwr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009077
Henrique de Moraes Holschuhe0e3c062008-04-26 01:02:28 -03009078 tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
9079 if (!tpacpi_wq) {
9080 thinkpad_acpi_module_exit();
9081 return -ENOMEM;
9082 }
9083
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009084 proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009085 if (!proc_dir) {
Joe Perches0978e012011-04-04 10:06:25 -07009086 pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009087 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009088 return -ENODEV;
9089 }
Borislav Deianov78f81cc2005-08-17 00:00:00 -04009090
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009091 ret = platform_driver_register(&tpacpi_pdriver);
9092 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009093 pr_err("unable to register main platform driver\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009094 thinkpad_acpi_module_exit();
9095 return ret;
9096 }
Henrique de Moraes Holschuhac363932007-07-27 17:04:40 -03009097 tp_features.platform_drv_registered = 1;
9098
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009099 ret = platform_driver_register(&tpacpi_hwmon_pdriver);
9100 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009101 pr_err("unable to register hwmon platform driver\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009102 thinkpad_acpi_module_exit();
9103 return ret;
9104 }
9105 tp_features.sensors_pdrv_registered = 1;
9106
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009107 ret = tpacpi_create_driver_attributes(&tpacpi_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009108 if (!ret) {
9109 tp_features.platform_drv_attrs_registered = 1;
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009110 ret = tpacpi_create_driver_attributes(
9111 &tpacpi_hwmon_pdriver.driver);
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009112 }
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009113 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009114 pr_err("unable to create sysfs driver attributes\n");
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009115 thinkpad_acpi_module_exit();
9116 return ret;
9117 }
Henrique de Moraes Holschuh2369cc92007-09-23 11:39:07 -03009118 tp_features.sensors_pdrv_attrs_registered = 1;
Henrique de Moraes Holschuh176750d2007-04-24 11:48:13 -03009119
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009120
9121 /* Device initialization */
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009122 tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009123 NULL, 0);
9124 if (IS_ERR(tpacpi_pdev)) {
9125 ret = PTR_ERR(tpacpi_pdev);
9126 tpacpi_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009127 pr_err("unable to register platform device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009128 thinkpad_acpi_module_exit();
9129 return ret;
9130 }
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009131 tpacpi_sensors_pdev = platform_device_register_simple(
Henrique de Moraes Holschuh35ff8b92008-01-08 13:02:49 -02009132 TPACPI_HWMON_DRVR_NAME,
9133 -1, NULL, 0);
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009134 if (IS_ERR(tpacpi_sensors_pdev)) {
9135 ret = PTR_ERR(tpacpi_sensors_pdev);
9136 tpacpi_sensors_pdev = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009137 pr_err("unable to register hwmon platform device\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009138 thinkpad_acpi_module_exit();
9139 return ret;
9140 }
9141 ret = device_create_file(&tpacpi_sensors_pdev->dev,
9142 &dev_attr_thinkpad_acpi_pdev_name);
9143 if (ret) {
Joe Perches0978e012011-04-04 10:06:25 -07009144 pr_err("unable to create sysfs hwmon device attributes\n");
Henrique de Moraes Holschuh7fd40022007-09-25 06:38:03 -03009145 thinkpad_acpi_module_exit();
9146 return ret;
9147 }
9148 tp_features.sensors_pdev_attrs_registered = 1;
9149 tpacpi_hwmon = hwmon_device_register(&tpacpi_sensors_pdev->dev);
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009150 if (IS_ERR(tpacpi_hwmon)) {
9151 ret = PTR_ERR(tpacpi_hwmon);
9152 tpacpi_hwmon = NULL;
Joe Perches0978e012011-04-04 10:06:25 -07009153 pr_err("unable to register hwmon device\n");
Henrique de Moraes Holschuh54ae1502007-04-24 11:48:12 -03009154 thinkpad_acpi_module_exit();
9155 return ret;
9156 }
Henrique de Moraes Holschuh8523ed62007-09-23 11:39:01 -03009157 mutex_init(&tpacpi_inputdev_send_mutex);
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009158 tpacpi_inputdev = input_allocate_device();
9159 if (!tpacpi_inputdev) {
Joe Perches0978e012011-04-04 10:06:25 -07009160 pr_err("unable to allocate input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009161 thinkpad_acpi_module_exit();
9162 return -ENOMEM;
9163 } else {
9164 /* Prepare input device, but don't register */
9165 tpacpi_inputdev->name = "ThinkPad Extra Buttons";
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009166 tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009167 tpacpi_inputdev->id.bustype = BUS_HOST;
Henrique de Moraes Holschuhe28393c2010-05-16 19:45:23 -03009168 tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009169 tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
9170 tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
Henrique de Moraes Holschuhd112ef92009-12-09 01:36:26 +00009171 tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009172 }
Henrique de Moraes Holschuh77775832010-05-16 19:45:33 -03009173
9174 /* Init subdriver dependencies */
9175 tpacpi_detect_brightness_capabilities();
9176
9177 /* Init subdrivers */
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -03009178 for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
9179 ret = ibm_init(&ibms_init[i]);
9180 if (ret >= 0 && *ibms_init[i].param)
9181 ret = ibms_init[i].data->write(ibms_init[i].param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009182 if (ret < 0) {
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009183 thinkpad_acpi_module_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009184 return ret;
9185 }
9186 }
Henrique de Moraes Holschuhb589ea42010-02-25 21:28:58 -03009187
9188 tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
9189
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009190 ret = input_register_device(tpacpi_inputdev);
9191 if (ret < 0) {
Joe Perches0978e012011-04-04 10:06:25 -07009192 pr_err("unable to register input device\n");
Henrique de Moraes Holschuh7f5d1cd2007-07-18 23:45:34 -03009193 thinkpad_acpi_module_exit();
9194 return ret;
9195 } else {
9196 tp_features.input_device_registered = 1;
9197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009198
9199 return 0;
9200}
9201
Henrique de Moraes Holschuh95e57ab2008-04-26 01:02:22 -03009202MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
9203
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009204/*
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009205 * This will autoload the driver in almost every ThinkPad
9206 * in widespread use.
9207 *
9208 * Only _VERY_ old models, like the 240, 240x and 570 lack
9209 * the HKEY event interface.
9210 */
9211MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
9212
9213/*
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009214 * DMI matching for module autoloading
9215 *
9216 * See http://thinkwiki.org/wiki/List_of_DMI_IDs
9217 * See http://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
9218 *
9219 * Only models listed in thinkwiki will be supported, so add yours
9220 * if it is not there yet.
9221 */
9222#define IBM_BIOS_MODULE_ALIAS(__type) \
Mathieu Chouquet-Stringerb36a50f2009-03-14 16:35:26 +01009223 MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009224
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009225/* Ancient thinkpad BIOSes have to be identified by
9226 * BIOS type or model number, and there are far less
9227 * BIOS types than model numbers... */
Henrique de Moraes Holschuh922fe092009-04-14 02:44:13 +00009228IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009229
Henrique de Moraes Holschuhf68f53a2009-04-14 02:44:12 +00009230MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
9231MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
Henrique de Moraes Holschuhe0c7dfe2008-01-08 13:02:48 -02009232MODULE_DESCRIPTION(TPACPI_DESC);
9233MODULE_VERSION(TPACPI_VERSION);
Henrique de Moraes Holschuhf68080f2008-01-08 13:02:47 -02009234MODULE_LICENSE("GPL");
9235
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -03009236module_init(thinkpad_acpi_module_init);
9237module_exit(thinkpad_acpi_module_exit);