blob: 5f1256d5e9332cf45dbdd2031987ea41fe0212cf [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
Seth Forshee135740d2011-09-20 16:55:49 -0500153static const struct key_entry toshiba_acpi_keymap[] __devinitconst = {
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{
194 struct acpi_object_list params;
195 union acpi_object in_objs[1];
196 acpi_status status;
197
Ahmed S. Darwishb2b79102007-02-06 16:14:43 -0800198 params.count = ARRAY_SIZE(in_objs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 params.pointer = in_objs;
200 in_objs[0].type = ACPI_TYPE_INTEGER;
201 in_objs[0].integer.value = val;
202
Len Brown4be44fc2005-08-05 00:44:28 -0400203 status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500204 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* Perform a raw HCI call. Here we don't care about input or output buffer
208 * format.
209 */
Seth Forshee135740d2011-09-20 16:55:49 -0500210static acpi_status hci_raw(struct toshiba_acpi_dev *dev,
211 const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct acpi_object_list params;
214 union acpi_object in_objs[HCI_WORDS];
215 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400216 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 acpi_status status;
218 int i;
219
220 params.count = HCI_WORDS;
221 params.pointer = in_objs;
222 for (i = 0; i < HCI_WORDS; ++i) {
223 in_objs[i].type = ACPI_TYPE_INTEGER;
224 in_objs[i].integer.value = in[i];
225 }
226
227 results.length = sizeof(out_objs);
228 results.pointer = out_objs;
229
Seth Forshee6e02cc72011-09-20 16:55:51 -0500230 status = acpi_evaluate_object(dev->acpi_dev->handle,
231 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400232 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
234 for (i = 0; i < out_objs->package.count; ++i) {
235 out[i] = out_objs->package.elements[i].integer.value;
236 }
237 }
238
239 return status;
240}
241
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400242/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 *
244 * In addition to the ACPI status, the HCI system returns a result which
245 * may be useful (such as "not supported").
246 */
247
Seth Forshee135740d2011-09-20 16:55:49 -0500248static acpi_status hci_write1(struct toshiba_acpi_dev *dev, u32 reg,
249 u32 in1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
252 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500253 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
255 return status;
256}
257
Seth Forshee135740d2011-09-20 16:55:49 -0500258static acpi_status hci_read1(struct toshiba_acpi_dev *dev, u32 reg,
259 u32 *out1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
262 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500263 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *out1 = out[2];
265 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
266 return status;
267}
268
Seth Forshee135740d2011-09-20 16:55:49 -0500269static acpi_status hci_write2(struct toshiba_acpi_dev *dev, u32 reg,
270 u32 in1, u32 in2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400271{
272 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
273 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500274 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400275 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
276 return status;
277}
278
Seth Forshee135740d2011-09-20 16:55:49 -0500279static acpi_status hci_read2(struct toshiba_acpi_dev *dev, u32 reg,
280 u32 *out1, u32 *out2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400281{
282 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
283 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500284 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400285 *out1 = out[2];
286 *out2 = out[3];
287 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
288 return status;
289}
290
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200291/* Illumination support */
Seth Forshee135740d2011-09-20 16:55:49 -0500292static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200293{
294 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
295 u32 out[HCI_WORDS];
296 acpi_status status;
297
298 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500299 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200300 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700301 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200302 return 0;
303 }
304 in[0] = 0xf400;
Seth Forshee135740d2011-09-20 16:55:49 -0500305 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200306 return 1;
307}
308
309static void toshiba_illumination_set(struct led_classdev *cdev,
310 enum led_brightness brightness)
311{
Seth Forshee135740d2011-09-20 16:55:49 -0500312 struct toshiba_acpi_dev *dev = container_of(cdev,
313 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200314 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
315 u32 out[HCI_WORDS];
316 acpi_status status;
317
318 /* First request : initialize communication. */
319 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500320 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200321 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700322 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200323 return;
324 }
325
326 if (brightness) {
327 /* Switch the illumination on */
328 in[0] = 0xf400;
329 in[1] = 0x14e;
330 in[2] = 1;
Seth Forshee135740d2011-09-20 16:55:49 -0500331 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200332 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700333 pr_info("ACPI call for illumination failed\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200334 return;
335 }
336 } else {
337 /* Switch the illumination off */
338 in[0] = 0xf400;
339 in[1] = 0x14e;
340 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500341 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200342 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700343 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200344 return;
345 }
346 }
347
348 /* Last request : close communication. */
349 in[0] = 0xf200;
350 in[1] = 0;
351 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500352 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200353}
354
355static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
356{
Seth Forshee135740d2011-09-20 16:55:49 -0500357 struct toshiba_acpi_dev *dev = container_of(cdev,
358 struct toshiba_acpi_dev, led_dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200359 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
360 u32 out[HCI_WORDS];
361 acpi_status status;
362 enum led_brightness result;
363
364 /* First request : initialize communication. */
365 in[0] = 0xf100;
Seth Forshee135740d2011-09-20 16:55:49 -0500366 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200367 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700368 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200369 return LED_OFF;
370 }
371
372 /* Check the illumination */
373 in[0] = 0xf300;
374 in[1] = 0x14e;
Seth Forshee135740d2011-09-20 16:55:49 -0500375 status = hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200376 if (ACPI_FAILURE(status)) {
Joe Perches7e334602011-03-29 15:21:52 -0700377 pr_info("ACPI call for illumination failed.\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200378 return LED_OFF;
379 }
380
381 result = out[2] ? LED_FULL : LED_OFF;
382
383 /* Last request : close communication. */
384 in[0] = 0xf200;
385 in[1] = 0;
386 in[2] = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500387 hci_raw(dev, in, out);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200388
389 return result;
390}
391
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400392/* Bluetooth rfkill handlers */
393
Seth Forshee135740d2011-09-20 16:55:49 -0500394static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400395{
396 u32 hci_result;
397 u32 value, value2;
398
399 value = 0;
400 value2 = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500401 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400402 if (hci_result == HCI_SUCCESS)
403 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
404
405 return hci_result;
406}
407
Seth Forshee135740d2011-09-20 16:55:49 -0500408static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400409{
410 u32 hci_result;
411 u32 value, value2;
412
413 value = 0;
414 value2 = 0x0001;
Seth Forshee135740d2011-09-20 16:55:49 -0500415 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400416
417 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
418 return hci_result;
419}
420
Johannes Berg19d337d2009-06-02 13:01:37 +0200421static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400422{
Johannes Berg19d337d2009-06-02 13:01:37 +0200423 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400424 u32 result1, result2;
425 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200426 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400427 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400428
Johannes Berg19d337d2009-06-02 13:01:37 +0200429 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400430
431 mutex_lock(&dev->mutex);
Seth Forshee135740d2011-09-20 16:55:49 -0500432 if (hci_get_radio_state(dev, &radio_state) != HCI_SUCCESS) {
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500433 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200434 goto out;
435 }
436
437 if (!radio_state) {
438 err = 0;
439 goto out;
440 }
441
Seth Forshee135740d2011-09-20 16:55:49 -0500442 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
443 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400444
445 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500446 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200447 else
448 err = 0;
449 out:
450 mutex_unlock(&dev->mutex);
451 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400452}
453
Johannes Berg19d337d2009-06-02 13:01:37 +0200454static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400455{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400456 bool new_rfk_state;
457 bool value;
458 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200459 struct toshiba_acpi_dev *dev = data;
460
461 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400462
Seth Forshee135740d2011-09-20 16:55:49 -0500463 hci_result = hci_get_radio_state(dev, &value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200464 if (hci_result != HCI_SUCCESS) {
465 /* Can't do anything useful */
466 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700467 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200468 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400469
470 new_rfk_state = value;
471
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400472 mutex_unlock(&dev->mutex);
473
Johannes Berg19d337d2009-06-02 13:01:37 +0200474 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
475 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400476}
477
Johannes Berg19d337d2009-06-02 13:01:37 +0200478static const struct rfkill_ops toshiba_rfk_ops = {
479 .set_block = bt_rfkill_set_block,
480 .poll = bt_rfkill_poll,
481};
482
Akio Idehara121b7b02012-04-06 01:46:43 +0900483static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled)
484{
485 u32 hci_result;
486 u32 status;
487
488 hci_read1(dev, HCI_TR_BACKLIGHT, &status, &hci_result);
489 *enabled = !status;
490 return hci_result == HCI_SUCCESS ? 0 : -EIO;
491}
492
493static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable)
494{
495 u32 hci_result;
496 u32 value = !enable;
497
498 hci_write1(dev, HCI_TR_BACKLIGHT, value, &hci_result);
499 return hci_result == HCI_SUCCESS ? 0 : -EIO;
500}
501
Len Brown4be44fc2005-08-05 00:44:28 -0400502static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Seth Forshee62cce752012-04-19 11:23:50 -0500504static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 u32 hci_result;
507 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900508 int brightness = 0;
509
510 if (dev->tr_backlight_supported) {
511 bool enabled;
512 int ret = get_tr_backlight_status(dev, &enabled);
513 if (ret)
514 return ret;
515 if (enabled)
516 return 0;
517 brightness++;
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Seth Forshee135740d2011-09-20 16:55:49 -0500520 hci_read1(dev, HCI_LCD_BRIGHTNESS, &value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500521 if (hci_result == HCI_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +0900522 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500523
524 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700525}
526
Seth Forshee62cce752012-04-19 11:23:50 -0500527static int get_lcd_brightness(struct backlight_device *bd)
528{
529 struct toshiba_acpi_dev *dev = bl_get_data(bd);
530 return __get_lcd_brightness(dev);
531}
532
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800533static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700534{
Seth Forshee135740d2011-09-20 16:55:49 -0500535 struct toshiba_acpi_dev *dev = m->private;
536 int value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900537 int levels;
Holger Machtc9263552006-10-20 14:30:29 -0700538
Seth Forshee135740d2011-09-20 16:55:49 -0500539 if (!dev->backlight_dev)
540 return -ENODEV;
541
Akio Idehara121b7b02012-04-06 01:46:43 +0900542 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -0500543 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -0700544 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800545 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +0900546 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500550 pr_err("Error reading LCD brightness\n");
551 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800552}
553
554static int lcd_proc_open(struct inode *inode, struct file *file)
555{
Seth Forshee135740d2011-09-20 16:55:49 -0500556 return single_open(file, lcd_proc_show, PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Seth Forshee62cce752012-04-19 11:23:50 -0500559static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -0700560{
561 u32 hci_result;
562
Akio Idehara121b7b02012-04-06 01:46:43 +0900563 if (dev->tr_backlight_supported) {
564 bool enable = !value;
565 int ret = set_tr_backlight_status(dev, enable);
566 if (ret)
567 return ret;
568 if (value)
569 value--;
570 }
571
Holger Machtc9263552006-10-20 14:30:29 -0700572 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
Seth Forshee135740d2011-09-20 16:55:49 -0500573 hci_write1(dev, HCI_LCD_BRIGHTNESS, value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500574 return hci_result == HCI_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700575}
576
577static int set_lcd_status(struct backlight_device *bd)
578{
Seth Forshee135740d2011-09-20 16:55:49 -0500579 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Seth Forshee62cce752012-04-19 11:23:50 -0500580 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700581}
582
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800583static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
584 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Seth Forshee135740d2011-09-20 16:55:49 -0500586 struct toshiba_acpi_dev *dev = PDE(file->f_path.dentry->d_inode)->data;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800587 char cmd[42];
588 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800590 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +0900591 int levels = dev->backlight_dev->props.max_brightness + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800593 len = min(count, sizeof(cmd) - 1);
594 if (copy_from_user(cmd, buf, len))
595 return -EFAULT;
596 cmd[len] = '\0';
597
598 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Akio Idehara121b7b02012-04-06 01:46:43 +0900599 value >= 0 && value < levels) {
Seth Forshee62cce752012-04-19 11:23:50 -0500600 ret = set_lcd_brightness(dev, value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800601 if (ret == 0)
602 ret = count;
603 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700604 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800605 }
Holger Machtc9263552006-10-20 14:30:29 -0700606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800609static const struct file_operations lcd_proc_fops = {
610 .owner = THIS_MODULE,
611 .open = lcd_proc_open,
612 .read = seq_read,
613 .llseek = seq_lseek,
614 .release = single_release,
615 .write = lcd_proc_write,
616};
617
Seth Forshee36d03f92011-09-20 16:55:53 -0500618static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
619{
620 u32 hci_result;
621
622 hci_read1(dev, HCI_VIDEO_OUT, status, &hci_result);
623 return hci_result == HCI_SUCCESS ? 0 : -EIO;
624}
625
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800626static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Seth Forshee135740d2011-09-20 16:55:49 -0500628 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 u32 value;
Seth Forshee36d03f92011-09-20 16:55:53 -0500630 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Seth Forshee36d03f92011-09-20 16:55:53 -0500632 ret = get_video_status(dev, &value);
633 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
635 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400636 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800637 seq_printf(m, "lcd_out: %d\n", is_lcd);
638 seq_printf(m, "crt_out: %d\n", is_crt);
639 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Seth Forshee36d03f92011-09-20 16:55:53 -0500642 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800645static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Seth Forshee135740d2011-09-20 16:55:49 -0500647 return single_open(file, video_proc_show, PDE(inode)->data);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800648}
649
650static ssize_t video_proc_write(struct file *file, const char __user *buf,
651 size_t count, loff_t *pos)
652{
Seth Forshee135740d2011-09-20 16:55:49 -0500653 struct toshiba_acpi_dev *dev = PDE(file->f_path.dentry->d_inode)->data;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800654 char *cmd, *buffer;
Seth Forshee36d03f92011-09-20 16:55:53 -0500655 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 int value;
657 int remain = count;
658 int lcd_out = -1;
659 int crt_out = -1;
660 int tv_out = -1;
Al Virob4482a42007-10-14 19:35:40 +0100661 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800663 cmd = kmalloc(count + 1, GFP_KERNEL);
664 if (!cmd)
665 return -ENOMEM;
666 if (copy_from_user(cmd, buf, count)) {
667 kfree(cmd);
668 return -EFAULT;
669 }
670 cmd[count] = '\0';
671
672 buffer = cmd;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* scan expression. Multiple expressions may be delimited with ;
675 *
676 * NOTE: to keep scanning simple, invalid fields are ignored
677 */
678 while (remain) {
679 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
680 lcd_out = value & 1;
681 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
682 crt_out = value & 1;
683 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
684 tv_out = value & 1;
685 /* advance to one character past the next ; */
686 do {
687 ++buffer;
688 --remain;
689 }
Len Brown4be44fc2005-08-05 00:44:28 -0400690 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800693 kfree(cmd);
694
Seth Forshee36d03f92011-09-20 16:55:53 -0500695 ret = get_video_status(dev, &video_out);
696 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700697 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (lcd_out != -1)
699 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
700 if (crt_out != -1)
701 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
702 if (tv_out != -1)
703 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
704 /* To avoid unnecessary video disruption, only write the new
705 * video setting if something changed. */
706 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500707 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500710 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800713static const struct file_operations video_proc_fops = {
714 .owner = THIS_MODULE,
715 .open = video_proc_open,
716 .read = seq_read,
717 .llseek = seq_lseek,
718 .release = single_release,
719 .write = video_proc_write,
720};
721
Seth Forshee36d03f92011-09-20 16:55:53 -0500722static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
723{
724 u32 hci_result;
725
726 hci_read1(dev, HCI_FAN, status, &hci_result);
727 return hci_result == HCI_SUCCESS ? 0 : -EIO;
728}
729
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800730static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Seth Forshee135740d2011-09-20 16:55:49 -0500732 struct toshiba_acpi_dev *dev = m->private;
Seth Forshee36d03f92011-09-20 16:55:53 -0500733 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 u32 value;
735
Seth Forshee36d03f92011-09-20 16:55:53 -0500736 ret = get_fan_status(dev, &value);
737 if (!ret) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800738 seq_printf(m, "running: %d\n", (value > 0));
Seth Forshee135740d2011-09-20 16:55:49 -0500739 seq_printf(m, "force_on: %d\n", dev->force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741
Seth Forshee36d03f92011-09-20 16:55:53 -0500742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800745static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Seth Forshee135740d2011-09-20 16:55:49 -0500747 return single_open(file, fan_proc_show, PDE(inode)->data);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800748}
749
750static ssize_t fan_proc_write(struct file *file, const char __user *buf,
751 size_t count, loff_t *pos)
752{
Seth Forshee135740d2011-09-20 16:55:49 -0500753 struct toshiba_acpi_dev *dev = PDE(file->f_path.dentry->d_inode)->data;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800754 char cmd[42];
755 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 int value;
757 u32 hci_result;
758
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800759 len = min(count, sizeof(cmd) - 1);
760 if (copy_from_user(cmd, buf, len))
761 return -EFAULT;
762 cmd[len] = '\0';
763
764 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400765 value >= 0 && value <= 1) {
Seth Forshee135740d2011-09-20 16:55:49 -0500766 hci_write1(dev, HCI_FAN, value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (hci_result != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500768 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else
Seth Forshee135740d2011-09-20 16:55:49 -0500770 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 } else {
772 return -EINVAL;
773 }
774
775 return count;
776}
777
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800778static const struct file_operations fan_proc_fops = {
779 .owner = THIS_MODULE,
780 .open = fan_proc_open,
781 .read = seq_read,
782 .llseek = seq_lseek,
783 .release = single_release,
784 .write = fan_proc_write,
785};
786
787static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Seth Forshee135740d2011-09-20 16:55:49 -0500789 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 u32 hci_result;
791 u32 value;
792
Seth Forshee11948b92011-11-16 17:37:45 -0600793 if (!dev->key_event_valid && dev->system_event_supported) {
Seth Forshee135740d2011-09-20 16:55:49 -0500794 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (hci_result == HCI_SUCCESS) {
Seth Forshee135740d2011-09-20 16:55:49 -0500796 dev->key_event_valid = 1;
797 dev->last_key_event = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else if (hci_result == HCI_EMPTY) {
799 /* better luck next time */
800 } else if (hci_result == HCI_NOT_SUPPORTED) {
801 /* This is a workaround for an unresolved issue on
802 * some machines where system events sporadically
803 * become disabled. */
Seth Forshee135740d2011-09-20 16:55:49 -0500804 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
Joe Perches7e334602011-03-29 15:21:52 -0700805 pr_notice("Re-enabled hotkeys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 } else {
Joe Perches7e334602011-03-29 15:21:52 -0700807 pr_err("Error reading hotkey status\n");
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500808 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 }
811
Seth Forshee135740d2011-09-20 16:55:49 -0500812 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
813 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800817static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Seth Forshee135740d2011-09-20 16:55:49 -0500819 return single_open(file, keys_proc_show, PDE(inode)->data);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800820}
821
822static ssize_t keys_proc_write(struct file *file, const char __user *buf,
823 size_t count, loff_t *pos)
824{
Seth Forshee135740d2011-09-20 16:55:49 -0500825 struct toshiba_acpi_dev *dev = PDE(file->f_path.dentry->d_inode)->data;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800826 char cmd[42];
827 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int value;
829
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800830 len = min(count, sizeof(cmd) - 1);
831 if (copy_from_user(cmd, buf, len))
832 return -EFAULT;
833 cmd[len] = '\0';
834
835 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Seth Forshee135740d2011-09-20 16:55:49 -0500836 dev->key_event_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 } else {
838 return -EINVAL;
839 }
840
841 return count;
842}
843
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800844static const struct file_operations keys_proc_fops = {
845 .owner = THIS_MODULE,
846 .open = keys_proc_open,
847 .read = seq_read,
848 .llseek = seq_lseek,
849 .release = single_release,
850 .write = keys_proc_write,
851};
852
853static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800855 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
856 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800860static int version_proc_open(struct inode *inode, struct file *file)
861{
862 return single_open(file, version_proc_show, PDE(inode)->data);
863}
864
865static const struct file_operations version_proc_fops = {
866 .owner = THIS_MODULE,
867 .open = version_proc_open,
868 .read = seq_read,
869 .llseek = seq_lseek,
870 .release = single_release,
871};
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/* proc and module init
874 */
875
876#define PROC_TOSHIBA "toshiba"
877
Seth Forshee135740d2011-09-20 16:55:49 -0500878static void __devinit
879create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Seth Forshee36d03f92011-09-20 16:55:53 -0500881 if (dev->backlight_dev)
882 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
883 &lcd_proc_fops, dev);
884 if (dev->video_supported)
885 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
886 &video_proc_fops, dev);
887 if (dev->fan_supported)
888 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
889 &fan_proc_fops, dev);
890 if (dev->hotkey_dev)
891 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
892 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -0500893 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
894 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Seth Forshee36d03f92011-09-20 16:55:53 -0500897static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Seth Forshee36d03f92011-09-20 16:55:53 -0500899 if (dev->backlight_dev)
900 remove_proc_entry("lcd", toshiba_proc_dir);
901 if (dev->video_supported)
902 remove_proc_entry("video", toshiba_proc_dir);
903 if (dev->fan_supported)
904 remove_proc_entry("fan", toshiba_proc_dir);
905 if (dev->hotkey_dev)
906 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800907 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Lionel Debrouxacc24722010-11-16 14:14:02 +0100910static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +0900911 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -0500912 .get_brightness = get_lcd_brightness,
913 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700914};
915
Seth Forshee29cd2932012-01-18 13:44:09 -0600916static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
917 struct serio *port)
918{
919 if (str & 0x20)
920 return false;
921
922 if (unlikely(data == 0xe0))
923 return false;
924
925 if ((data & 0x7f) == TOS1900_FN_SCAN) {
926 schedule_work(&toshiba_acpi->hotkey_work);
927 return true;
928 }
929
930 return false;
931}
932
933static void toshiba_acpi_hotkey_work(struct work_struct *work)
934{
935 acpi_handle ec_handle = ec_get_handle();
936 acpi_status status;
937
938 if (!ec_handle)
939 return;
940
941 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
942 if (ACPI_FAILURE(status))
943 pr_err("ACPI NTFY method execution failed\n");
944}
945
946/*
947 * Returns hotkey scancode, or < 0 on failure.
948 */
949static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
950{
951 struct acpi_buffer buf;
952 union acpi_object out_obj;
953 acpi_status status;
954
955 buf.pointer = &out_obj;
956 buf.length = sizeof(out_obj);
957
958 status = acpi_evaluate_object(dev->acpi_dev->handle, "INFO",
959 NULL, &buf);
960 if (ACPI_FAILURE(status) || out_obj.type != ACPI_TYPE_INTEGER) {
961 pr_err("ACPI INFO method execution failed\n");
962 return -EIO;
963 }
964
965 return out_obj.integer.value;
966}
967
968static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
969 int scancode)
970{
971 if (scancode == 0x100)
972 return;
973
974 /* act on key press; ignore key release */
975 if (scancode & 0x80)
976 return;
977
978 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
979 pr_info("Unknown key %x\n", scancode);
980}
981
Seth Forshee6e02cc72011-09-20 16:55:51 -0500982static int __devinit toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500983{
Seth Forshee135740d2011-09-20 16:55:49 -0500984 acpi_status status;
Seth Forshee29cd2932012-01-18 13:44:09 -0600985 acpi_handle ec_handle, handle;
Seth Forshee135740d2011-09-20 16:55:49 -0500986 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -0600987 u32 hci_result;
Seth Forshee135740d2011-09-20 16:55:49 -0500988
Seth Forshee135740d2011-09-20 16:55:49 -0500989 dev->hotkey_dev = input_allocate_device();
990 if (!dev->hotkey_dev) {
991 pr_info("Unable to register input device\n");
992 return -ENOMEM;
993 }
994
995 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -0500996 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -0500997 dev->hotkey_dev->id.bustype = BUS_HOST;
998
999 error = sparse_keymap_setup(dev->hotkey_dev, toshiba_acpi_keymap, NULL);
1000 if (error)
1001 goto err_free_dev;
1002
Seth Forshee29cd2932012-01-18 13:44:09 -06001003 /*
1004 * For some machines the SCI responsible for providing hotkey
1005 * notification doesn't fire. We can trigger the notification
1006 * whenever the Fn key is pressed using the NTFY method, if
1007 * supported, so if it's present set up an i8042 key filter
1008 * for this purpose.
1009 */
1010 status = AE_ERROR;
1011 ec_handle = ec_get_handle();
1012 if (ec_handle)
1013 status = acpi_get_handle(ec_handle, "NTFY", &handle);
1014
1015 if (ACPI_SUCCESS(status)) {
1016 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
1017
1018 error = i8042_install_filter(toshiba_acpi_i8042_filter);
1019 if (error) {
1020 pr_err("Error installing key filter\n");
1021 goto err_free_keymap;
1022 }
1023
1024 dev->ntfy_supported = 1;
1025 }
1026
1027 /*
1028 * Determine hotkey query interface. Prefer using the INFO
1029 * method when it is available.
1030 */
1031 status = acpi_get_handle(dev->acpi_dev->handle, "INFO", &handle);
1032 if (ACPI_SUCCESS(status)) {
1033 dev->info_supported = 1;
1034 } else {
1035 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
1036 if (hci_result == HCI_SUCCESS)
1037 dev->system_event_supported = 1;
1038 }
1039
1040 if (!dev->info_supported && !dev->system_event_supported) {
1041 pr_warn("No hotkey query interface found\n");
1042 goto err_remove_filter;
1043 }
1044
Seth Forshee6e02cc72011-09-20 16:55:51 -05001045 status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05001046 if (ACPI_FAILURE(status)) {
1047 pr_info("Unable to enable hotkeys\n");
1048 error = -ENODEV;
Seth Forshee29cd2932012-01-18 13:44:09 -06001049 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001050 }
1051
1052 error = input_register_device(dev->hotkey_dev);
1053 if (error) {
1054 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001055 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001056 }
1057
Seth Forshee29cd2932012-01-18 13:44:09 -06001058 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result);
Seth Forshee135740d2011-09-20 16:55:49 -05001059 return 0;
1060
Seth Forshee29cd2932012-01-18 13:44:09 -06001061 err_remove_filter:
1062 if (dev->ntfy_supported)
1063 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05001064 err_free_keymap:
1065 sparse_keymap_free(dev->hotkey_dev);
1066 err_free_dev:
1067 input_free_device(dev->hotkey_dev);
1068 dev->hotkey_dev = NULL;
1069 return error;
1070}
1071
Seth Forshee62cce752012-04-19 11:23:50 -05001072static int __devinit toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
1073{
1074 struct backlight_properties props;
1075 int brightness;
1076 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +09001077 bool enabled;
Seth Forshee62cce752012-04-19 11:23:50 -05001078
1079 /*
1080 * Some machines don't support the backlight methods at all, and
1081 * others support it read-only. Either of these is pretty useless,
1082 * so only register the backlight device if the backlight method
1083 * supports both reads and writes.
1084 */
1085 brightness = __get_lcd_brightness(dev);
1086 if (brightness < 0)
1087 return 0;
1088 ret = set_lcd_brightness(dev, brightness);
1089 if (ret) {
1090 pr_debug("Backlight method is read-only, disabling backlight support\n");
1091 return 0;
1092 }
1093
Akio Idehara121b7b02012-04-06 01:46:43 +09001094 /* Determine whether or not BIOS supports transflective backlight */
1095 ret = get_tr_backlight_status(dev, &enabled);
1096 dev->tr_backlight_supported = !ret;
1097
Matthew Garrett53039f22012-06-01 11:02:36 -04001098 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05001099 props.type = BACKLIGHT_PLATFORM;
1100 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001101
Akio Idehara121b7b02012-04-06 01:46:43 +09001102 /* adding an extra level and having 0 change to transflective mode */
1103 if (dev->tr_backlight_supported)
1104 props.max_brightness++;
1105
Seth Forshee62cce752012-04-19 11:23:50 -05001106 dev->backlight_dev = backlight_device_register("toshiba",
1107 &dev->acpi_dev->dev,
1108 dev,
1109 &toshiba_backlight_data,
1110 &props);
1111 if (IS_ERR(dev->backlight_dev)) {
1112 ret = PTR_ERR(dev->backlight_dev);
1113 pr_err("Could not register toshiba backlight device\n");
1114 dev->backlight_dev = NULL;
1115 return ret;
1116 }
1117
1118 dev->backlight_dev->props.brightness = brightness;
1119 return 0;
1120}
1121
Seth Forshee135740d2011-09-20 16:55:49 -05001122static int toshiba_acpi_remove(struct acpi_device *acpi_dev, int type)
1123{
1124 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
1125
Seth Forshee36d03f92011-09-20 16:55:53 -05001126 remove_toshiba_proc_entries(dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001127
Seth Forshee29cd2932012-01-18 13:44:09 -06001128 if (dev->ntfy_supported) {
1129 i8042_remove_filter(toshiba_acpi_i8042_filter);
1130 cancel_work_sync(&dev->hotkey_work);
1131 }
1132
Seth Forshee135740d2011-09-20 16:55:49 -05001133 if (dev->hotkey_dev) {
1134 input_unregister_device(dev->hotkey_dev);
1135 sparse_keymap_free(dev->hotkey_dev);
1136 }
1137
1138 if (dev->bt_rfk) {
1139 rfkill_unregister(dev->bt_rfk);
1140 rfkill_destroy(dev->bt_rfk);
1141 }
1142
1143 if (dev->backlight_dev)
1144 backlight_device_unregister(dev->backlight_dev);
1145
Seth Forshee36d03f92011-09-20 16:55:53 -05001146 if (dev->illumination_supported)
Seth Forshee135740d2011-09-20 16:55:49 -05001147 led_classdev_unregister(&dev->led_dev);
1148
Seth Forshee29cd2932012-01-18 13:44:09 -06001149 if (toshiba_acpi)
1150 toshiba_acpi = NULL;
1151
Seth Forshee135740d2011-09-20 16:55:49 -05001152 kfree(dev);
1153
1154 return 0;
1155}
1156
Seth Forsheea540d6b2011-09-20 16:55:52 -05001157static const char * __devinit find_hci_method(acpi_handle handle)
1158{
1159 acpi_status status;
1160 acpi_handle hci_handle;
1161
1162 status = acpi_get_handle(handle, "GHCI", &hci_handle);
1163 if (ACPI_SUCCESS(status))
1164 return "GHCI";
1165
1166 status = acpi_get_handle(handle, "SPFC", &hci_handle);
1167 if (ACPI_SUCCESS(status))
1168 return "SPFC";
1169
1170 return NULL;
1171}
1172
Seth Forshee135740d2011-09-20 16:55:49 -05001173static int __devinit toshiba_acpi_add(struct acpi_device *acpi_dev)
1174{
1175 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001176 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05001177 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05001178 bool bt_present;
1179 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05001180
Seth Forshee29cd2932012-01-18 13:44:09 -06001181 if (toshiba_acpi)
1182 return -EBUSY;
1183
Seth Forshee135740d2011-09-20 16:55:49 -05001184 pr_info("Toshiba Laptop ACPI Extras version %s\n",
1185 TOSHIBA_ACPI_VERSION);
1186
Seth Forsheea540d6b2011-09-20 16:55:52 -05001187 hci_method = find_hci_method(acpi_dev->handle);
1188 if (!hci_method) {
1189 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05001190 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001191 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05001192
Seth Forshee135740d2011-09-20 16:55:49 -05001193 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1194 if (!dev)
1195 return -ENOMEM;
1196 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001197 dev->method_hci = hci_method;
Seth Forshee135740d2011-09-20 16:55:49 -05001198 acpi_dev->driver_data = dev;
1199
Seth Forshee6e02cc72011-09-20 16:55:51 -05001200 if (toshiba_acpi_setup_keyboard(dev))
1201 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05001202
1203 mutex_init(&dev->mutex);
1204
Seth Forshee62cce752012-04-19 11:23:50 -05001205 ret = toshiba_acpi_setup_backlight(dev);
1206 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05001207 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05001208
1209 /* Register rfkill switch for Bluetooth */
1210 if (hci_get_bt_present(dev, &bt_present) == HCI_SUCCESS && bt_present) {
1211 dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth",
1212 &acpi_dev->dev,
1213 RFKILL_TYPE_BLUETOOTH,
1214 &toshiba_rfk_ops,
1215 dev);
1216 if (!dev->bt_rfk) {
1217 pr_err("unable to allocate rfkill device\n");
1218 ret = -ENOMEM;
1219 goto error;
1220 }
1221
1222 ret = rfkill_register(dev->bt_rfk);
1223 if (ret) {
1224 pr_err("unable to register rfkill device\n");
1225 rfkill_destroy(dev->bt_rfk);
1226 goto error;
1227 }
1228 }
1229
1230 if (toshiba_illumination_available(dev)) {
1231 dev->led_dev.name = "toshiba::illumination";
1232 dev->led_dev.max_brightness = 1;
1233 dev->led_dev.brightness_set = toshiba_illumination_set;
1234 dev->led_dev.brightness_get = toshiba_illumination_get;
1235 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Seth Forshee36d03f92011-09-20 16:55:53 -05001236 dev->illumination_supported = 1;
Seth Forshee135740d2011-09-20 16:55:49 -05001237 }
1238
Seth Forshee36d03f92011-09-20 16:55:53 -05001239 /* Determine whether or not BIOS supports fan and video interfaces */
1240
1241 ret = get_video_status(dev, &dummy);
1242 dev->video_supported = !ret;
1243
1244 ret = get_fan_status(dev, &dummy);
1245 dev->fan_supported = !ret;
1246
1247 create_toshiba_proc_entries(dev);
1248
Seth Forshee29cd2932012-01-18 13:44:09 -06001249 toshiba_acpi = dev;
1250
Seth Forshee135740d2011-09-20 16:55:49 -05001251 return 0;
1252
1253error:
1254 toshiba_acpi_remove(acpi_dev, 0);
1255 return ret;
1256}
1257
1258static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
1259{
1260 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001261 u32 hci_result, value;
Seth Forshee11948b92011-11-16 17:37:45 -06001262 int retries = 3;
Seth Forshee29cd2932012-01-18 13:44:09 -06001263 int scancode;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001264
Seth Forshee29cd2932012-01-18 13:44:09 -06001265 if (event != 0x80)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001266 return;
Seth Forshee11948b92011-11-16 17:37:45 -06001267
Seth Forshee29cd2932012-01-18 13:44:09 -06001268 if (dev->info_supported) {
1269 scancode = toshiba_acpi_query_hotkey(dev);
1270 if (scancode < 0)
1271 pr_err("Failed to query hotkey event\n");
1272 else if (scancode != 0)
1273 toshiba_acpi_report_hotkey(dev, scancode);
1274 } else if (dev->system_event_supported) {
1275 do {
1276 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
1277 switch (hci_result) {
1278 case HCI_SUCCESS:
1279 toshiba_acpi_report_hotkey(dev, (int)value);
1280 break;
1281 case HCI_NOT_SUPPORTED:
1282 /*
1283 * This is a workaround for an unresolved
1284 * issue on some machines where system events
1285 * sporadically become disabled.
1286 */
1287 hci_write1(dev, HCI_SYSTEM_EVENT, 1,
1288 &hci_result);
1289 pr_notice("Re-enabled hotkeys\n");
1290 /* fall through */
1291 default:
1292 retries--;
1293 break;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001294 }
Seth Forshee29cd2932012-01-18 13:44:09 -06001295 } while (retries && hci_result != HCI_EMPTY);
1296 }
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001297}
1298
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001299#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001300static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001301{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001302 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001303 u32 result;
1304
1305 if (dev->hotkey_dev)
1306 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result);
1307
1308 return 0;
1309}
1310
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001311static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001312{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001313 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001314 u32 result;
1315
1316 if (dev->hotkey_dev)
1317 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result);
1318
1319 return 0;
1320}
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001321#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001322
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001323static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
1324 toshiba_acpi_suspend, toshiba_acpi_resume);
1325
Seth Forshee135740d2011-09-20 16:55:49 -05001326static struct acpi_driver toshiba_acpi_driver = {
1327 .name = "Toshiba ACPI driver",
1328 .owner = THIS_MODULE,
1329 .ids = toshiba_device_ids,
1330 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1331 .ops = {
1332 .add = toshiba_acpi_add,
1333 .remove = toshiba_acpi_remove,
1334 .notify = toshiba_acpi_notify,
1335 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001336 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05001337};
Holger Machtc9263552006-10-20 14:30:29 -07001338
Len Brown4be44fc2005-08-05 00:44:28 -04001339static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Seth Forshee135740d2011-09-20 16:55:49 -05001341 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Seth Forsheef11f9992012-01-18 13:44:11 -06001343 /*
1344 * Machines with this WMI guid aren't supported due to bugs in
1345 * their AML. This check relies on wmi initializing before
1346 * toshiba_acpi to guarantee guids have been identified.
1347 */
1348 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
1349 return -ENODEV;
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
1352 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05001353 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001354 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
Seth Forshee135740d2011-09-20 16:55:49 -05001357 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
1358 if (ret) {
1359 pr_err("Failed to register ACPI driver: %d\n", ret);
1360 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07001361 }
1362
Seth Forshee135740d2011-09-20 16:55:49 -05001363 return ret;
1364}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001365
Seth Forshee135740d2011-09-20 16:55:49 -05001366static void __exit toshiba_acpi_exit(void)
1367{
1368 acpi_bus_unregister_driver(&toshiba_acpi_driver);
1369 if (toshiba_proc_dir)
1370 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373module_init(toshiba_acpi_init);
1374module_exit(toshiba_acpi_exit);