blob: 90dd7645a9e504449fd837ec1ad280775fc84ae9 [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>
Lv Zheng8b484632013-12-03 08:49:16 +080057#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/uaccess.h>
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_AUTHOR("John Belmonte");
61MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
62MODULE_LICENSE("GPL");
63
Seth Forsheef11f9992012-01-18 13:44:11 -060064#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
65
Seth Forshee29cd2932012-01-18 13:44:09 -060066/* Scan code for Fn key on TOS1900 models */
67#define TOS1900_FN_SCAN 0x6e
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* Toshiba ACPI method paths */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
71
72/* Toshiba HCI interface definitions
73 *
74 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
75 * be uniform across all their models. Ideally we would just call
76 * dedicated ACPI methods instead of using this primitive interface.
77 * However the ACPI methods seem to be incomplete in some areas (for
78 * example they allow setting, but not reading, the LCD brightness value),
79 * so this is still useful.
80 */
81
82#define HCI_WORDS 6
83
84/* operations */
85#define HCI_SET 0xff00
86#define HCI_GET 0xfe00
87
88/* return codes */
89#define HCI_SUCCESS 0x0000
90#define HCI_FAILURE 0x1000
91#define HCI_NOT_SUPPORTED 0x8000
92#define HCI_EMPTY 0x8c00
93
94/* registers */
95#define HCI_FAN 0x0004
Akio Idehara121b7b02012-04-06 01:46:43 +090096#define HCI_TR_BACKLIGHT 0x0005
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define HCI_SYSTEM_EVENT 0x0016
98#define HCI_VIDEO_OUT 0x001c
99#define HCI_HOTKEY_EVENT 0x001e
100#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400101#define HCI_WIRELESS 0x0056
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* field definitions */
Seth Forshee29cd2932012-01-18 13:44:09 -0600104#define HCI_HOTKEY_DISABLE 0x0b
105#define HCI_HOTKEY_ENABLE 0x09
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define HCI_LCD_BRIGHTNESS_BITS 3
107#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
108#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
109#define HCI_VIDEO_OUT_LCD 0x1
110#define HCI_VIDEO_OUT_CRT 0x2
111#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400112#define HCI_WIRELESS_KILL_SWITCH 0x01
113#define HCI_WIRELESS_BT_PRESENT 0x0f
114#define HCI_WIRELESS_BT_ATTACH 0x40
115#define HCI_WIRELESS_BT_POWER 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Seth Forshee135740d2011-09-20 16:55:49 -0500117struct toshiba_acpi_dev {
118 struct acpi_device *acpi_dev;
119 const char *method_hci;
120 struct rfkill *bt_rfk;
121 struct input_dev *hotkey_dev;
Seth Forshee29cd2932012-01-18 13:44:09 -0600122 struct work_struct hotkey_work;
Seth Forshee135740d2011-09-20 16:55:49 -0500123 struct backlight_device *backlight_dev;
124 struct led_classdev led_dev;
Seth Forshee36d03f92011-09-20 16:55:53 -0500125
Seth Forshee135740d2011-09-20 16:55:49 -0500126 int force_fan;
127 int last_key_event;
128 int key_event_valid;
Seth Forshee135740d2011-09-20 16:55:49 -0500129
Dan Carpenter592b7462012-01-15 14:28:20 +0300130 unsigned int illumination_supported:1;
131 unsigned int video_supported:1;
132 unsigned int fan_supported:1;
133 unsigned int system_event_supported:1;
Seth Forshee29cd2932012-01-18 13:44:09 -0600134 unsigned int ntfy_supported:1;
135 unsigned int info_supported:1;
Akio Idehara121b7b02012-04-06 01:46:43 +0900136 unsigned int tr_backlight_supported:1;
Seth Forshee36d03f92011-09-20 16:55:53 -0500137
Seth Forshee135740d2011-09-20 16:55:49 -0500138 struct mutex mutex;
139};
140
Seth Forshee29cd2932012-01-18 13:44:09 -0600141static struct toshiba_acpi_dev *toshiba_acpi;
142
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800143static const struct acpi_device_id toshiba_device_ids[] = {
144 {"TOS6200", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400145 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800146 {"TOS1900", 0},
147 {"", 0},
148};
149MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
150
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800151static const struct key_entry toshiba_acpi_keymap[] = {
Unai Uribarrifec278a2014-01-14 11:06:47 +0100152 { KE_KEY, 0x9e, { KEY_RFKILL } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700153 { KE_KEY, 0x101, { KEY_MUTE } },
154 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
155 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600156 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
157 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700158 { KE_KEY, 0x13b, { KEY_COFFEE } },
159 { KE_KEY, 0x13c, { KEY_BATTERY } },
160 { KE_KEY, 0x13d, { KEY_SLEEP } },
161 { KE_KEY, 0x13e, { KEY_SUSPEND } },
162 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
163 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
164 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
165 { KE_KEY, 0x142, { KEY_WLAN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600166 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
Jon Dowlanda49010f2010-10-27 00:24:59 +0100167 { KE_KEY, 0x17f, { KEY_FN } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700168 { KE_KEY, 0xb05, { KEY_PROG2 } },
169 { KE_KEY, 0xb06, { KEY_WWW } },
170 { KE_KEY, 0xb07, { KEY_MAIL } },
171 { KE_KEY, 0xb30, { KEY_STOP } },
172 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
173 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
174 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
175 { KE_KEY, 0xb5a, { KEY_MEDIA } },
Azael Avalosaf502832012-01-18 13:44:10 -0600176 { KE_IGNORE, 0x1430, { KEY_RESERVED } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700177 { KE_END, 0 },
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500178};
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/* utility
181 */
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 *word = (*word & ~mask) | (mask * value);
186}
187
188/* acpi interface wrappers
189 */
190
Len Brown4be44fc2005-08-05 00:44:28 -0400191static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 acpi_status status;
194
Zhang Rui619400d2013-09-03 08:31:56 +0800195 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500196 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* Perform a raw HCI call. Here we don't care about input or output buffer
200 * format.
201 */
Seth Forshee135740d2011-09-20 16:55:49 -0500202static acpi_status hci_raw(struct toshiba_acpi_dev *dev,
203 const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct acpi_object_list params;
206 union acpi_object in_objs[HCI_WORDS];
207 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400208 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 acpi_status status;
210 int i;
211
212 params.count = HCI_WORDS;
213 params.pointer = in_objs;
214 for (i = 0; i < HCI_WORDS; ++i) {
215 in_objs[i].type = ACPI_TYPE_INTEGER;
216 in_objs[i].integer.value = in[i];
217 }
218
219 results.length = sizeof(out_objs);
220 results.pointer = out_objs;
221
Seth Forshee6e02cc72011-09-20 16:55:51 -0500222 status = acpi_evaluate_object(dev->acpi_dev->handle,
223 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400224 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
226 for (i = 0; i < out_objs->package.count; ++i) {
227 out[i] = out_objs->package.elements[i].integer.value;
228 }
229 }
230
231 return status;
232}
233
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400234/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 *
236 * In addition to the ACPI status, the HCI system returns a result which
237 * may be useful (such as "not supported").
238 */
239
Seth Forshee135740d2011-09-20 16:55:49 -0500240static acpi_status hci_write1(struct toshiba_acpi_dev *dev, u32 reg,
241 u32 in1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
244 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500245 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
247 return status;
248}
249
Seth Forshee135740d2011-09-20 16:55:49 -0500250static acpi_status hci_read1(struct toshiba_acpi_dev *dev, u32 reg,
251 u32 *out1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
254 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500255 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *out1 = out[2];
257 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
258 return status;
259}
260
Seth Forshee135740d2011-09-20 16:55:49 -0500261static acpi_status hci_write2(struct toshiba_acpi_dev *dev, u32 reg,
262 u32 in1, u32 in2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400263{
264 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
265 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500266 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400267 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
268 return status;
269}
270
Seth Forshee135740d2011-09-20 16:55:49 -0500271static acpi_status hci_read2(struct toshiba_acpi_dev *dev, u32 reg,
272 u32 *out1, u32 *out2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400273{
274 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
275 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500276 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400277 *out1 = out[2];
278 *out2 = out[3];
279 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
280 return status;
281}
282
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200283/* Illumination support */
Seth Forshee135740d2011-09-20 16:55:49 -0500284static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200285{
286 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
287 u32 out[HCI_WORDS];
288 acpi_status status;
289
290 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500291 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200292 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700293 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200294 return 0;
295 }
296 in[0] = 0xf400;
Seth Forshee135740d2011-09-20 16:55:49 -0500297 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200298 return 1;
299}
300
301static void toshiba_illumination_set(struct led_classdev *cdev,
302 enum led_brightness brightness)
303{
Seth Forshee135740d2011-09-20 16:55:49 -0500304 struct toshiba_acpi_dev *dev = container_of(cdev,
305 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200306 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
307 u32 out[HCI_WORDS];
308 acpi_status status;
309
310 /* First request : initialize communication. */
311 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500312 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200313 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700314 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200315 return;
316 }
317
318 if (brightness) {
319 /* Switch the illumination on */
320 in[0] = 0xf400;
321 in[1] = 0x14e;
322 in[2] = 1;
Seth Forshee135740d2011-09-20 16:55:49 -0500323 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200324 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700325 pr_info("ACPI call for illumination failed\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200326 return;
327 }
328 } else {
329 /* Switch the illumination off */
330 in[0] = 0xf400;
331 in[1] = 0x14e;
332 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500333 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200334 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700335 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200336 return;
337 }
338 }
339
340 /* Last request : close communication. */
341 in[0] = 0xf200;
342 in[1] = 0;
343 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500344 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200345}
346
347static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
348{
Seth Forshee135740d2011-09-20 16:55:49 -0500349 struct toshiba_acpi_dev *dev = container_of(cdev,
350 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200351 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
352 u32 out[HCI_WORDS];
353 acpi_status status;
354 enum led_brightness result;
355
356 /* First request : initialize communication. */
357 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500358 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200359 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700360 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200361 return LED_OFF;
362 }
363
364 /* Check the illumination */
365 in[0] = 0xf300;
366 in[1] = 0x14e;
Seth Forshee135740d2011-09-20 16:55:49 -0500367 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200368 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700369 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200370 return LED_OFF;
371 }
372
373 result = out[2] ? LED_FULL : LED_OFF;
374
375 /* Last request : close communication. */
376 in[0] = 0xf200;
377 in[1] = 0;
378 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500379 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200380
381 return result;
382}
383
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400384/* Bluetooth rfkill handlers */
385
Seth Forshee135740d2011-09-20 16:55:49 -0500386static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400387{
388 u32 hci_result;
389 u32 value, value2;
390
391 value = 0;
392 value2 = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500393 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400394 if (hci_result == HCI_SUCCESS)
395 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
396
397 return hci_result;
398}
399
Seth Forshee135740d2011-09-20 16:55:49 -0500400static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400401{
402 u32 hci_result;
403 u32 value, value2;
404
405 value = 0;
406 value2 = 0x0001;
Seth Forshee135740d2011-09-20 16:55:49 -0500407 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400408
409 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
410 return hci_result;
411}
412
Johannes Berg19d337d2009-06-02 13:01:37 +0200413static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400414{
Johannes Berg19d337d2009-06-02 13:01:37 +0200415 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400416 u32 result1, result2;
417 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200418 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400419 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400420
Johannes Berg19d337d2009-06-02 13:01:37 +0200421 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400422
423 mutex_lock(&dev->mutex);
Seth Forshee135740d2011-09-20 16:55:49 -0500424 if (hci_get_radio_state(dev, &radio_state) != HCI_SUCCESS) {
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500425 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200426 goto out;
427 }
428
429 if (!radio_state) {
430 err = 0;
431 goto out;
432 }
433
Seth Forshee135740d2011-09-20 16:55:49 -0500434 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
435 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400436
437 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500438 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200439 else
440 err = 0;
441 out:
442 mutex_unlock(&dev->mutex);
443 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400444}
445
Johannes Berg19d337d2009-06-02 13:01:37 +0200446static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400447{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400448 bool new_rfk_state;
449 bool value;
450 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200451 struct toshiba_acpi_dev *dev = data;
452
453 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400454
Seth Forshee135740d2011-09-20 16:55:49 -0500455 hci_result = hci_get_radio_state(dev, &value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200456 if (hci_result != HCI_SUCCESS) {
457 /* Can't do anything useful */
458 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700459 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200460 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400461
462 new_rfk_state = value;
463
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400464 mutex_unlock(&dev->mutex);
465
Johannes Berg19d337d2009-06-02 13:01:37 +0200466 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
467 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400468}
469
Johannes Berg19d337d2009-06-02 13:01:37 +0200470static const struct rfkill_ops toshiba_rfk_ops = {
471 .set_block = bt_rfkill_set_block,
472 .poll = bt_rfkill_poll,
473};
474
Akio Idehara121b7b02012-04-06 01:46:43 +0900475static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled)
476{
477 u32 hci_result;
478 u32 status;
479
480 hci_read1(dev, HCI_TR_BACKLIGHT, &status, &hci_result);
481 *enabled = !status;
482 return hci_result == HCI_SUCCESS ? 0 : -EIO;
483}
484
485static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable)
486{
487 u32 hci_result;
488 u32 value = !enable;
489
490 hci_write1(dev, HCI_TR_BACKLIGHT, value, &hci_result);
491 return hci_result == HCI_SUCCESS ? 0 : -EIO;
492}
493
Len Brown4be44fc2005-08-05 00:44:28 -0400494static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Seth Forshee62cce752012-04-19 11:23:50 -0500496static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 u32 hci_result;
499 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900500 int brightness = 0;
501
502 if (dev->tr_backlight_supported) {
503 bool enabled;
504 int ret = get_tr_backlight_status(dev, &enabled);
505 if (ret)
506 return ret;
507 if (enabled)
508 return 0;
509 brightness++;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Seth Forshee135740d2011-09-20 16:55:49 -0500512 hci_read1(dev, HCI_LCD_BRIGHTNESS, &value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500513 if (hci_result == HCI_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +0900514 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500515
516 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700517}
518
Seth Forshee62cce752012-04-19 11:23:50 -0500519static int get_lcd_brightness(struct backlight_device *bd)
520{
521 struct toshiba_acpi_dev *dev = bl_get_data(bd);
522 return __get_lcd_brightness(dev);
523}
524
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800525static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700526{
Seth Forshee135740d2011-09-20 16:55:49 -0500527 struct toshiba_acpi_dev *dev = m->private;
528 int value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900529 int levels;
Holger Machtc9263552006-10-20 14:30:29 -0700530
Seth Forshee135740d2011-09-20 16:55:49 -0500531 if (!dev->backlight_dev)
532 return -ENODEV;
533
Akio Idehara121b7b02012-04-06 01:46:43 +0900534 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -0500535 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -0700536 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800537 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +0900538 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500542 pr_err("Error reading LCD brightness\n");
543 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800544}
545
546static int lcd_proc_open(struct inode *inode, struct file *file)
547{
Al Virod9dda782013-03-31 18:16:14 -0400548 return single_open(file, lcd_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Seth Forshee62cce752012-04-19 11:23:50 -0500551static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -0700552{
553 u32 hci_result;
554
Akio Idehara121b7b02012-04-06 01:46:43 +0900555 if (dev->tr_backlight_supported) {
556 bool enable = !value;
557 int ret = set_tr_backlight_status(dev, enable);
558 if (ret)
559 return ret;
560 if (value)
561 value--;
562 }
563
Holger Machtc9263552006-10-20 14:30:29 -0700564 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
Seth Forshee135740d2011-09-20 16:55:49 -0500565 hci_write1(dev, HCI_LCD_BRIGHTNESS, value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500566 return hci_result == HCI_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700567}
568
569static int set_lcd_status(struct backlight_device *bd)
570{
Seth Forshee135740d2011-09-20 16:55:49 -0500571 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Seth Forshee62cce752012-04-19 11:23:50 -0500572 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700573}
574
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800575static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
576 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Al Virod9dda782013-03-31 18:16:14 -0400578 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800579 char cmd[42];
580 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800582 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +0900583 int levels = dev->backlight_dev->props.max_brightness + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800585 len = min(count, sizeof(cmd) - 1);
586 if (copy_from_user(cmd, buf, len))
587 return -EFAULT;
588 cmd[len] = '\0';
589
590 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Akio Idehara121b7b02012-04-06 01:46:43 +0900591 value >= 0 && value < levels) {
Seth Forshee62cce752012-04-19 11:23:50 -0500592 ret = set_lcd_brightness(dev, value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800593 if (ret == 0)
594 ret = count;
595 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700596 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800597 }
Holger Machtc9263552006-10-20 14:30:29 -0700598 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800601static const struct file_operations lcd_proc_fops = {
602 .owner = THIS_MODULE,
603 .open = lcd_proc_open,
604 .read = seq_read,
605 .llseek = seq_lseek,
606 .release = single_release,
607 .write = lcd_proc_write,
608};
609
Seth Forshee36d03f92011-09-20 16:55:53 -0500610static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
611{
612 u32 hci_result;
613
614 hci_read1(dev, HCI_VIDEO_OUT, status, &hci_result);
615 return hci_result == HCI_SUCCESS ? 0 : -EIO;
616}
617
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800618static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Seth Forshee135740d2011-09-20 16:55:49 -0500620 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 u32 value;
Seth Forshee36d03f92011-09-20 16:55:53 -0500622 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Seth Forshee36d03f92011-09-20 16:55:53 -0500624 ret = get_video_status(dev, &value);
625 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
627 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400628 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800629 seq_printf(m, "lcd_out: %d\n", is_lcd);
630 seq_printf(m, "crt_out: %d\n", is_crt);
631 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
Seth Forshee36d03f92011-09-20 16:55:53 -0500634 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800637static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Al Virod9dda782013-03-31 18:16:14 -0400639 return single_open(file, video_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800640}
641
642static ssize_t video_proc_write(struct file *file, const char __user *buf,
643 size_t count, loff_t *pos)
644{
Al Virod9dda782013-03-31 18:16:14 -0400645 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800646 char *cmd, *buffer;
Seth Forshee36d03f92011-09-20 16:55:53 -0500647 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int value;
649 int remain = count;
650 int lcd_out = -1;
651 int crt_out = -1;
652 int tv_out = -1;
Al Virob4482a42007-10-14 19:35:40 +0100653 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800655 cmd = kmalloc(count + 1, GFP_KERNEL);
656 if (!cmd)
657 return -ENOMEM;
658 if (copy_from_user(cmd, buf, count)) {
659 kfree(cmd);
660 return -EFAULT;
661 }
662 cmd[count] = '\0';
663
664 buffer = cmd;
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* scan expression. Multiple expressions may be delimited with ;
667 *
668 * NOTE: to keep scanning simple, invalid fields are ignored
669 */
670 while (remain) {
671 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
672 lcd_out = value & 1;
673 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
674 crt_out = value & 1;
675 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
676 tv_out = value & 1;
677 /* advance to one character past the next ; */
678 do {
679 ++buffer;
680 --remain;
681 }
Len Brown4be44fc2005-08-05 00:44:28 -0400682 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800685 kfree(cmd);
686
Seth Forshee36d03f92011-09-20 16:55:53 -0500687 ret = get_video_status(dev, &video_out);
688 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700689 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (lcd_out != -1)
691 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
692 if (crt_out != -1)
693 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
694 if (tv_out != -1)
695 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
696 /* To avoid unnecessary video disruption, only write the new
697 * video setting if something changed. */
698 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500699 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500702 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800705static const struct file_operations video_proc_fops = {
706 .owner = THIS_MODULE,
707 .open = video_proc_open,
708 .read = seq_read,
709 .llseek = seq_lseek,
710 .release = single_release,
711 .write = video_proc_write,
712};
713
Seth Forshee36d03f92011-09-20 16:55:53 -0500714static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
715{
716 u32 hci_result;
717
718 hci_read1(dev, HCI_FAN, status, &hci_result);
719 return hci_result == HCI_SUCCESS ? 0 : -EIO;
720}
721
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800722static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Seth Forshee135740d2011-09-20 16:55:49 -0500724 struct toshiba_acpi_dev *dev = m->private;
Seth Forshee36d03f92011-09-20 16:55:53 -0500725 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 u32 value;
727
Seth Forshee36d03f92011-09-20 16:55:53 -0500728 ret = get_fan_status(dev, &value);
729 if (!ret) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800730 seq_printf(m, "running: %d\n", (value > 0));
Seth Forshee135740d2011-09-20 16:55:49 -0500731 seq_printf(m, "force_on: %d\n", dev->force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733
Seth Forshee36d03f92011-09-20 16:55:53 -0500734 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800737static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Al Virod9dda782013-03-31 18:16:14 -0400739 return single_open(file, fan_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800740}
741
742static ssize_t fan_proc_write(struct file *file, const char __user *buf,
743 size_t count, loff_t *pos)
744{
Al Virod9dda782013-03-31 18:16:14 -0400745 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800746 char cmd[42];
747 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int value;
749 u32 hci_result;
750
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800751 len = min(count, sizeof(cmd) - 1);
752 if (copy_from_user(cmd, buf, len))
753 return -EFAULT;
754 cmd[len] = '\0';
755
756 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400757 value >= 0 && value <= 1) {
Seth Forshee135740d2011-09-20 16:55:49 -0500758 hci_write1(dev, HCI_FAN, value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (hci_result != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500760 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 else
Seth Forshee135740d2011-09-20 16:55:49 -0500762 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 } else {
764 return -EINVAL;
765 }
766
767 return count;
768}
769
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800770static const struct file_operations fan_proc_fops = {
771 .owner = THIS_MODULE,
772 .open = fan_proc_open,
773 .read = seq_read,
774 .llseek = seq_lseek,
775 .release = single_release,
776 .write = fan_proc_write,
777};
778
779static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Seth Forshee135740d2011-09-20 16:55:49 -0500781 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 u32 hci_result;
783 u32 value;
784
Seth Forshee11948b92011-11-16 17:37:45 -0600785 if (!dev->key_event_valid && dev->system_event_supported) {
Seth Forshee135740d2011-09-20 16:55:49 -0500786 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (hci_result == HCI_SUCCESS) {
Seth Forshee135740d2011-09-20 16:55:49 -0500788 dev->key_event_valid = 1;
789 dev->last_key_event = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 } else if (hci_result == HCI_EMPTY) {
791 /* better luck next time */
792 } else if (hci_result == HCI_NOT_SUPPORTED) {
793 /* This is a workaround for an unresolved issue on
794 * some machines where system events sporadically
795 * become disabled. */
Seth Forshee135740d2011-09-20 16:55:49 -0500796 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
Joe Perches7e334602011-03-29 15:21:52 -0700797 pr_notice("Re-enabled hotkeys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else {
Joe Perches7e334602011-03-29 15:21:52 -0700799 pr_err("Error reading hotkey status\n");
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500800 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802 }
803
Seth Forshee135740d2011-09-20 16:55:49 -0500804 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
805 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800806 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800809static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Al Virod9dda782013-03-31 18:16:14 -0400811 return single_open(file, keys_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800812}
813
814static ssize_t keys_proc_write(struct file *file, const char __user *buf,
815 size_t count, loff_t *pos)
816{
Al Virod9dda782013-03-31 18:16:14 -0400817 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800818 char cmd[42];
819 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 int value;
821
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800822 len = min(count, sizeof(cmd) - 1);
823 if (copy_from_user(cmd, buf, len))
824 return -EFAULT;
825 cmd[len] = '\0';
826
827 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Seth Forshee135740d2011-09-20 16:55:49 -0500828 dev->key_event_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 } else {
830 return -EINVAL;
831 }
832
833 return count;
834}
835
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800836static const struct file_operations keys_proc_fops = {
837 .owner = THIS_MODULE,
838 .open = keys_proc_open,
839 .read = seq_read,
840 .llseek = seq_lseek,
841 .release = single_release,
842 .write = keys_proc_write,
843};
844
845static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800847 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
848 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800852static int version_proc_open(struct inode *inode, struct file *file)
853{
Al Virod9dda782013-03-31 18:16:14 -0400854 return single_open(file, version_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800855}
856
857static const struct file_operations version_proc_fops = {
858 .owner = THIS_MODULE,
859 .open = version_proc_open,
860 .read = seq_read,
861 .llseek = seq_lseek,
862 .release = single_release,
863};
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865/* proc and module init
866 */
867
868#define PROC_TOSHIBA "toshiba"
869
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800870static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Seth Forshee36d03f92011-09-20 16:55:53 -0500872 if (dev->backlight_dev)
873 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
874 &lcd_proc_fops, dev);
875 if (dev->video_supported)
876 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
877 &video_proc_fops, dev);
878 if (dev->fan_supported)
879 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
880 &fan_proc_fops, dev);
881 if (dev->hotkey_dev)
882 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
883 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -0500884 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
885 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Seth Forshee36d03f92011-09-20 16:55:53 -0500888static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Seth Forshee36d03f92011-09-20 16:55:53 -0500890 if (dev->backlight_dev)
891 remove_proc_entry("lcd", toshiba_proc_dir);
892 if (dev->video_supported)
893 remove_proc_entry("video", toshiba_proc_dir);
894 if (dev->fan_supported)
895 remove_proc_entry("fan", toshiba_proc_dir);
896 if (dev->hotkey_dev)
897 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800898 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Lionel Debrouxacc24722010-11-16 14:14:02 +0100901static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +0900902 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -0500903 .get_brightness = get_lcd_brightness,
904 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700905};
906
Seth Forshee29cd2932012-01-18 13:44:09 -0600907static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
908 struct serio *port)
909{
910 if (str & 0x20)
911 return false;
912
913 if (unlikely(data == 0xe0))
914 return false;
915
916 if ((data & 0x7f) == TOS1900_FN_SCAN) {
917 schedule_work(&toshiba_acpi->hotkey_work);
918 return true;
919 }
920
921 return false;
922}
923
924static void toshiba_acpi_hotkey_work(struct work_struct *work)
925{
926 acpi_handle ec_handle = ec_get_handle();
927 acpi_status status;
928
929 if (!ec_handle)
930 return;
931
932 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
933 if (ACPI_FAILURE(status))
934 pr_err("ACPI NTFY method execution failed\n");
935}
936
937/*
938 * Returns hotkey scancode, or < 0 on failure.
939 */
940static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
941{
Zhang Rui74facaf2013-09-03 08:32:15 +0800942 unsigned long long value;
Seth Forshee29cd2932012-01-18 13:44:09 -0600943 acpi_status status;
944
Zhang Rui74facaf2013-09-03 08:32:15 +0800945 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
946 NULL, &value);
947 if (ACPI_FAILURE(status)) {
Seth Forshee29cd2932012-01-18 13:44:09 -0600948 pr_err("ACPI INFO method execution failed\n");
949 return -EIO;
950 }
951
Zhang Rui74facaf2013-09-03 08:32:15 +0800952 return value;
Seth Forshee29cd2932012-01-18 13:44:09 -0600953}
954
955static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
956 int scancode)
957{
958 if (scancode == 0x100)
959 return;
960
961 /* act on key press; ignore key release */
962 if (scancode & 0x80)
963 return;
964
965 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
966 pr_info("Unknown key %x\n", scancode);
967}
968
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800969static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500970{
Seth Forshee135740d2011-09-20 16:55:49 -0500971 acpi_status status;
Zhang Ruie2e19602013-09-03 08:32:06 +0800972 acpi_handle ec_handle;
Seth Forshee135740d2011-09-20 16:55:49 -0500973 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -0600974 u32 hci_result;
Seth Forshee135740d2011-09-20 16:55:49 -0500975
Seth Forshee135740d2011-09-20 16:55:49 -0500976 dev->hotkey_dev = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -0700977 if (!dev->hotkey_dev)
Seth Forshee135740d2011-09-20 16:55:49 -0500978 return -ENOMEM;
Seth Forshee135740d2011-09-20 16:55:49 -0500979
980 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -0500981 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -0500982 dev->hotkey_dev->id.bustype = BUS_HOST;
983
984 error = sparse_keymap_setup(dev->hotkey_dev, toshiba_acpi_keymap, NULL);
985 if (error)
986 goto err_free_dev;
987
Seth Forshee29cd2932012-01-18 13:44:09 -0600988 /*
989 * For some machines the SCI responsible for providing hotkey
990 * notification doesn't fire. We can trigger the notification
991 * whenever the Fn key is pressed using the NTFY method, if
992 * supported, so if it's present set up an i8042 key filter
993 * for this purpose.
994 */
995 status = AE_ERROR;
996 ec_handle = ec_get_handle();
Zhang Ruie2e19602013-09-03 08:32:06 +0800997 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
Seth Forshee29cd2932012-01-18 13:44:09 -0600998 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
999
1000 error = i8042_install_filter(toshiba_acpi_i8042_filter);
1001 if (error) {
1002 pr_err("Error installing key filter\n");
1003 goto err_free_keymap;
1004 }
1005
1006 dev->ntfy_supported = 1;
1007 }
1008
1009 /*
1010 * Determine hotkey query interface. Prefer using the INFO
1011 * method when it is available.
1012 */
Zhang Ruie2e19602013-09-03 08:32:06 +08001013 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
Seth Forshee29cd2932012-01-18 13:44:09 -06001014 dev->info_supported = 1;
Zhang Ruie2e19602013-09-03 08:32:06 +08001015 else {
Seth Forshee29cd2932012-01-18 13:44:09 -06001016 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
1017 if (hci_result == HCI_SUCCESS)
1018 dev->system_event_supported = 1;
1019 }
1020
1021 if (!dev->info_supported && !dev->system_event_supported) {
1022 pr_warn("No hotkey query interface found\n");
1023 goto err_remove_filter;
1024 }
1025
Seth Forshee6e02cc72011-09-20 16:55:51 -05001026 status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05001027 if (ACPI_FAILURE(status)) {
1028 pr_info("Unable to enable hotkeys\n");
1029 error = -ENODEV;
Seth Forshee29cd2932012-01-18 13:44:09 -06001030 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001031 }
1032
1033 error = input_register_device(dev->hotkey_dev);
1034 if (error) {
1035 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001036 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001037 }
1038
Seth Forshee29cd2932012-01-18 13:44:09 -06001039 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result);
Seth Forshee135740d2011-09-20 16:55:49 -05001040 return 0;
1041
Seth Forshee29cd2932012-01-18 13:44:09 -06001042 err_remove_filter:
1043 if (dev->ntfy_supported)
1044 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05001045 err_free_keymap:
1046 sparse_keymap_free(dev->hotkey_dev);
1047 err_free_dev:
1048 input_free_device(dev->hotkey_dev);
1049 dev->hotkey_dev = NULL;
1050 return error;
1051}
1052
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001053static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
Seth Forshee62cce752012-04-19 11:23:50 -05001054{
1055 struct backlight_properties props;
1056 int brightness;
1057 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +09001058 bool enabled;
Seth Forshee62cce752012-04-19 11:23:50 -05001059
1060 /*
1061 * Some machines don't support the backlight methods at all, and
1062 * others support it read-only. Either of these is pretty useless,
1063 * so only register the backlight device if the backlight method
1064 * supports both reads and writes.
1065 */
1066 brightness = __get_lcd_brightness(dev);
1067 if (brightness < 0)
1068 return 0;
1069 ret = set_lcd_brightness(dev, brightness);
1070 if (ret) {
1071 pr_debug("Backlight method is read-only, disabling backlight support\n");
1072 return 0;
1073 }
1074
Akio Idehara121b7b02012-04-06 01:46:43 +09001075 /* Determine whether or not BIOS supports transflective backlight */
1076 ret = get_tr_backlight_status(dev, &enabled);
1077 dev->tr_backlight_supported = !ret;
1078
Matthew Garrett53039f22012-06-01 11:02:36 -04001079 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05001080 props.type = BACKLIGHT_PLATFORM;
1081 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001082
Akio Idehara121b7b02012-04-06 01:46:43 +09001083 /* adding an extra level and having 0 change to transflective mode */
1084 if (dev->tr_backlight_supported)
1085 props.max_brightness++;
1086
Seth Forshee62cce752012-04-19 11:23:50 -05001087 dev->backlight_dev = backlight_device_register("toshiba",
1088 &dev->acpi_dev->dev,
1089 dev,
1090 &toshiba_backlight_data,
1091 &props);
1092 if (IS_ERR(dev->backlight_dev)) {
1093 ret = PTR_ERR(dev->backlight_dev);
1094 pr_err("Could not register toshiba backlight device\n");
1095 dev->backlight_dev = NULL;
1096 return ret;
1097 }
1098
1099 dev->backlight_dev->props.brightness = brightness;
1100 return 0;
1101}
1102
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001103static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001104{
1105 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
1106
Seth Forshee36d03f92011-09-20 16:55:53 -05001107 remove_toshiba_proc_entries(dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001108
Seth Forshee29cd2932012-01-18 13:44:09 -06001109 if (dev->ntfy_supported) {
1110 i8042_remove_filter(toshiba_acpi_i8042_filter);
1111 cancel_work_sync(&dev->hotkey_work);
1112 }
1113
Seth Forshee135740d2011-09-20 16:55:49 -05001114 if (dev->hotkey_dev) {
1115 input_unregister_device(dev->hotkey_dev);
1116 sparse_keymap_free(dev->hotkey_dev);
1117 }
1118
1119 if (dev->bt_rfk) {
1120 rfkill_unregister(dev->bt_rfk);
1121 rfkill_destroy(dev->bt_rfk);
1122 }
1123
1124 if (dev->backlight_dev)
1125 backlight_device_unregister(dev->backlight_dev);
1126
Seth Forshee36d03f92011-09-20 16:55:53 -05001127 if (dev->illumination_supported)
Seth Forshee135740d2011-09-20 16:55:49 -05001128 led_classdev_unregister(&dev->led_dev);
1129
Seth Forshee29cd2932012-01-18 13:44:09 -06001130 if (toshiba_acpi)
1131 toshiba_acpi = NULL;
1132
Seth Forshee135740d2011-09-20 16:55:49 -05001133 kfree(dev);
1134
1135 return 0;
1136}
1137
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001138static const char *find_hci_method(acpi_handle handle)
Seth Forsheea540d6b2011-09-20 16:55:52 -05001139{
Zhang Ruie2e19602013-09-03 08:32:06 +08001140 if (acpi_has_method(handle, "GHCI"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001141 return "GHCI";
1142
Zhang Ruie2e19602013-09-03 08:32:06 +08001143 if (acpi_has_method(handle, "SPFC"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001144 return "SPFC";
1145
1146 return NULL;
1147}
1148
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001149static int toshiba_acpi_add(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001150{
1151 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001152 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05001153 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05001154 bool bt_present;
1155 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05001156
Seth Forshee29cd2932012-01-18 13:44:09 -06001157 if (toshiba_acpi)
1158 return -EBUSY;
1159
Seth Forshee135740d2011-09-20 16:55:49 -05001160 pr_info("Toshiba Laptop ACPI Extras version %s\n",
1161 TOSHIBA_ACPI_VERSION);
1162
Seth Forsheea540d6b2011-09-20 16:55:52 -05001163 hci_method = find_hci_method(acpi_dev->handle);
1164 if (!hci_method) {
1165 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05001166 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001167 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05001168
Seth Forshee135740d2011-09-20 16:55:49 -05001169 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1170 if (!dev)
1171 return -ENOMEM;
1172 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001173 dev->method_hci = hci_method;
Seth Forshee135740d2011-09-20 16:55:49 -05001174 acpi_dev->driver_data = dev;
1175
Seth Forshee6e02cc72011-09-20 16:55:51 -05001176 if (toshiba_acpi_setup_keyboard(dev))
1177 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05001178
1179 mutex_init(&dev->mutex);
1180
Seth Forshee62cce752012-04-19 11:23:50 -05001181 ret = toshiba_acpi_setup_backlight(dev);
1182 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05001183 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05001184
1185 /* Register rfkill switch for Bluetooth */
1186 if (hci_get_bt_present(dev, &bt_present) == HCI_SUCCESS && bt_present) {
1187 dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth",
1188 &acpi_dev->dev,
1189 RFKILL_TYPE_BLUETOOTH,
1190 &toshiba_rfk_ops,
1191 dev);
1192 if (!dev->bt_rfk) {
1193 pr_err("unable to allocate rfkill device\n");
1194 ret = -ENOMEM;
1195 goto error;
1196 }
1197
1198 ret = rfkill_register(dev->bt_rfk);
1199 if (ret) {
1200 pr_err("unable to register rfkill device\n");
1201 rfkill_destroy(dev->bt_rfk);
1202 goto error;
1203 }
1204 }
1205
1206 if (toshiba_illumination_available(dev)) {
1207 dev->led_dev.name = "toshiba::illumination";
1208 dev->led_dev.max_brightness = 1;
1209 dev->led_dev.brightness_set = toshiba_illumination_set;
1210 dev->led_dev.brightness_get = toshiba_illumination_get;
1211 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Seth Forshee36d03f92011-09-20 16:55:53 -05001212 dev->illumination_supported = 1;
Seth Forshee135740d2011-09-20 16:55:49 -05001213 }
1214
Seth Forshee36d03f92011-09-20 16:55:53 -05001215 /* Determine whether or not BIOS supports fan and video interfaces */
1216
1217 ret = get_video_status(dev, &dummy);
1218 dev->video_supported = !ret;
1219
1220 ret = get_fan_status(dev, &dummy);
1221 dev->fan_supported = !ret;
1222
1223 create_toshiba_proc_entries(dev);
1224
Seth Forshee29cd2932012-01-18 13:44:09 -06001225 toshiba_acpi = dev;
1226
Seth Forshee135740d2011-09-20 16:55:49 -05001227 return 0;
1228
1229error:
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001230 toshiba_acpi_remove(acpi_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001231 return ret;
1232}
1233
1234static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
1235{
1236 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001237 u32 hci_result, value;
Seth Forshee11948b92011-11-16 17:37:45 -06001238 int retries = 3;
Seth Forshee29cd2932012-01-18 13:44:09 -06001239 int scancode;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001240
Seth Forshee29cd2932012-01-18 13:44:09 -06001241 if (event != 0x80)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001242 return;
Seth Forshee11948b92011-11-16 17:37:45 -06001243
Seth Forshee29cd2932012-01-18 13:44:09 -06001244 if (dev->info_supported) {
1245 scancode = toshiba_acpi_query_hotkey(dev);
1246 if (scancode < 0)
1247 pr_err("Failed to query hotkey event\n");
1248 else if (scancode != 0)
1249 toshiba_acpi_report_hotkey(dev, scancode);
1250 } else if (dev->system_event_supported) {
1251 do {
1252 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
1253 switch (hci_result) {
1254 case HCI_SUCCESS:
1255 toshiba_acpi_report_hotkey(dev, (int)value);
1256 break;
1257 case HCI_NOT_SUPPORTED:
1258 /*
1259 * This is a workaround for an unresolved
1260 * issue on some machines where system events
1261 * sporadically become disabled.
1262 */
1263 hci_write1(dev, HCI_SYSTEM_EVENT, 1,
1264 &hci_result);
1265 pr_notice("Re-enabled hotkeys\n");
1266 /* fall through */
1267 default:
1268 retries--;
1269 break;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001270 }
Seth Forshee29cd2932012-01-18 13:44:09 -06001271 } while (retries && hci_result != HCI_EMPTY);
1272 }
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001273}
1274
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001275#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001276static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001277{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001278 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001279 u32 result;
1280
1281 if (dev->hotkey_dev)
1282 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result);
1283
1284 return 0;
1285}
1286
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001287static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001288{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001289 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001290 u32 result;
1291
1292 if (dev->hotkey_dev)
1293 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result);
1294
1295 return 0;
1296}
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001297#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001298
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001299static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
1300 toshiba_acpi_suspend, toshiba_acpi_resume);
1301
Seth Forshee135740d2011-09-20 16:55:49 -05001302static struct acpi_driver toshiba_acpi_driver = {
1303 .name = "Toshiba ACPI driver",
1304 .owner = THIS_MODULE,
1305 .ids = toshiba_device_ids,
1306 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1307 .ops = {
1308 .add = toshiba_acpi_add,
1309 .remove = toshiba_acpi_remove,
1310 .notify = toshiba_acpi_notify,
1311 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001312 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05001313};
Holger Machtc9263552006-10-20 14:30:29 -07001314
Len Brown4be44fc2005-08-05 00:44:28 -04001315static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Seth Forshee135740d2011-09-20 16:55:49 -05001317 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Seth Forsheef11f9992012-01-18 13:44:11 -06001319 /*
1320 * Machines with this WMI guid aren't supported due to bugs in
1321 * their AML. This check relies on wmi initializing before
1322 * toshiba_acpi to guarantee guids have been identified.
1323 */
1324 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
1325 return -ENODEV;
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
1328 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05001329 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001330 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
Seth Forshee135740d2011-09-20 16:55:49 -05001333 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
1334 if (ret) {
1335 pr_err("Failed to register ACPI driver: %d\n", ret);
1336 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07001337 }
1338
Seth Forshee135740d2011-09-20 16:55:49 -05001339 return ret;
1340}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001341
Seth Forshee135740d2011-09-20 16:55:49 -05001342static void __exit toshiba_acpi_exit(void)
1343{
1344 acpi_bus_unregister_driver(&toshiba_acpi_driver);
1345 if (toshiba_proc_dir)
1346 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349module_init(toshiba_acpi_init);
1350module_exit(toshiba_acpi_exit);