blob: 0cfadb65f7c639597abce1d1bcb81ba3a04ff1d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
3 *
4 *
5 * Copyright (C) 2002-2004 John Belmonte
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04006 * Copyright (C) 2008 Philip Langdale
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +02007 * Copyright (C) 2010 Pierre Ducroquet
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 *
24 * The devolpment page for this driver is located at
25 * http://memebeam.org/toys/ToshibaAcpiDriver.
26 *
27 * Credits:
28 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
29 * engineering the Windows drivers
30 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
31 * Rob Miller - TV out and hotkeys help
32 *
33 *
34 * TODO
35 *
36 */
37
Joe Perches7e334602011-03-29 15:21:52 -070038#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040040#define TOSHIBA_ACPI_VERSION "0.19"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define PROC_INTERFACE_VERSION 1
42
43#include <linux/kernel.h>
44#include <linux/module.h>
45#include <linux/init.h>
46#include <linux/types.h>
47#include <linux/proc_fs.h>
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -080048#include <linux/seq_file.h>
Holger Machtc9263552006-10-20 14:30:29 -070049#include <linux/backlight.h>
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040050#include <linux/rfkill.h>
Matthew Garrett6335e4d2010-02-25 15:20:54 -050051#include <linux/input.h>
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -070052#include <linux/input/sparse-keymap.h>
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +020053#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Seth Forshee29cd2932012-01-18 13:44:09 -060055#include <linux/workqueue.h>
56#include <linux/i8042.h>
Holger Machtc9263552006-10-20 14:30:29 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/uaccess.h>
59
60#include <acpi/acpi_drivers.h>
61
62MODULE_AUTHOR("John Belmonte");
63MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
64MODULE_LICENSE("GPL");
65
Seth Forsheef11f9992012-01-18 13:44:11 -060066#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
67
Seth Forshee29cd2932012-01-18 13:44:09 -060068/* Scan code for Fn key on TOS1900 models */
69#define TOS1900_FN_SCAN 0x6e
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Toshiba ACPI method paths */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
73
74/* Toshiba HCI interface definitions
75 *
76 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
77 * be uniform across all their models. Ideally we would just call
78 * dedicated ACPI methods instead of using this primitive interface.
79 * However the ACPI methods seem to be incomplete in some areas (for
80 * example they allow setting, but not reading, the LCD brightness value),
81 * so this is still useful.
82 */
83
84#define HCI_WORDS 6
85
86/* operations */
87#define HCI_SET 0xff00
88#define HCI_GET 0xfe00
89
90/* return codes */
91#define HCI_SUCCESS 0x0000
92#define HCI_FAILURE 0x1000
93#define HCI_NOT_SUPPORTED 0x8000
94#define HCI_EMPTY 0x8c00
95
96/* registers */
97#define HCI_FAN 0x0004
Akio Idehara121b7b02012-04-06 01:46:43 +090098#define HCI_TR_BACKLIGHT 0x0005
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define HCI_SYSTEM_EVENT 0x0016
100#define HCI_VIDEO_OUT 0x001c
101#define HCI_HOTKEY_EVENT 0x001e
102#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400103#define HCI_WIRELESS 0x0056
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/* field definitions */
Seth Forshee29cd2932012-01-18 13:44:09 -0600106#define HCI_HOTKEY_DISABLE 0x0b
107#define HCI_HOTKEY_ENABLE 0x09
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define HCI_LCD_BRIGHTNESS_BITS 3
109#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
110#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
111#define HCI_VIDEO_OUT_LCD 0x1
112#define HCI_VIDEO_OUT_CRT 0x2
113#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400114#define HCI_WIRELESS_KILL_SWITCH 0x01
115#define HCI_WIRELESS_BT_PRESENT 0x0f
116#define HCI_WIRELESS_BT_ATTACH 0x40
117#define HCI_WIRELESS_BT_POWER 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Seth Forshee135740d2011-09-20 16:55:49 -0500119struct toshiba_acpi_dev {
120 struct acpi_device *acpi_dev;
121 const char *method_hci;
122 struct rfkill *bt_rfk;
123 struct input_dev *hotkey_dev;
Seth Forshee29cd2932012-01-18 13:44:09 -0600124 struct work_struct hotkey_work;
Seth Forshee135740d2011-09-20 16:55:49 -0500125 struct backlight_device *backlight_dev;
126 struct led_classdev led_dev;
Seth Forshee36d03f92011-09-20 16:55:53 -0500127
Seth Forshee135740d2011-09-20 16:55:49 -0500128 int force_fan;
129 int last_key_event;
130 int key_event_valid;
Seth Forshee135740d2011-09-20 16:55:49 -0500131
Dan Carpenter592b7462012-01-15 14:28:20 +0300132 unsigned int illumination_supported:1;
133 unsigned int video_supported:1;
134 unsigned int fan_supported:1;
135 unsigned int system_event_supported:1;
Seth Forshee29cd2932012-01-18 13:44:09 -0600136 unsigned int ntfy_supported:1;
137 unsigned int info_supported:1;
Akio Idehara121b7b02012-04-06 01:46:43 +0900138 unsigned int tr_backlight_supported:1;
Seth Forshee36d03f92011-09-20 16:55:53 -0500139
Seth Forshee135740d2011-09-20 16:55:49 -0500140 struct mutex mutex;
141};
142
Seth Forshee29cd2932012-01-18 13:44:09 -0600143static struct toshiba_acpi_dev *toshiba_acpi;
144
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800145static const struct acpi_device_id toshiba_device_ids[] = {
146 {"TOS6200", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400147 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800148 {"TOS1900", 0},
149 {"", 0},
150};
151MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
152
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800153static const struct key_entry toshiba_acpi_keymap[] = {
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700154 { KE_KEY, 0x101, { KEY_MUTE } },
155 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
156 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600157 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
158 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700159 { KE_KEY, 0x13b, { KEY_COFFEE } },
160 { KE_KEY, 0x13c, { KEY_BATTERY } },
161 { KE_KEY, 0x13d, { KEY_SLEEP } },
162 { KE_KEY, 0x13e, { KEY_SUSPEND } },
163 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
164 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
165 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
166 { KE_KEY, 0x142, { KEY_WLAN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600167 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
Jon Dowlanda49010f2010-10-27 00:24:59 +0100168 { KE_KEY, 0x17f, { KEY_FN } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700169 { KE_KEY, 0xb05, { KEY_PROG2 } },
170 { KE_KEY, 0xb06, { KEY_WWW } },
171 { KE_KEY, 0xb07, { KEY_MAIL } },
172 { KE_KEY, 0xb30, { KEY_STOP } },
173 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
174 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
175 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
176 { KE_KEY, 0xb5a, { KEY_MEDIA } },
Azael Avalosaf502832012-01-18 13:44:10 -0600177 { KE_IGNORE, 0x1430, { KEY_RESERVED } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700178 { KE_END, 0 },
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500179};
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/* utility
182 */
183
Len Brown4be44fc2005-08-05 00:44:28 -0400184static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 *word = (*word & ~mask) | (mask * value);
187}
188
189/* acpi interface wrappers
190 */
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 acpi_status status;
195
Zhang Rui619400d2013-09-03 08:31:56 +0800196 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500197 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/* Perform a raw HCI call. Here we don't care about input or output buffer
201 * format.
202 */
Seth Forshee135740d2011-09-20 16:55:49 -0500203static acpi_status hci_raw(struct toshiba_acpi_dev *dev,
204 const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 struct acpi_object_list params;
207 union acpi_object in_objs[HCI_WORDS];
208 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400209 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 acpi_status status;
211 int i;
212
213 params.count = HCI_WORDS;
214 params.pointer = in_objs;
215 for (i = 0; i < HCI_WORDS; ++i) {
216 in_objs[i].type = ACPI_TYPE_INTEGER;
217 in_objs[i].integer.value = in[i];
218 }
219
220 results.length = sizeof(out_objs);
221 results.pointer = out_objs;
222
Seth Forshee6e02cc72011-09-20 16:55:51 -0500223 status = acpi_evaluate_object(dev->acpi_dev->handle,
224 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400225 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
227 for (i = 0; i < out_objs->package.count; ++i) {
228 out[i] = out_objs->package.elements[i].integer.value;
229 }
230 }
231
232 return status;
233}
234
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400235/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 *
237 * In addition to the ACPI status, the HCI system returns a result which
238 * may be useful (such as "not supported").
239 */
240
Seth Forshee135740d2011-09-20 16:55:49 -0500241static acpi_status hci_write1(struct toshiba_acpi_dev *dev, u32 reg,
242 u32 in1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
245 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500246 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
248 return status;
249}
250
Seth Forshee135740d2011-09-20 16:55:49 -0500251static acpi_status hci_read1(struct toshiba_acpi_dev *dev, u32 reg,
252 u32 *out1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
255 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500256 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 *out1 = out[2];
258 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
259 return status;
260}
261
Seth Forshee135740d2011-09-20 16:55:49 -0500262static acpi_status hci_write2(struct toshiba_acpi_dev *dev, u32 reg,
263 u32 in1, u32 in2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400264{
265 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
266 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500267 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400268 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
269 return status;
270}
271
Seth Forshee135740d2011-09-20 16:55:49 -0500272static acpi_status hci_read2(struct toshiba_acpi_dev *dev, u32 reg,
273 u32 *out1, u32 *out2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400274{
275 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
276 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500277 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400278 *out1 = out[2];
279 *out2 = out[3];
280 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
281 return status;
282}
283
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200284/* Illumination support */
Seth Forshee135740d2011-09-20 16:55:49 -0500285static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200286{
287 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
288 u32 out[HCI_WORDS];
289 acpi_status status;
290
291 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500292 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200293 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700294 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200295 return 0;
296 }
297 in[0] = 0xf400;
Seth Forshee135740d2011-09-20 16:55:49 -0500298 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200299 return 1;
300}
301
302static void toshiba_illumination_set(struct led_classdev *cdev,
303 enum led_brightness brightness)
304{
Seth Forshee135740d2011-09-20 16:55:49 -0500305 struct toshiba_acpi_dev *dev = container_of(cdev,
306 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200307 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
308 u32 out[HCI_WORDS];
309 acpi_status status;
310
311 /* First request : initialize communication. */
312 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500313 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200314 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700315 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200316 return;
317 }
318
319 if (brightness) {
320 /* Switch the illumination on */
321 in[0] = 0xf400;
322 in[1] = 0x14e;
323 in[2] = 1;
Seth Forshee135740d2011-09-20 16:55:49 -0500324 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200325 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700326 pr_info("ACPI call for illumination failed\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200327 return;
328 }
329 } else {
330 /* Switch the illumination off */
331 in[0] = 0xf400;
332 in[1] = 0x14e;
333 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500334 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200335 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700336 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200337 return;
338 }
339 }
340
341 /* Last request : close communication. */
342 in[0] = 0xf200;
343 in[1] = 0;
344 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500345 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200346}
347
348static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
349{
Seth Forshee135740d2011-09-20 16:55:49 -0500350 struct toshiba_acpi_dev *dev = container_of(cdev,
351 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200352 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
353 u32 out[HCI_WORDS];
354 acpi_status status;
355 enum led_brightness result;
356
357 /* First request : initialize communication. */
358 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500359 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200360 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700361 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200362 return LED_OFF;
363 }
364
365 /* Check the illumination */
366 in[0] = 0xf300;
367 in[1] = 0x14e;
Seth Forshee135740d2011-09-20 16:55:49 -0500368 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200369 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700370 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200371 return LED_OFF;
372 }
373
374 result = out[2] ? LED_FULL : LED_OFF;
375
376 /* Last request : close communication. */
377 in[0] = 0xf200;
378 in[1] = 0;
379 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500380 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200381
382 return result;
383}
384
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400385/* Bluetooth rfkill handlers */
386
Seth Forshee135740d2011-09-20 16:55:49 -0500387static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400388{
389 u32 hci_result;
390 u32 value, value2;
391
392 value = 0;
393 value2 = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500394 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400395 if (hci_result == HCI_SUCCESS)
396 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
397
398 return hci_result;
399}
400
Seth Forshee135740d2011-09-20 16:55:49 -0500401static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400402{
403 u32 hci_result;
404 u32 value, value2;
405
406 value = 0;
407 value2 = 0x0001;
Seth Forshee135740d2011-09-20 16:55:49 -0500408 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400409
410 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
411 return hci_result;
412}
413
Johannes Berg19d337d2009-06-02 13:01:37 +0200414static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400415{
Johannes Berg19d337d2009-06-02 13:01:37 +0200416 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400417 u32 result1, result2;
418 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200419 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400420 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400421
Johannes Berg19d337d2009-06-02 13:01:37 +0200422 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400423
424 mutex_lock(&dev->mutex);
Seth Forshee135740d2011-09-20 16:55:49 -0500425 if (hci_get_radio_state(dev, &radio_state) != HCI_SUCCESS) {
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500426 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200427 goto out;
428 }
429
430 if (!radio_state) {
431 err = 0;
432 goto out;
433 }
434
Seth Forshee135740d2011-09-20 16:55:49 -0500435 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
436 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400437
438 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500439 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200440 else
441 err = 0;
442 out:
443 mutex_unlock(&dev->mutex);
444 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400445}
446
Johannes Berg19d337d2009-06-02 13:01:37 +0200447static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400448{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400449 bool new_rfk_state;
450 bool value;
451 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200452 struct toshiba_acpi_dev *dev = data;
453
454 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400455
Seth Forshee135740d2011-09-20 16:55:49 -0500456 hci_result = hci_get_radio_state(dev, &value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200457 if (hci_result != HCI_SUCCESS) {
458 /* Can't do anything useful */
459 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700460 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200461 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400462
463 new_rfk_state = value;
464
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400465 mutex_unlock(&dev->mutex);
466
Johannes Berg19d337d2009-06-02 13:01:37 +0200467 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
468 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400469}
470
Johannes Berg19d337d2009-06-02 13:01:37 +0200471static const struct rfkill_ops toshiba_rfk_ops = {
472 .set_block = bt_rfkill_set_block,
473 .poll = bt_rfkill_poll,
474};
475
Akio Idehara121b7b02012-04-06 01:46:43 +0900476static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled)
477{
478 u32 hci_result;
479 u32 status;
480
481 hci_read1(dev, HCI_TR_BACKLIGHT, &status, &hci_result);
482 *enabled = !status;
483 return hci_result == HCI_SUCCESS ? 0 : -EIO;
484}
485
486static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable)
487{
488 u32 hci_result;
489 u32 value = !enable;
490
491 hci_write1(dev, HCI_TR_BACKLIGHT, value, &hci_result);
492 return hci_result == HCI_SUCCESS ? 0 : -EIO;
493}
494
Len Brown4be44fc2005-08-05 00:44:28 -0400495static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Seth Forshee62cce752012-04-19 11:23:50 -0500497static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 u32 hci_result;
500 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900501 int brightness = 0;
502
503 if (dev->tr_backlight_supported) {
504 bool enabled;
505 int ret = get_tr_backlight_status(dev, &enabled);
506 if (ret)
507 return ret;
508 if (enabled)
509 return 0;
510 brightness++;
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Seth Forshee135740d2011-09-20 16:55:49 -0500513 hci_read1(dev, HCI_LCD_BRIGHTNESS, &value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500514 if (hci_result == HCI_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +0900515 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500516
517 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700518}
519
Seth Forshee62cce752012-04-19 11:23:50 -0500520static int get_lcd_brightness(struct backlight_device *bd)
521{
522 struct toshiba_acpi_dev *dev = bl_get_data(bd);
523 return __get_lcd_brightness(dev);
524}
525
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800526static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700527{
Seth Forshee135740d2011-09-20 16:55:49 -0500528 struct toshiba_acpi_dev *dev = m->private;
529 int value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900530 int levels;
Holger Machtc9263552006-10-20 14:30:29 -0700531
Seth Forshee135740d2011-09-20 16:55:49 -0500532 if (!dev->backlight_dev)
533 return -ENODEV;
534
Akio Idehara121b7b02012-04-06 01:46:43 +0900535 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -0500536 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -0700537 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800538 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +0900539 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500543 pr_err("Error reading LCD brightness\n");
544 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800545}
546
547static int lcd_proc_open(struct inode *inode, struct file *file)
548{
Al Virod9dda782013-03-31 18:16:14 -0400549 return single_open(file, lcd_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Seth Forshee62cce752012-04-19 11:23:50 -0500552static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -0700553{
554 u32 hci_result;
555
Akio Idehara121b7b02012-04-06 01:46:43 +0900556 if (dev->tr_backlight_supported) {
557 bool enable = !value;
558 int ret = set_tr_backlight_status(dev, enable);
559 if (ret)
560 return ret;
561 if (value)
562 value--;
563 }
564
Holger Machtc9263552006-10-20 14:30:29 -0700565 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
Seth Forshee135740d2011-09-20 16:55:49 -0500566 hci_write1(dev, HCI_LCD_BRIGHTNESS, value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500567 return hci_result == HCI_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700568}
569
570static int set_lcd_status(struct backlight_device *bd)
571{
Seth Forshee135740d2011-09-20 16:55:49 -0500572 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Seth Forshee62cce752012-04-19 11:23:50 -0500573 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700574}
575
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800576static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
577 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Al Virod9dda782013-03-31 18:16:14 -0400579 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800580 char cmd[42];
581 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800583 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +0900584 int levels = dev->backlight_dev->props.max_brightness + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800586 len = min(count, sizeof(cmd) - 1);
587 if (copy_from_user(cmd, buf, len))
588 return -EFAULT;
589 cmd[len] = '\0';
590
591 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Akio Idehara121b7b02012-04-06 01:46:43 +0900592 value >= 0 && value < levels) {
Seth Forshee62cce752012-04-19 11:23:50 -0500593 ret = set_lcd_brightness(dev, value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800594 if (ret == 0)
595 ret = count;
596 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700597 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800598 }
Holger Machtc9263552006-10-20 14:30:29 -0700599 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800602static const struct file_operations lcd_proc_fops = {
603 .owner = THIS_MODULE,
604 .open = lcd_proc_open,
605 .read = seq_read,
606 .llseek = seq_lseek,
607 .release = single_release,
608 .write = lcd_proc_write,
609};
610
Seth Forshee36d03f92011-09-20 16:55:53 -0500611static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
612{
613 u32 hci_result;
614
615 hci_read1(dev, HCI_VIDEO_OUT, status, &hci_result);
616 return hci_result == HCI_SUCCESS ? 0 : -EIO;
617}
618
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800619static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Seth Forshee135740d2011-09-20 16:55:49 -0500621 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 u32 value;
Seth Forshee36d03f92011-09-20 16:55:53 -0500623 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Seth Forshee36d03f92011-09-20 16:55:53 -0500625 ret = get_video_status(dev, &value);
626 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
628 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400629 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800630 seq_printf(m, "lcd_out: %d\n", is_lcd);
631 seq_printf(m, "crt_out: %d\n", is_crt);
632 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Seth Forshee36d03f92011-09-20 16:55:53 -0500635 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800638static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Al Virod9dda782013-03-31 18:16:14 -0400640 return single_open(file, video_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800641}
642
643static ssize_t video_proc_write(struct file *file, const char __user *buf,
644 size_t count, loff_t *pos)
645{
Al Virod9dda782013-03-31 18:16:14 -0400646 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800647 char *cmd, *buffer;
Seth Forshee36d03f92011-09-20 16:55:53 -0500648 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int value;
650 int remain = count;
651 int lcd_out = -1;
652 int crt_out = -1;
653 int tv_out = -1;
Al Virob4482a42007-10-14 19:35:40 +0100654 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800656 cmd = kmalloc(count + 1, GFP_KERNEL);
657 if (!cmd)
658 return -ENOMEM;
659 if (copy_from_user(cmd, buf, count)) {
660 kfree(cmd);
661 return -EFAULT;
662 }
663 cmd[count] = '\0';
664
665 buffer = cmd;
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* scan expression. Multiple expressions may be delimited with ;
668 *
669 * NOTE: to keep scanning simple, invalid fields are ignored
670 */
671 while (remain) {
672 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
673 lcd_out = value & 1;
674 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
675 crt_out = value & 1;
676 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
677 tv_out = value & 1;
678 /* advance to one character past the next ; */
679 do {
680 ++buffer;
681 --remain;
682 }
Len Brown4be44fc2005-08-05 00:44:28 -0400683 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800686 kfree(cmd);
687
Seth Forshee36d03f92011-09-20 16:55:53 -0500688 ret = get_video_status(dev, &video_out);
689 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700690 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (lcd_out != -1)
692 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
693 if (crt_out != -1)
694 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
695 if (tv_out != -1)
696 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
697 /* To avoid unnecessary video disruption, only write the new
698 * video setting if something changed. */
699 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500700 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500703 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800706static const struct file_operations video_proc_fops = {
707 .owner = THIS_MODULE,
708 .open = video_proc_open,
709 .read = seq_read,
710 .llseek = seq_lseek,
711 .release = single_release,
712 .write = video_proc_write,
713};
714
Seth Forshee36d03f92011-09-20 16:55:53 -0500715static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
716{
717 u32 hci_result;
718
719 hci_read1(dev, HCI_FAN, status, &hci_result);
720 return hci_result == HCI_SUCCESS ? 0 : -EIO;
721}
722
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800723static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Seth Forshee135740d2011-09-20 16:55:49 -0500725 struct toshiba_acpi_dev *dev = m->private;
Seth Forshee36d03f92011-09-20 16:55:53 -0500726 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 u32 value;
728
Seth Forshee36d03f92011-09-20 16:55:53 -0500729 ret = get_fan_status(dev, &value);
730 if (!ret) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800731 seq_printf(m, "running: %d\n", (value > 0));
Seth Forshee135740d2011-09-20 16:55:49 -0500732 seq_printf(m, "force_on: %d\n", dev->force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Seth Forshee36d03f92011-09-20 16:55:53 -0500735 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800738static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Al Virod9dda782013-03-31 18:16:14 -0400740 return single_open(file, fan_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800741}
742
743static ssize_t fan_proc_write(struct file *file, const char __user *buf,
744 size_t count, loff_t *pos)
745{
Al Virod9dda782013-03-31 18:16:14 -0400746 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800747 char cmd[42];
748 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int value;
750 u32 hci_result;
751
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800752 len = min(count, sizeof(cmd) - 1);
753 if (copy_from_user(cmd, buf, len))
754 return -EFAULT;
755 cmd[len] = '\0';
756
757 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400758 value >= 0 && value <= 1) {
Seth Forshee135740d2011-09-20 16:55:49 -0500759 hci_write1(dev, HCI_FAN, value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (hci_result != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500761 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 else
Seth Forshee135740d2011-09-20 16:55:49 -0500763 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 } else {
765 return -EINVAL;
766 }
767
768 return count;
769}
770
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800771static const struct file_operations fan_proc_fops = {
772 .owner = THIS_MODULE,
773 .open = fan_proc_open,
774 .read = seq_read,
775 .llseek = seq_lseek,
776 .release = single_release,
777 .write = fan_proc_write,
778};
779
780static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Seth Forshee135740d2011-09-20 16:55:49 -0500782 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 u32 hci_result;
784 u32 value;
785
Seth Forshee11948b92011-11-16 17:37:45 -0600786 if (!dev->key_event_valid && dev->system_event_supported) {
Seth Forshee135740d2011-09-20 16:55:49 -0500787 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (hci_result == HCI_SUCCESS) {
Seth Forshee135740d2011-09-20 16:55:49 -0500789 dev->key_event_valid = 1;
790 dev->last_key_event = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 } else if (hci_result == HCI_EMPTY) {
792 /* better luck next time */
793 } else if (hci_result == HCI_NOT_SUPPORTED) {
794 /* This is a workaround for an unresolved issue on
795 * some machines where system events sporadically
796 * become disabled. */
Seth Forshee135740d2011-09-20 16:55:49 -0500797 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
Joe Perches7e334602011-03-29 15:21:52 -0700798 pr_notice("Re-enabled hotkeys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else {
Joe Perches7e334602011-03-29 15:21:52 -0700800 pr_err("Error reading hotkey status\n");
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500801 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 }
804
Seth Forshee135740d2011-09-20 16:55:49 -0500805 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
806 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800810static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Al Virod9dda782013-03-31 18:16:14 -0400812 return single_open(file, keys_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800813}
814
815static ssize_t keys_proc_write(struct file *file, const char __user *buf,
816 size_t count, loff_t *pos)
817{
Al Virod9dda782013-03-31 18:16:14 -0400818 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800819 char cmd[42];
820 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 int value;
822
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800823 len = min(count, sizeof(cmd) - 1);
824 if (copy_from_user(cmd, buf, len))
825 return -EFAULT;
826 cmd[len] = '\0';
827
828 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Seth Forshee135740d2011-09-20 16:55:49 -0500829 dev->key_event_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 } else {
831 return -EINVAL;
832 }
833
834 return count;
835}
836
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800837static const struct file_operations keys_proc_fops = {
838 .owner = THIS_MODULE,
839 .open = keys_proc_open,
840 .read = seq_read,
841 .llseek = seq_lseek,
842 .release = single_release,
843 .write = keys_proc_write,
844};
845
846static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800848 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
849 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800853static int version_proc_open(struct inode *inode, struct file *file)
854{
Al Virod9dda782013-03-31 18:16:14 -0400855 return single_open(file, version_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800856}
857
858static const struct file_operations version_proc_fops = {
859 .owner = THIS_MODULE,
860 .open = version_proc_open,
861 .read = seq_read,
862 .llseek = seq_lseek,
863 .release = single_release,
864};
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/* proc and module init
867 */
868
869#define PROC_TOSHIBA "toshiba"
870
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800871static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Seth Forshee36d03f92011-09-20 16:55:53 -0500873 if (dev->backlight_dev)
874 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
875 &lcd_proc_fops, dev);
876 if (dev->video_supported)
877 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
878 &video_proc_fops, dev);
879 if (dev->fan_supported)
880 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
881 &fan_proc_fops, dev);
882 if (dev->hotkey_dev)
883 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
884 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -0500885 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
886 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Seth Forshee36d03f92011-09-20 16:55:53 -0500889static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Seth Forshee36d03f92011-09-20 16:55:53 -0500891 if (dev->backlight_dev)
892 remove_proc_entry("lcd", toshiba_proc_dir);
893 if (dev->video_supported)
894 remove_proc_entry("video", toshiba_proc_dir);
895 if (dev->fan_supported)
896 remove_proc_entry("fan", toshiba_proc_dir);
897 if (dev->hotkey_dev)
898 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800899 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Lionel Debrouxacc24722010-11-16 14:14:02 +0100902static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +0900903 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -0500904 .get_brightness = get_lcd_brightness,
905 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700906};
907
Seth Forshee29cd2932012-01-18 13:44:09 -0600908static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
909 struct serio *port)
910{
911 if (str & 0x20)
912 return false;
913
914 if (unlikely(data == 0xe0))
915 return false;
916
917 if ((data & 0x7f) == TOS1900_FN_SCAN) {
918 schedule_work(&toshiba_acpi->hotkey_work);
919 return true;
920 }
921
922 return false;
923}
924
925static void toshiba_acpi_hotkey_work(struct work_struct *work)
926{
927 acpi_handle ec_handle = ec_get_handle();
928 acpi_status status;
929
930 if (!ec_handle)
931 return;
932
933 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
934 if (ACPI_FAILURE(status))
935 pr_err("ACPI NTFY method execution failed\n");
936}
937
938/*
939 * Returns hotkey scancode, or < 0 on failure.
940 */
941static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
942{
Zhang Rui74facaf2013-09-03 08:32:15 +0800943 unsigned long long value;
Seth Forshee29cd2932012-01-18 13:44:09 -0600944 acpi_status status;
945
Zhang Rui74facaf2013-09-03 08:32:15 +0800946 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
947 NULL, &value);
948 if (ACPI_FAILURE(status)) {
Seth Forshee29cd2932012-01-18 13:44:09 -0600949 pr_err("ACPI INFO method execution failed\n");
950 return -EIO;
951 }
952
Zhang Rui74facaf2013-09-03 08:32:15 +0800953 return value;
Seth Forshee29cd2932012-01-18 13:44:09 -0600954}
955
956static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
957 int scancode)
958{
959 if (scancode == 0x100)
960 return;
961
962 /* act on key press; ignore key release */
963 if (scancode & 0x80)
964 return;
965
966 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
967 pr_info("Unknown key %x\n", scancode);
968}
969
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800970static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500971{
Seth Forshee135740d2011-09-20 16:55:49 -0500972 acpi_status status;
Zhang Ruie2e19602013-09-03 08:32:06 +0800973 acpi_handle ec_handle;
Seth Forshee135740d2011-09-20 16:55:49 -0500974 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -0600975 u32 hci_result;
Seth Forshee135740d2011-09-20 16:55:49 -0500976
Seth Forshee135740d2011-09-20 16:55:49 -0500977 dev->hotkey_dev = input_allocate_device();
978 if (!dev->hotkey_dev) {
979 pr_info("Unable to register input device\n");
980 return -ENOMEM;
981 }
982
983 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -0500984 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -0500985 dev->hotkey_dev->id.bustype = BUS_HOST;
986
987 error = sparse_keymap_setup(dev->hotkey_dev, toshiba_acpi_keymap, NULL);
988 if (error)
989 goto err_free_dev;
990
Seth Forshee29cd2932012-01-18 13:44:09 -0600991 /*
992 * For some machines the SCI responsible for providing hotkey
993 * notification doesn't fire. We can trigger the notification
994 * whenever the Fn key is pressed using the NTFY method, if
995 * supported, so if it's present set up an i8042 key filter
996 * for this purpose.
997 */
998 status = AE_ERROR;
999 ec_handle = ec_get_handle();
Zhang Ruie2e19602013-09-03 08:32:06 +08001000 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
Seth Forshee29cd2932012-01-18 13:44:09 -06001001 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
1002
1003 error = i8042_install_filter(toshiba_acpi_i8042_filter);
1004 if (error) {
1005 pr_err("Error installing key filter\n");
1006 goto err_free_keymap;
1007 }
1008
1009 dev->ntfy_supported = 1;
1010 }
1011
1012 /*
1013 * Determine hotkey query interface. Prefer using the INFO
1014 * method when it is available.
1015 */
Zhang Ruie2e19602013-09-03 08:32:06 +08001016 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
Seth Forshee29cd2932012-01-18 13:44:09 -06001017 dev->info_supported = 1;
Zhang Ruie2e19602013-09-03 08:32:06 +08001018 else {
Seth Forshee29cd2932012-01-18 13:44:09 -06001019 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
1020 if (hci_result == HCI_SUCCESS)
1021 dev->system_event_supported = 1;
1022 }
1023
1024 if (!dev->info_supported && !dev->system_event_supported) {
1025 pr_warn("No hotkey query interface found\n");
1026 goto err_remove_filter;
1027 }
1028
Seth Forshee6e02cc72011-09-20 16:55:51 -05001029 status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05001030 if (ACPI_FAILURE(status)) {
1031 pr_info("Unable to enable hotkeys\n");
1032 error = -ENODEV;
Seth Forshee29cd2932012-01-18 13:44:09 -06001033 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001034 }
1035
1036 error = input_register_device(dev->hotkey_dev);
1037 if (error) {
1038 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001039 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001040 }
1041
Seth Forshee29cd2932012-01-18 13:44:09 -06001042 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result);
Seth Forshee135740d2011-09-20 16:55:49 -05001043 return 0;
1044
Seth Forshee29cd2932012-01-18 13:44:09 -06001045 err_remove_filter:
1046 if (dev->ntfy_supported)
1047 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05001048 err_free_keymap:
1049 sparse_keymap_free(dev->hotkey_dev);
1050 err_free_dev:
1051 input_free_device(dev->hotkey_dev);
1052 dev->hotkey_dev = NULL;
1053 return error;
1054}
1055
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001056static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
Seth Forshee62cce752012-04-19 11:23:50 -05001057{
1058 struct backlight_properties props;
1059 int brightness;
1060 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +09001061 bool enabled;
Seth Forshee62cce752012-04-19 11:23:50 -05001062
1063 /*
1064 * Some machines don't support the backlight methods at all, and
1065 * others support it read-only. Either of these is pretty useless,
1066 * so only register the backlight device if the backlight method
1067 * supports both reads and writes.
1068 */
1069 brightness = __get_lcd_brightness(dev);
1070 if (brightness < 0)
1071 return 0;
1072 ret = set_lcd_brightness(dev, brightness);
1073 if (ret) {
1074 pr_debug("Backlight method is read-only, disabling backlight support\n");
1075 return 0;
1076 }
1077
Akio Idehara121b7b02012-04-06 01:46:43 +09001078 /* Determine whether or not BIOS supports transflective backlight */
1079 ret = get_tr_backlight_status(dev, &enabled);
1080 dev->tr_backlight_supported = !ret;
1081
Matthew Garrett53039f22012-06-01 11:02:36 -04001082 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05001083 props.type = BACKLIGHT_PLATFORM;
1084 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001085
Akio Idehara121b7b02012-04-06 01:46:43 +09001086 /* adding an extra level and having 0 change to transflective mode */
1087 if (dev->tr_backlight_supported)
1088 props.max_brightness++;
1089
Seth Forshee62cce752012-04-19 11:23:50 -05001090 dev->backlight_dev = backlight_device_register("toshiba",
1091 &dev->acpi_dev->dev,
1092 dev,
1093 &toshiba_backlight_data,
1094 &props);
1095 if (IS_ERR(dev->backlight_dev)) {
1096 ret = PTR_ERR(dev->backlight_dev);
1097 pr_err("Could not register toshiba backlight device\n");
1098 dev->backlight_dev = NULL;
1099 return ret;
1100 }
1101
1102 dev->backlight_dev->props.brightness = brightness;
1103 return 0;
1104}
1105
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001106static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001107{
1108 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
1109
Seth Forshee36d03f92011-09-20 16:55:53 -05001110 remove_toshiba_proc_entries(dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001111
Seth Forshee29cd2932012-01-18 13:44:09 -06001112 if (dev->ntfy_supported) {
1113 i8042_remove_filter(toshiba_acpi_i8042_filter);
1114 cancel_work_sync(&dev->hotkey_work);
1115 }
1116
Seth Forshee135740d2011-09-20 16:55:49 -05001117 if (dev->hotkey_dev) {
1118 input_unregister_device(dev->hotkey_dev);
1119 sparse_keymap_free(dev->hotkey_dev);
1120 }
1121
1122 if (dev->bt_rfk) {
1123 rfkill_unregister(dev->bt_rfk);
1124 rfkill_destroy(dev->bt_rfk);
1125 }
1126
1127 if (dev->backlight_dev)
1128 backlight_device_unregister(dev->backlight_dev);
1129
Seth Forshee36d03f92011-09-20 16:55:53 -05001130 if (dev->illumination_supported)
Seth Forshee135740d2011-09-20 16:55:49 -05001131 led_classdev_unregister(&dev->led_dev);
1132
Seth Forshee29cd2932012-01-18 13:44:09 -06001133 if (toshiba_acpi)
1134 toshiba_acpi = NULL;
1135
Seth Forshee135740d2011-09-20 16:55:49 -05001136 kfree(dev);
1137
1138 return 0;
1139}
1140
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001141static const char *find_hci_method(acpi_handle handle)
Seth Forsheea540d6b2011-09-20 16:55:52 -05001142{
Zhang Ruie2e19602013-09-03 08:32:06 +08001143 if (acpi_has_method(handle, "GHCI"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001144 return "GHCI";
1145
Zhang Ruie2e19602013-09-03 08:32:06 +08001146 if (acpi_has_method(handle, "SPFC"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001147 return "SPFC";
1148
1149 return NULL;
1150}
1151
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001152static int toshiba_acpi_add(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001153{
1154 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001155 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05001156 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05001157 bool bt_present;
1158 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05001159
Seth Forshee29cd2932012-01-18 13:44:09 -06001160 if (toshiba_acpi)
1161 return -EBUSY;
1162
Seth Forshee135740d2011-09-20 16:55:49 -05001163 pr_info("Toshiba Laptop ACPI Extras version %s\n",
1164 TOSHIBA_ACPI_VERSION);
1165
Seth Forsheea540d6b2011-09-20 16:55:52 -05001166 hci_method = find_hci_method(acpi_dev->handle);
1167 if (!hci_method) {
1168 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05001169 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001170 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05001171
Seth Forshee135740d2011-09-20 16:55:49 -05001172 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1173 if (!dev)
1174 return -ENOMEM;
1175 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001176 dev->method_hci = hci_method;
Seth Forshee135740d2011-09-20 16:55:49 -05001177 acpi_dev->driver_data = dev;
1178
Seth Forshee6e02cc72011-09-20 16:55:51 -05001179 if (toshiba_acpi_setup_keyboard(dev))
1180 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05001181
1182 mutex_init(&dev->mutex);
1183
Seth Forshee62cce752012-04-19 11:23:50 -05001184 ret = toshiba_acpi_setup_backlight(dev);
1185 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05001186 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05001187
1188 /* Register rfkill switch for Bluetooth */
1189 if (hci_get_bt_present(dev, &bt_present) == HCI_SUCCESS && bt_present) {
1190 dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth",
1191 &acpi_dev->dev,
1192 RFKILL_TYPE_BLUETOOTH,
1193 &toshiba_rfk_ops,
1194 dev);
1195 if (!dev->bt_rfk) {
1196 pr_err("unable to allocate rfkill device\n");
1197 ret = -ENOMEM;
1198 goto error;
1199 }
1200
1201 ret = rfkill_register(dev->bt_rfk);
1202 if (ret) {
1203 pr_err("unable to register rfkill device\n");
1204 rfkill_destroy(dev->bt_rfk);
1205 goto error;
1206 }
1207 }
1208
1209 if (toshiba_illumination_available(dev)) {
1210 dev->led_dev.name = "toshiba::illumination";
1211 dev->led_dev.max_brightness = 1;
1212 dev->led_dev.brightness_set = toshiba_illumination_set;
1213 dev->led_dev.brightness_get = toshiba_illumination_get;
1214 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Seth Forshee36d03f92011-09-20 16:55:53 -05001215 dev->illumination_supported = 1;
Seth Forshee135740d2011-09-20 16:55:49 -05001216 }
1217
Seth Forshee36d03f92011-09-20 16:55:53 -05001218 /* Determine whether or not BIOS supports fan and video interfaces */
1219
1220 ret = get_video_status(dev, &dummy);
1221 dev->video_supported = !ret;
1222
1223 ret = get_fan_status(dev, &dummy);
1224 dev->fan_supported = !ret;
1225
1226 create_toshiba_proc_entries(dev);
1227
Seth Forshee29cd2932012-01-18 13:44:09 -06001228 toshiba_acpi = dev;
1229
Seth Forshee135740d2011-09-20 16:55:49 -05001230 return 0;
1231
1232error:
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001233 toshiba_acpi_remove(acpi_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001234 return ret;
1235}
1236
1237static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
1238{
1239 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001240 u32 hci_result, value;
Seth Forshee11948b92011-11-16 17:37:45 -06001241 int retries = 3;
Seth Forshee29cd2932012-01-18 13:44:09 -06001242 int scancode;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001243
Seth Forshee29cd2932012-01-18 13:44:09 -06001244 if (event != 0x80)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001245 return;
Seth Forshee11948b92011-11-16 17:37:45 -06001246
Seth Forshee29cd2932012-01-18 13:44:09 -06001247 if (dev->info_supported) {
1248 scancode = toshiba_acpi_query_hotkey(dev);
1249 if (scancode < 0)
1250 pr_err("Failed to query hotkey event\n");
1251 else if (scancode != 0)
1252 toshiba_acpi_report_hotkey(dev, scancode);
1253 } else if (dev->system_event_supported) {
1254 do {
1255 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
1256 switch (hci_result) {
1257 case HCI_SUCCESS:
1258 toshiba_acpi_report_hotkey(dev, (int)value);
1259 break;
1260 case HCI_NOT_SUPPORTED:
1261 /*
1262 * This is a workaround for an unresolved
1263 * issue on some machines where system events
1264 * sporadically become disabled.
1265 */
1266 hci_write1(dev, HCI_SYSTEM_EVENT, 1,
1267 &hci_result);
1268 pr_notice("Re-enabled hotkeys\n");
1269 /* fall through */
1270 default:
1271 retries--;
1272 break;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001273 }
Seth Forshee29cd2932012-01-18 13:44:09 -06001274 } while (retries && hci_result != HCI_EMPTY);
1275 }
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001276}
1277
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001278#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001279static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001280{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001281 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001282 u32 result;
1283
1284 if (dev->hotkey_dev)
1285 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result);
1286
1287 return 0;
1288}
1289
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001290static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001291{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001292 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001293 u32 result;
1294
1295 if (dev->hotkey_dev)
1296 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result);
1297
1298 return 0;
1299}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001300#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001301
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001302static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
1303 toshiba_acpi_suspend, toshiba_acpi_resume);
1304
Seth Forshee135740d2011-09-20 16:55:49 -05001305static struct acpi_driver toshiba_acpi_driver = {
1306 .name = "Toshiba ACPI driver",
1307 .owner = THIS_MODULE,
1308 .ids = toshiba_device_ids,
1309 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1310 .ops = {
1311 .add = toshiba_acpi_add,
1312 .remove = toshiba_acpi_remove,
1313 .notify = toshiba_acpi_notify,
1314 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001315 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05001316};
Holger Machtc9263552006-10-20 14:30:29 -07001317
Len Brown4be44fc2005-08-05 00:44:28 -04001318static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Seth Forshee135740d2011-09-20 16:55:49 -05001320 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Seth Forsheef11f9992012-01-18 13:44:11 -06001322 /*
1323 * Machines with this WMI guid aren't supported due to bugs in
1324 * their AML. This check relies on wmi initializing before
1325 * toshiba_acpi to guarantee guids have been identified.
1326 */
1327 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
1328 return -ENODEV;
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
1331 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05001332 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001333 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
Seth Forshee135740d2011-09-20 16:55:49 -05001336 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
1337 if (ret) {
1338 pr_err("Failed to register ACPI driver: %d\n", ret);
1339 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07001340 }
1341
Seth Forshee135740d2011-09-20 16:55:49 -05001342 return ret;
1343}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001344
Seth Forshee135740d2011-09-20 16:55:49 -05001345static void __exit toshiba_acpi_exit(void)
1346{
1347 acpi_bus_unregister_driver(&toshiba_acpi_driver);
1348 if (toshiba_proc_dir)
1349 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352module_init(toshiba_acpi_init);
1353module_exit(toshiba_acpi_exit);