blob: c8e8bfb78c19a4136e1e11665921e6a405a0aebd [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.
Azael Avalos84a62732014-03-25 20:38:29 -060080 *
81 * SCI stands for "System Configuration Interface" which aim is to
82 * conceal differences in hardware between different models.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84
85#define HCI_WORDS 6
86
87/* operations */
88#define HCI_SET 0xff00
89#define HCI_GET 0xfe00
Azael Avalos84a62732014-03-25 20:38:29 -060090#define SCI_OPEN 0xf100
91#define SCI_CLOSE 0xf200
92#define SCI_GET 0xf300
93#define SCI_SET 0xf400
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* return codes */
96#define HCI_SUCCESS 0x0000
97#define HCI_FAILURE 0x1000
98#define HCI_NOT_SUPPORTED 0x8000
99#define HCI_EMPTY 0x8c00
Azael Avalos84a62732014-03-25 20:38:29 -0600100#define SCI_OPEN_CLOSE_OK 0x0044
101#define SCI_ALREADY_OPEN 0x8100
102#define SCI_NOT_OPENED 0x8200
Azael Avalosfdb79082014-03-25 20:38:30 -0600103#define SCI_INPUT_DATA_ERROR 0x8300
Azael Avalos84a62732014-03-25 20:38:29 -0600104#define SCI_NOT_PRESENT 0x8600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* registers */
107#define HCI_FAN 0x0004
Akio Idehara121b7b02012-04-06 01:46:43 +0900108#define HCI_TR_BACKLIGHT 0x0005
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define HCI_SYSTEM_EVENT 0x0016
110#define HCI_VIDEO_OUT 0x001c
111#define HCI_HOTKEY_EVENT 0x001e
112#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400113#define HCI_WIRELESS 0x0056
Azael Avalos360f0f32014-03-25 20:38:31 -0600114#define HCI_KBD_ILLUMINATION 0x0095
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600115#define HCI_ECO_MODE 0x0097
Azael Avalosfdb79082014-03-25 20:38:30 -0600116#define SCI_ILLUMINATION 0x014e
Azael Avalos360f0f32014-03-25 20:38:31 -0600117#define SCI_KBD_ILLUM_STATUS 0x015c
Azael Avalos9d8658a2014-03-25 20:38:32 -0600118#define SCI_TOUCHPAD 0x050e
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* field definitions */
Seth Forshee29cd2932012-01-18 13:44:09 -0600121#define HCI_HOTKEY_DISABLE 0x0b
122#define HCI_HOTKEY_ENABLE 0x09
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define HCI_LCD_BRIGHTNESS_BITS 3
124#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
125#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
Azael Avalos360f0f32014-03-25 20:38:31 -0600126#define HCI_MISC_SHIFT 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#define HCI_VIDEO_OUT_LCD 0x1
128#define HCI_VIDEO_OUT_CRT 0x2
129#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400130#define HCI_WIRELESS_KILL_SWITCH 0x01
131#define HCI_WIRELESS_BT_PRESENT 0x0f
132#define HCI_WIRELESS_BT_ATTACH 0x40
133#define HCI_WIRELESS_BT_POWER 0x80
Azael Avalos360f0f32014-03-25 20:38:31 -0600134#define SCI_KBD_MODE_FNZ 0x1
135#define SCI_KBD_MODE_AUTO 0x2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Seth Forshee135740d2011-09-20 16:55:49 -0500137struct toshiba_acpi_dev {
138 struct acpi_device *acpi_dev;
139 const char *method_hci;
140 struct rfkill *bt_rfk;
141 struct input_dev *hotkey_dev;
Seth Forshee29cd2932012-01-18 13:44:09 -0600142 struct work_struct hotkey_work;
Seth Forshee135740d2011-09-20 16:55:49 -0500143 struct backlight_device *backlight_dev;
144 struct led_classdev led_dev;
Azael Avalos360f0f32014-03-25 20:38:31 -0600145 struct led_classdev kbd_led;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600146 struct led_classdev eco_led;
Seth Forshee36d03f92011-09-20 16:55:53 -0500147
Seth Forshee135740d2011-09-20 16:55:49 -0500148 int force_fan;
149 int last_key_event;
150 int key_event_valid;
Azael Avalos360f0f32014-03-25 20:38:31 -0600151 int kbd_mode;
152 int kbd_time;
Seth Forshee135740d2011-09-20 16:55:49 -0500153
Dan Carpenter592b7462012-01-15 14:28:20 +0300154 unsigned int illumination_supported:1;
155 unsigned int video_supported:1;
156 unsigned int fan_supported:1;
157 unsigned int system_event_supported:1;
Seth Forshee29cd2932012-01-18 13:44:09 -0600158 unsigned int ntfy_supported:1;
159 unsigned int info_supported:1;
Akio Idehara121b7b02012-04-06 01:46:43 +0900160 unsigned int tr_backlight_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600161 unsigned int kbd_illum_supported:1;
162 unsigned int kbd_led_registered:1;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600163 unsigned int touchpad_supported:1;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600164 unsigned int eco_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600165 unsigned int sysfs_created:1;
Seth Forshee36d03f92011-09-20 16:55:53 -0500166
Seth Forshee135740d2011-09-20 16:55:49 -0500167 struct mutex mutex;
168};
169
Seth Forshee29cd2932012-01-18 13:44:09 -0600170static struct toshiba_acpi_dev *toshiba_acpi;
171
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800172static const struct acpi_device_id toshiba_device_ids[] = {
173 {"TOS6200", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400174 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800175 {"TOS1900", 0},
176 {"", 0},
177};
178MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
179
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800180static const struct key_entry toshiba_acpi_keymap[] = {
Unai Uribarrifec278a2014-01-14 11:06:47 +0100181 { KE_KEY, 0x9e, { KEY_RFKILL } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700182 { KE_KEY, 0x101, { KEY_MUTE } },
183 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
184 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600185 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
186 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700187 { KE_KEY, 0x13b, { KEY_COFFEE } },
188 { KE_KEY, 0x13c, { KEY_BATTERY } },
189 { KE_KEY, 0x13d, { KEY_SLEEP } },
190 { KE_KEY, 0x13e, { KEY_SUSPEND } },
191 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
192 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
193 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
194 { KE_KEY, 0x142, { KEY_WLAN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600195 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
Jon Dowlanda49010f2010-10-27 00:24:59 +0100196 { KE_KEY, 0x17f, { KEY_FN } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700197 { KE_KEY, 0xb05, { KEY_PROG2 } },
198 { KE_KEY, 0xb06, { KEY_WWW } },
199 { KE_KEY, 0xb07, { KEY_MAIL } },
200 { KE_KEY, 0xb30, { KEY_STOP } },
201 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
202 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
203 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
204 { KE_KEY, 0xb5a, { KEY_MEDIA } },
Azael Avalosaf502832012-01-18 13:44:10 -0600205 { KE_IGNORE, 0x1430, { KEY_RESERVED } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700206 { KE_END, 0 },
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500207};
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/* utility
210 */
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 *word = (*word & ~mask) | (mask * value);
215}
216
217/* acpi interface wrappers
218 */
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 acpi_status status;
223
Zhang Rui619400d2013-09-03 08:31:56 +0800224 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500225 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Perform a raw HCI call. Here we don't care about input or output buffer
229 * format.
230 */
Seth Forshee135740d2011-09-20 16:55:49 -0500231static acpi_status hci_raw(struct toshiba_acpi_dev *dev,
232 const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct acpi_object_list params;
235 union acpi_object in_objs[HCI_WORDS];
236 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400237 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 acpi_status status;
239 int i;
240
241 params.count = HCI_WORDS;
242 params.pointer = in_objs;
243 for (i = 0; i < HCI_WORDS; ++i) {
244 in_objs[i].type = ACPI_TYPE_INTEGER;
245 in_objs[i].integer.value = in[i];
246 }
247
248 results.length = sizeof(out_objs);
249 results.pointer = out_objs;
250
Seth Forshee6e02cc72011-09-20 16:55:51 -0500251 status = acpi_evaluate_object(dev->acpi_dev->handle,
252 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400253 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
255 for (i = 0; i < out_objs->package.count; ++i) {
256 out[i] = out_objs->package.elements[i].integer.value;
257 }
258 }
259
260 return status;
261}
262
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400263/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 *
265 * In addition to the ACPI status, the HCI system returns a result which
266 * may be useful (such as "not supported").
267 */
268
Seth Forshee135740d2011-09-20 16:55:49 -0500269static acpi_status hci_write1(struct toshiba_acpi_dev *dev, u32 reg,
270 u32 in1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
273 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500274 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
276 return status;
277}
278
Seth Forshee135740d2011-09-20 16:55:49 -0500279static acpi_status hci_read1(struct toshiba_acpi_dev *dev, u32 reg,
280 u32 *out1, u32 *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
283 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500284 acpi_status status = hci_raw(dev, in, out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *out1 = out[2];
286 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
287 return status;
288}
289
Seth Forshee135740d2011-09-20 16:55:49 -0500290static acpi_status hci_write2(struct toshiba_acpi_dev *dev, u32 reg,
291 u32 in1, u32 in2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400292{
293 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
294 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500295 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400296 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
297 return status;
298}
299
Seth Forshee135740d2011-09-20 16:55:49 -0500300static acpi_status hci_read2(struct toshiba_acpi_dev *dev, u32 reg,
301 u32 *out1, u32 *out2, u32 *result)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400302{
303 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
304 u32 out[HCI_WORDS];
Seth Forshee135740d2011-09-20 16:55:49 -0500305 acpi_status status = hci_raw(dev, in, out);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400306 *out1 = out[2];
307 *out2 = out[3];
308 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
309 return status;
310}
311
Azael Avalos84a62732014-03-25 20:38:29 -0600312/* common sci tasks
313 */
314
315static int sci_open(struct toshiba_acpi_dev *dev)
316{
317 u32 in[HCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 };
318 u32 out[HCI_WORDS];
319 acpi_status status;
320
321 status = hci_raw(dev, in, out);
322 if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) {
323 pr_err("ACPI call to open SCI failed\n");
324 return 0;
325 }
326
327 if (out[0] == SCI_OPEN_CLOSE_OK) {
328 return 1;
329 } else if (out[0] == SCI_ALREADY_OPEN) {
330 pr_info("Toshiba SCI already opened\n");
331 return 1;
332 } else if (out[0] == SCI_NOT_PRESENT) {
333 pr_info("Toshiba SCI is not present\n");
334 }
335
336 return 0;
337}
338
339static void sci_close(struct toshiba_acpi_dev *dev)
340{
341 u32 in[HCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 };
342 u32 out[HCI_WORDS];
343 acpi_status status;
344
345 status = hci_raw(dev, in, out);
346 if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) {
347 pr_err("ACPI call to close SCI failed\n");
348 return;
349 }
350
351 if (out[0] == SCI_OPEN_CLOSE_OK)
352 return;
353 else if (out[0] == SCI_NOT_OPENED)
354 pr_info("Toshiba SCI not opened\n");
355 else if (out[0] == SCI_NOT_PRESENT)
356 pr_info("Toshiba SCI is not present\n");
357}
358
359static acpi_status sci_read(struct toshiba_acpi_dev *dev, u32 reg,
360 u32 *out1, u32 *result)
361{
362 u32 in[HCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 };
363 u32 out[HCI_WORDS];
364 acpi_status status = hci_raw(dev, in, out);
365 *out1 = out[2];
366 *result = (ACPI_SUCCESS(status)) ? out[0] : HCI_FAILURE;
367 return status;
368}
369
370static acpi_status sci_write(struct toshiba_acpi_dev *dev, u32 reg,
371 u32 in1, u32 *result)
372{
373 u32 in[HCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 };
374 u32 out[HCI_WORDS];
375 acpi_status status = hci_raw(dev, in, out);
376 *result = (ACPI_SUCCESS(status)) ? out[0] : HCI_FAILURE;
377 return status;
378}
379
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200380/* Illumination support */
Seth Forshee135740d2011-09-20 16:55:49 -0500381static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200382{
Azael Avalosfdb79082014-03-25 20:38:30 -0600383 u32 in[HCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 };
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200384 u32 out[HCI_WORDS];
385 acpi_status status;
386
Azael Avalosfdb79082014-03-25 20:38:30 -0600387 if (!sci_open(dev))
388 return 0;
389
Seth Forshee135740d2011-09-20 16:55:49 -0500390 status = hci_raw(dev, in, out);
Azael Avalosfdb79082014-03-25 20:38:30 -0600391 sci_close(dev);
392 if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) {
393 pr_err("ACPI call to query Illumination support failed\n");
394 return 0;
395 } else if (out[0] == HCI_NOT_SUPPORTED || out[1] != 1) {
Joe Perches7e334602011-03-29 15:21:52 -0700396 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200397 return 0;
398 }
Azael Avalosfdb79082014-03-25 20:38:30 -0600399
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200400 return 1;
401}
402
403static void toshiba_illumination_set(struct led_classdev *cdev,
404 enum led_brightness brightness)
405{
Seth Forshee135740d2011-09-20 16:55:49 -0500406 struct toshiba_acpi_dev *dev = container_of(cdev,
407 struct toshiba_acpi_dev, led_dev);
Azael Avalosfdb79082014-03-25 20:38:30 -0600408 u32 state, result;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200409 acpi_status status;
410
411 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600412 if (!sci_open(dev))
413 return;
414
415 /* Switch the illumination on/off */
416 state = brightness ? 1 : 0;
417 status = sci_write(dev, SCI_ILLUMINATION, state, &result);
418 sci_close(dev);
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200419 if (ACPI_FAILURE(status)) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600420 pr_err("ACPI call for illumination failed\n");
421 return;
422 } else if (result == HCI_NOT_SUPPORTED) {
423 pr_info("Illumination not supported\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200424 return;
425 }
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200426}
427
428static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
429{
Seth Forshee135740d2011-09-20 16:55:49 -0500430 struct toshiba_acpi_dev *dev = container_of(cdev,
431 struct toshiba_acpi_dev, led_dev);
Azael Avalosfdb79082014-03-25 20:38:30 -0600432 u32 state, result;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200433 acpi_status status;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200434
435 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600436 if (!sci_open(dev))
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200437 return LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200438
439 /* Check the illumination */
Azael Avalosfdb79082014-03-25 20:38:30 -0600440 status = sci_read(dev, SCI_ILLUMINATION, &state, &result);
441 sci_close(dev);
442 if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) {
443 pr_err("ACPI call for illumination failed\n");
444 return LED_OFF;
445 } else if (result == HCI_NOT_SUPPORTED) {
446 pr_info("Illumination not supported\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200447 return LED_OFF;
448 }
449
Azael Avalosfdb79082014-03-25 20:38:30 -0600450 return state ? LED_FULL : LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200451}
Azael Avalos360f0f32014-03-25 20:38:31 -0600452
453/* KBD Illumination */
454static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time)
455{
456 u32 result;
457 acpi_status status;
458
459 if (!sci_open(dev))
460 return -EIO;
461
462 status = sci_write(dev, SCI_KBD_ILLUM_STATUS, time, &result);
463 sci_close(dev);
464 if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) {
465 pr_err("ACPI call to set KBD backlight status failed\n");
466 return -EIO;
467 } else if (result == HCI_NOT_SUPPORTED) {
468 pr_info("Keyboard backlight status not supported\n");
469 return -ENODEV;
470 }
471
472 return 0;
473}
474
475static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time)
476{
477 u32 result;
478 acpi_status status;
479
480 if (!sci_open(dev))
481 return -EIO;
482
483 status = sci_read(dev, SCI_KBD_ILLUM_STATUS, time, &result);
484 sci_close(dev);
485 if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) {
486 pr_err("ACPI call to get KBD backlight status failed\n");
487 return -EIO;
488 } else if (result == HCI_NOT_SUPPORTED) {
489 pr_info("Keyboard backlight status not supported\n");
490 return -ENODEV;
491 }
492
493 return 0;
494}
495
496static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev)
497{
498 struct toshiba_acpi_dev *dev = container_of(cdev,
499 struct toshiba_acpi_dev, kbd_led);
500 u32 state, result;
501 acpi_status status;
502
503 /* Check the keyboard backlight state */
504 status = hci_read1(dev, HCI_KBD_ILLUMINATION, &state, &result);
505 if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) {
506 pr_err("ACPI call to get the keyboard backlight failed\n");
507 return LED_OFF;
508 } else if (result == HCI_NOT_SUPPORTED) {
509 pr_info("Keyboard backlight not supported\n");
510 return LED_OFF;
511 }
512
513 return state ? LED_FULL : LED_OFF;
514}
515
516static void toshiba_kbd_backlight_set(struct led_classdev *cdev,
517 enum led_brightness brightness)
518{
519 struct toshiba_acpi_dev *dev = container_of(cdev,
520 struct toshiba_acpi_dev, kbd_led);
521 u32 state, result;
522 acpi_status status;
523
524 /* Set the keyboard backlight state */
525 state = brightness ? 1 : 0;
526 status = hci_write1(dev, HCI_KBD_ILLUMINATION, state, &result);
527 if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) {
528 pr_err("ACPI call to set KBD Illumination mode failed\n");
529 return;
530 } else if (result == HCI_NOT_SUPPORTED) {
531 pr_info("Keyboard backlight not supported\n");
532 return;
533 }
534}
Azael Avalos9d8658a2014-03-25 20:38:32 -0600535
536/* TouchPad support */
537static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state)
538{
539 u32 result;
540 acpi_status status;
541
542 if (!sci_open(dev))
543 return -EIO;
544
545 status = sci_write(dev, SCI_TOUCHPAD, state, &result);
546 sci_close(dev);
547 if (ACPI_FAILURE(status)) {
548 pr_err("ACPI call to set the touchpad failed\n");
549 return -EIO;
550 } else if (result == HCI_NOT_SUPPORTED) {
551 return -ENODEV;
552 }
553
554 return 0;
555}
556
557static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state)
558{
559 u32 result;
560 acpi_status status;
561
562 if (!sci_open(dev))
563 return -EIO;
564
565 status = sci_read(dev, SCI_TOUCHPAD, state, &result);
566 sci_close(dev);
567 if (ACPI_FAILURE(status)) {
568 pr_err("ACPI call to query the touchpad failed\n");
569 return -EIO;
570 } else if (result == HCI_NOT_SUPPORTED) {
571 return -ENODEV;
572 }
573
574 return 0;
575}
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200576
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600577/* Eco Mode support */
578static int toshiba_eco_mode_available(struct toshiba_acpi_dev *dev)
579{
580 acpi_status status;
581 u32 in[HCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
582 u32 out[HCI_WORDS];
583
584 status = hci_raw(dev, in, out);
585 if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) {
586 pr_info("ACPI call to get ECO led failed\n");
587 return 0;
588 }
589
590 return 1;
591}
592
593static enum led_brightness toshiba_eco_mode_get_status(struct led_classdev *cdev)
594{
595 struct toshiba_acpi_dev *dev = container_of(cdev,
596 struct toshiba_acpi_dev, eco_led);
597 u32 in[HCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
598 u32 out[HCI_WORDS];
599 acpi_status status;
600
601 status = hci_raw(dev, in, out);
602 if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) {
603 pr_err("ACPI call to get ECO led failed\n");
604 return LED_OFF;
605 }
606
607 return out[2] ? LED_FULL : LED_OFF;
608}
609
610static void toshiba_eco_mode_set_status(struct led_classdev *cdev,
611 enum led_brightness brightness)
612{
613 struct toshiba_acpi_dev *dev = container_of(cdev,
614 struct toshiba_acpi_dev, eco_led);
615 u32 in[HCI_WORDS] = { HCI_SET, HCI_ECO_MODE, 0, 1, 0, 0 };
616 u32 out[HCI_WORDS];
617 acpi_status status;
618
619 /* Switch the Eco Mode led on/off */
620 in[2] = (brightness) ? 1 : 0;
621 status = hci_raw(dev, in, out);
622 if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) {
623 pr_err("ACPI call to set ECO led failed\n");
624 return;
625 }
626}
627
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400628/* Bluetooth rfkill handlers */
629
Seth Forshee135740d2011-09-20 16:55:49 -0500630static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400631{
632 u32 hci_result;
633 u32 value, value2;
634
635 value = 0;
636 value2 = 0;
Seth Forshee135740d2011-09-20 16:55:49 -0500637 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400638 if (hci_result == HCI_SUCCESS)
639 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
640
641 return hci_result;
642}
643
Seth Forshee135740d2011-09-20 16:55:49 -0500644static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400645{
646 u32 hci_result;
647 u32 value, value2;
648
649 value = 0;
650 value2 = 0x0001;
Seth Forshee135740d2011-09-20 16:55:49 -0500651 hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400652
653 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
654 return hci_result;
655}
656
Johannes Berg19d337d2009-06-02 13:01:37 +0200657static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400658{
Johannes Berg19d337d2009-06-02 13:01:37 +0200659 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400660 u32 result1, result2;
661 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200662 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400663 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400664
Johannes Berg19d337d2009-06-02 13:01:37 +0200665 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400666
667 mutex_lock(&dev->mutex);
Seth Forshee135740d2011-09-20 16:55:49 -0500668 if (hci_get_radio_state(dev, &radio_state) != HCI_SUCCESS) {
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500669 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200670 goto out;
671 }
672
673 if (!radio_state) {
674 err = 0;
675 goto out;
676 }
677
Seth Forshee135740d2011-09-20 16:55:49 -0500678 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
679 hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400680
681 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500682 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200683 else
684 err = 0;
685 out:
686 mutex_unlock(&dev->mutex);
687 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400688}
689
Johannes Berg19d337d2009-06-02 13:01:37 +0200690static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400691{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400692 bool new_rfk_state;
693 bool value;
694 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200695 struct toshiba_acpi_dev *dev = data;
696
697 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400698
Seth Forshee135740d2011-09-20 16:55:49 -0500699 hci_result = hci_get_radio_state(dev, &value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200700 if (hci_result != HCI_SUCCESS) {
701 /* Can't do anything useful */
702 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700703 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200704 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400705
706 new_rfk_state = value;
707
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400708 mutex_unlock(&dev->mutex);
709
Johannes Berg19d337d2009-06-02 13:01:37 +0200710 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
711 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400712}
713
Johannes Berg19d337d2009-06-02 13:01:37 +0200714static const struct rfkill_ops toshiba_rfk_ops = {
715 .set_block = bt_rfkill_set_block,
716 .poll = bt_rfkill_poll,
717};
718
Akio Idehara121b7b02012-04-06 01:46:43 +0900719static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled)
720{
721 u32 hci_result;
722 u32 status;
723
724 hci_read1(dev, HCI_TR_BACKLIGHT, &status, &hci_result);
725 *enabled = !status;
726 return hci_result == HCI_SUCCESS ? 0 : -EIO;
727}
728
729static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable)
730{
731 u32 hci_result;
732 u32 value = !enable;
733
734 hci_write1(dev, HCI_TR_BACKLIGHT, value, &hci_result);
735 return hci_result == HCI_SUCCESS ? 0 : -EIO;
736}
737
Len Brown4be44fc2005-08-05 00:44:28 -0400738static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Seth Forshee62cce752012-04-19 11:23:50 -0500740static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 u32 hci_result;
743 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900744 int brightness = 0;
745
746 if (dev->tr_backlight_supported) {
747 bool enabled;
748 int ret = get_tr_backlight_status(dev, &enabled);
749 if (ret)
750 return ret;
751 if (enabled)
752 return 0;
753 brightness++;
754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Seth Forshee135740d2011-09-20 16:55:49 -0500756 hci_read1(dev, HCI_LCD_BRIGHTNESS, &value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500757 if (hci_result == HCI_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +0900758 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500759
760 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700761}
762
Seth Forshee62cce752012-04-19 11:23:50 -0500763static int get_lcd_brightness(struct backlight_device *bd)
764{
765 struct toshiba_acpi_dev *dev = bl_get_data(bd);
766 return __get_lcd_brightness(dev);
767}
768
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800769static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700770{
Seth Forshee135740d2011-09-20 16:55:49 -0500771 struct toshiba_acpi_dev *dev = m->private;
772 int value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900773 int levels;
Holger Machtc9263552006-10-20 14:30:29 -0700774
Seth Forshee135740d2011-09-20 16:55:49 -0500775 if (!dev->backlight_dev)
776 return -ENODEV;
777
Akio Idehara121b7b02012-04-06 01:46:43 +0900778 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -0500779 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -0700780 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800781 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +0900782 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500786 pr_err("Error reading LCD brightness\n");
787 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800788}
789
790static int lcd_proc_open(struct inode *inode, struct file *file)
791{
Al Virod9dda782013-03-31 18:16:14 -0400792 return single_open(file, lcd_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Seth Forshee62cce752012-04-19 11:23:50 -0500795static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -0700796{
797 u32 hci_result;
798
Akio Idehara121b7b02012-04-06 01:46:43 +0900799 if (dev->tr_backlight_supported) {
800 bool enable = !value;
801 int ret = set_tr_backlight_status(dev, enable);
802 if (ret)
803 return ret;
804 if (value)
805 value--;
806 }
807
Holger Machtc9263552006-10-20 14:30:29 -0700808 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
Seth Forshee135740d2011-09-20 16:55:49 -0500809 hci_write1(dev, HCI_LCD_BRIGHTNESS, value, &hci_result);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500810 return hci_result == HCI_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700811}
812
813static int set_lcd_status(struct backlight_device *bd)
814{
Seth Forshee135740d2011-09-20 16:55:49 -0500815 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Seth Forshee62cce752012-04-19 11:23:50 -0500816 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700817}
818
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800819static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
820 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Al Virod9dda782013-03-31 18:16:14 -0400822 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800823 char cmd[42];
824 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800826 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +0900827 int levels = dev->backlight_dev->props.max_brightness + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800829 len = min(count, sizeof(cmd) - 1);
830 if (copy_from_user(cmd, buf, len))
831 return -EFAULT;
832 cmd[len] = '\0';
833
834 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Akio Idehara121b7b02012-04-06 01:46:43 +0900835 value >= 0 && value < levels) {
Seth Forshee62cce752012-04-19 11:23:50 -0500836 ret = set_lcd_brightness(dev, value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800837 if (ret == 0)
838 ret = count;
839 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700840 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800841 }
Holger Machtc9263552006-10-20 14:30:29 -0700842 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800845static const struct file_operations lcd_proc_fops = {
846 .owner = THIS_MODULE,
847 .open = lcd_proc_open,
848 .read = seq_read,
849 .llseek = seq_lseek,
850 .release = single_release,
851 .write = lcd_proc_write,
852};
853
Seth Forshee36d03f92011-09-20 16:55:53 -0500854static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
855{
856 u32 hci_result;
857
858 hci_read1(dev, HCI_VIDEO_OUT, status, &hci_result);
859 return hci_result == HCI_SUCCESS ? 0 : -EIO;
860}
861
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800862static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Seth Forshee135740d2011-09-20 16:55:49 -0500864 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 u32 value;
Seth Forshee36d03f92011-09-20 16:55:53 -0500866 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Seth Forshee36d03f92011-09-20 16:55:53 -0500868 ret = get_video_status(dev, &value);
869 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
871 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400872 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800873 seq_printf(m, "lcd_out: %d\n", is_lcd);
874 seq_printf(m, "crt_out: %d\n", is_crt);
875 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Seth Forshee36d03f92011-09-20 16:55:53 -0500878 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800881static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Al Virod9dda782013-03-31 18:16:14 -0400883 return single_open(file, video_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800884}
885
886static ssize_t video_proc_write(struct file *file, const char __user *buf,
887 size_t count, loff_t *pos)
888{
Al Virod9dda782013-03-31 18:16:14 -0400889 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800890 char *cmd, *buffer;
Seth Forshee36d03f92011-09-20 16:55:53 -0500891 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int value;
893 int remain = count;
894 int lcd_out = -1;
895 int crt_out = -1;
896 int tv_out = -1;
Al Virob4482a42007-10-14 19:35:40 +0100897 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800899 cmd = kmalloc(count + 1, GFP_KERNEL);
900 if (!cmd)
901 return -ENOMEM;
902 if (copy_from_user(cmd, buf, count)) {
903 kfree(cmd);
904 return -EFAULT;
905 }
906 cmd[count] = '\0';
907
908 buffer = cmd;
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /* scan expression. Multiple expressions may be delimited with ;
911 *
912 * NOTE: to keep scanning simple, invalid fields are ignored
913 */
914 while (remain) {
915 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
916 lcd_out = value & 1;
917 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
918 crt_out = value & 1;
919 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
920 tv_out = value & 1;
921 /* advance to one character past the next ; */
922 do {
923 ++buffer;
924 --remain;
925 }
Len Brown4be44fc2005-08-05 00:44:28 -0400926 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800929 kfree(cmd);
930
Seth Forshee36d03f92011-09-20 16:55:53 -0500931 ret = get_video_status(dev, &video_out);
932 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700933 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (lcd_out != -1)
935 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
936 if (crt_out != -1)
937 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
938 if (tv_out != -1)
939 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
940 /* To avoid unnecessary video disruption, only write the new
941 * video setting if something changed. */
942 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500943 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500946 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800949static const struct file_operations video_proc_fops = {
950 .owner = THIS_MODULE,
951 .open = video_proc_open,
952 .read = seq_read,
953 .llseek = seq_lseek,
954 .release = single_release,
955 .write = video_proc_write,
956};
957
Seth Forshee36d03f92011-09-20 16:55:53 -0500958static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
959{
960 u32 hci_result;
961
962 hci_read1(dev, HCI_FAN, status, &hci_result);
963 return hci_result == HCI_SUCCESS ? 0 : -EIO;
964}
965
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800966static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Seth Forshee135740d2011-09-20 16:55:49 -0500968 struct toshiba_acpi_dev *dev = m->private;
Seth Forshee36d03f92011-09-20 16:55:53 -0500969 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 u32 value;
971
Seth Forshee36d03f92011-09-20 16:55:53 -0500972 ret = get_fan_status(dev, &value);
973 if (!ret) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800974 seq_printf(m, "running: %d\n", (value > 0));
Seth Forshee135740d2011-09-20 16:55:49 -0500975 seq_printf(m, "force_on: %d\n", dev->force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977
Seth Forshee36d03f92011-09-20 16:55:53 -0500978 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800981static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Al Virod9dda782013-03-31 18:16:14 -0400983 return single_open(file, fan_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800984}
985
986static ssize_t fan_proc_write(struct file *file, const char __user *buf,
987 size_t count, loff_t *pos)
988{
Al Virod9dda782013-03-31 18:16:14 -0400989 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800990 char cmd[42];
991 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 int value;
993 u32 hci_result;
994
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800995 len = min(count, sizeof(cmd) - 1);
996 if (copy_from_user(cmd, buf, len))
997 return -EFAULT;
998 cmd[len] = '\0';
999
1000 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -04001001 value >= 0 && value <= 1) {
Seth Forshee135740d2011-09-20 16:55:49 -05001002 hci_write1(dev, HCI_FAN, value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (hci_result != HCI_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001004 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 else
Seth Forshee135740d2011-09-20 16:55:49 -05001006 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 } else {
1008 return -EINVAL;
1009 }
1010
1011 return count;
1012}
1013
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001014static const struct file_operations fan_proc_fops = {
1015 .owner = THIS_MODULE,
1016 .open = fan_proc_open,
1017 .read = seq_read,
1018 .llseek = seq_lseek,
1019 .release = single_release,
1020 .write = fan_proc_write,
1021};
1022
1023static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Seth Forshee135740d2011-09-20 16:55:49 -05001025 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 u32 hci_result;
1027 u32 value;
1028
Seth Forshee11948b92011-11-16 17:37:45 -06001029 if (!dev->key_event_valid && dev->system_event_supported) {
Seth Forshee135740d2011-09-20 16:55:49 -05001030 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (hci_result == HCI_SUCCESS) {
Seth Forshee135740d2011-09-20 16:55:49 -05001032 dev->key_event_valid = 1;
1033 dev->last_key_event = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 } else if (hci_result == HCI_EMPTY) {
1035 /* better luck next time */
1036 } else if (hci_result == HCI_NOT_SUPPORTED) {
1037 /* This is a workaround for an unresolved issue on
1038 * some machines where system events sporadically
1039 * become disabled. */
Seth Forshee135740d2011-09-20 16:55:49 -05001040 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
Joe Perches7e334602011-03-29 15:21:52 -07001041 pr_notice("Re-enabled hotkeys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 } else {
Joe Perches7e334602011-03-29 15:21:52 -07001043 pr_err("Error reading hotkey status\n");
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001044 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 }
1047
Seth Forshee135740d2011-09-20 16:55:49 -05001048 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
1049 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001050 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001053static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Al Virod9dda782013-03-31 18:16:14 -04001055 return single_open(file, keys_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001056}
1057
1058static ssize_t keys_proc_write(struct file *file, const char __user *buf,
1059 size_t count, loff_t *pos)
1060{
Al Virod9dda782013-03-31 18:16:14 -04001061 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001062 char cmd[42];
1063 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 int value;
1065
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001066 len = min(count, sizeof(cmd) - 1);
1067 if (copy_from_user(cmd, buf, len))
1068 return -EFAULT;
1069 cmd[len] = '\0';
1070
1071 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Seth Forshee135740d2011-09-20 16:55:49 -05001072 dev->key_event_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 } else {
1074 return -EINVAL;
1075 }
1076
1077 return count;
1078}
1079
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001080static const struct file_operations keys_proc_fops = {
1081 .owner = THIS_MODULE,
1082 .open = keys_proc_open,
1083 .read = seq_read,
1084 .llseek = seq_lseek,
1085 .release = single_release,
1086 .write = keys_proc_write,
1087};
1088
1089static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001091 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
1092 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
1093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001096static int version_proc_open(struct inode *inode, struct file *file)
1097{
Al Virod9dda782013-03-31 18:16:14 -04001098 return single_open(file, version_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001099}
1100
1101static const struct file_operations version_proc_fops = {
1102 .owner = THIS_MODULE,
1103 .open = version_proc_open,
1104 .read = seq_read,
1105 .llseek = seq_lseek,
1106 .release = single_release,
1107};
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109/* proc and module init
1110 */
1111
1112#define PROC_TOSHIBA "toshiba"
1113
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001114static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Seth Forshee36d03f92011-09-20 16:55:53 -05001116 if (dev->backlight_dev)
1117 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1118 &lcd_proc_fops, dev);
1119 if (dev->video_supported)
1120 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1121 &video_proc_fops, dev);
1122 if (dev->fan_supported)
1123 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1124 &fan_proc_fops, dev);
1125 if (dev->hotkey_dev)
1126 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1127 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001128 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
1129 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Seth Forshee36d03f92011-09-20 16:55:53 -05001132static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Seth Forshee36d03f92011-09-20 16:55:53 -05001134 if (dev->backlight_dev)
1135 remove_proc_entry("lcd", toshiba_proc_dir);
1136 if (dev->video_supported)
1137 remove_proc_entry("video", toshiba_proc_dir);
1138 if (dev->fan_supported)
1139 remove_proc_entry("fan", toshiba_proc_dir);
1140 if (dev->hotkey_dev)
1141 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001142 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
Lionel Debrouxacc24722010-11-16 14:14:02 +01001145static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +09001146 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -05001147 .get_brightness = get_lcd_brightness,
1148 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -07001149};
Azael Avalos360f0f32014-03-25 20:38:31 -06001150
1151/*
1152 * Sysfs files
1153 */
1154
1155static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
1156 struct device_attribute *attr,
1157 const char *buf, size_t count)
1158{
1159 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1160 int mode = -1;
1161 int time = -1;
1162
1163 if (sscanf(buf, "%i", &mode) != 1 && (mode != 2 || mode != 1))
1164 return -EINVAL;
1165
1166 /* Set the Keyboard Backlight Mode where:
1167 * Mode - Auto (2) | FN-Z (1)
1168 * Auto - KBD backlight turns off automatically in given time
1169 * FN-Z - KBD backlight "toggles" when hotkey pressed
1170 */
1171 if (mode != -1 && toshiba->kbd_mode != mode) {
1172 time = toshiba->kbd_time << HCI_MISC_SHIFT;
1173 time = time + toshiba->kbd_mode;
1174 if (toshiba_kbd_illum_status_set(toshiba, time) < 0)
1175 return -EIO;
1176 toshiba->kbd_mode = mode;
1177 }
1178
1179 return count;
1180}
1181
1182static ssize_t toshiba_kbd_bl_mode_show(struct device *dev,
1183 struct device_attribute *attr,
1184 char *buf)
1185{
1186 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1187 u32 time;
1188
1189 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1190 return -EIO;
1191
1192 return sprintf(buf, "%i\n", time & 0x07);
1193}
1194
1195static ssize_t toshiba_kbd_bl_timeout_store(struct device *dev,
1196 struct device_attribute *attr,
1197 const char *buf, size_t count)
1198{
1199 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1200 int time = -1;
1201
1202 if (sscanf(buf, "%i", &time) != 1 && (time < 0 || time > 60))
1203 return -EINVAL;
1204
1205 /* Set the Keyboard Backlight Timeout: 0-60 seconds */
1206 if (time != -1 && toshiba->kbd_time != time) {
1207 time = time << HCI_MISC_SHIFT;
1208 time = (toshiba->kbd_mode == SCI_KBD_MODE_AUTO) ?
1209 time + 1 : time + 2;
1210 if (toshiba_kbd_illum_status_set(toshiba, time) < 0)
1211 return -EIO;
1212 toshiba->kbd_time = time >> HCI_MISC_SHIFT;
1213 }
1214
1215 return count;
1216}
1217
1218static ssize_t toshiba_kbd_bl_timeout_show(struct device *dev,
1219 struct device_attribute *attr,
1220 char *buf)
1221{
1222 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1223 u32 time;
1224
1225 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1226 return -EIO;
1227
1228 return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT);
1229}
Azael Avalos9d8658a2014-03-25 20:38:32 -06001230
1231static ssize_t toshiba_touchpad_store(struct device *dev,
1232 struct device_attribute *attr,
1233 const char *buf, size_t count)
1234{
1235 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1236 int state;
1237
1238 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
1239 if (sscanf(buf, "%i", &state) == 1 && (state == 0 || state == 1)) {
1240 if (toshiba_touchpad_set(toshiba, state) < 0)
1241 return -EIO;
1242 }
1243
1244 return count;
1245}
1246
1247static ssize_t toshiba_touchpad_show(struct device *dev,
1248 struct device_attribute *attr, char *buf)
1249{
1250 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1251 u32 state;
1252 int ret;
1253
1254 ret = toshiba_touchpad_get(toshiba, &state);
1255 if (ret < 0)
1256 return ret;
1257
1258 return sprintf(buf, "%i\n", state);
1259}
Azael Avalos360f0f32014-03-25 20:38:31 -06001260
1261static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR,
1262 toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store);
1263static DEVICE_ATTR(kbd_backlight_timeout, S_IRUGO | S_IWUSR,
1264 toshiba_kbd_bl_timeout_show, toshiba_kbd_bl_timeout_store);
Azael Avalos9d8658a2014-03-25 20:38:32 -06001265static DEVICE_ATTR(touchpad, S_IRUGO | S_IWUSR,
1266 toshiba_touchpad_show, toshiba_touchpad_store);
Azael Avalos360f0f32014-03-25 20:38:31 -06001267
1268static struct attribute *toshiba_attributes[] = {
1269 &dev_attr_kbd_backlight_mode.attr,
1270 &dev_attr_kbd_backlight_timeout.attr,
Azael Avalos9d8658a2014-03-25 20:38:32 -06001271 &dev_attr_touchpad.attr,
Azael Avalos360f0f32014-03-25 20:38:31 -06001272 NULL,
1273};
1274
1275static umode_t toshiba_sysfs_is_visible(struct kobject *kobj,
1276 struct attribute *attr, int idx)
1277{
1278 struct device *dev = container_of(kobj, struct device, kobj);
1279 struct toshiba_acpi_dev *drv = dev_get_drvdata(dev);
1280 bool exists = true;
1281
1282 if (attr == &dev_attr_kbd_backlight_mode.attr)
1283 exists = (drv->kbd_illum_supported) ? true : false;
1284 else if (attr == &dev_attr_kbd_backlight_timeout.attr)
1285 exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001286 else if (attr == &dev_attr_touchpad.attr)
1287 exists = (drv->touchpad_supported) ? true : false;
Azael Avalos360f0f32014-03-25 20:38:31 -06001288
1289 return exists ? attr->mode : 0;
1290}
1291
1292static struct attribute_group toshiba_attr_group = {
1293 .is_visible = toshiba_sysfs_is_visible,
1294 .attrs = toshiba_attributes,
1295};
Holger Machtc9263552006-10-20 14:30:29 -07001296
Seth Forshee29cd2932012-01-18 13:44:09 -06001297static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
1298 struct serio *port)
1299{
1300 if (str & 0x20)
1301 return false;
1302
1303 if (unlikely(data == 0xe0))
1304 return false;
1305
1306 if ((data & 0x7f) == TOS1900_FN_SCAN) {
1307 schedule_work(&toshiba_acpi->hotkey_work);
1308 return true;
1309 }
1310
1311 return false;
1312}
1313
1314static void toshiba_acpi_hotkey_work(struct work_struct *work)
1315{
1316 acpi_handle ec_handle = ec_get_handle();
1317 acpi_status status;
1318
1319 if (!ec_handle)
1320 return;
1321
1322 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
1323 if (ACPI_FAILURE(status))
1324 pr_err("ACPI NTFY method execution failed\n");
1325}
1326
1327/*
1328 * Returns hotkey scancode, or < 0 on failure.
1329 */
1330static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
1331{
Zhang Rui74facaf2013-09-03 08:32:15 +08001332 unsigned long long value;
Seth Forshee29cd2932012-01-18 13:44:09 -06001333 acpi_status status;
1334
Zhang Rui74facaf2013-09-03 08:32:15 +08001335 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
1336 NULL, &value);
1337 if (ACPI_FAILURE(status)) {
Seth Forshee29cd2932012-01-18 13:44:09 -06001338 pr_err("ACPI INFO method execution failed\n");
1339 return -EIO;
1340 }
1341
Zhang Rui74facaf2013-09-03 08:32:15 +08001342 return value;
Seth Forshee29cd2932012-01-18 13:44:09 -06001343}
1344
1345static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
1346 int scancode)
1347{
1348 if (scancode == 0x100)
1349 return;
1350
1351 /* act on key press; ignore key release */
1352 if (scancode & 0x80)
1353 return;
1354
1355 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
1356 pr_info("Unknown key %x\n", scancode);
1357}
1358
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001359static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001360{
Seth Forshee135740d2011-09-20 16:55:49 -05001361 acpi_status status;
Zhang Ruie2e19602013-09-03 08:32:06 +08001362 acpi_handle ec_handle;
Seth Forshee135740d2011-09-20 16:55:49 -05001363 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -06001364 u32 hci_result;
Seth Forshee135740d2011-09-20 16:55:49 -05001365
Seth Forshee135740d2011-09-20 16:55:49 -05001366 dev->hotkey_dev = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -07001367 if (!dev->hotkey_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001368 return -ENOMEM;
Seth Forshee135740d2011-09-20 16:55:49 -05001369
1370 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -05001371 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -05001372 dev->hotkey_dev->id.bustype = BUS_HOST;
1373
1374 error = sparse_keymap_setup(dev->hotkey_dev, toshiba_acpi_keymap, NULL);
1375 if (error)
1376 goto err_free_dev;
1377
Seth Forshee29cd2932012-01-18 13:44:09 -06001378 /*
1379 * For some machines the SCI responsible for providing hotkey
1380 * notification doesn't fire. We can trigger the notification
1381 * whenever the Fn key is pressed using the NTFY method, if
1382 * supported, so if it's present set up an i8042 key filter
1383 * for this purpose.
1384 */
1385 status = AE_ERROR;
1386 ec_handle = ec_get_handle();
Zhang Ruie2e19602013-09-03 08:32:06 +08001387 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
Seth Forshee29cd2932012-01-18 13:44:09 -06001388 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
1389
1390 error = i8042_install_filter(toshiba_acpi_i8042_filter);
1391 if (error) {
1392 pr_err("Error installing key filter\n");
1393 goto err_free_keymap;
1394 }
1395
1396 dev->ntfy_supported = 1;
1397 }
1398
1399 /*
1400 * Determine hotkey query interface. Prefer using the INFO
1401 * method when it is available.
1402 */
Zhang Ruie2e19602013-09-03 08:32:06 +08001403 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
Seth Forshee29cd2932012-01-18 13:44:09 -06001404 dev->info_supported = 1;
Zhang Ruie2e19602013-09-03 08:32:06 +08001405 else {
Seth Forshee29cd2932012-01-18 13:44:09 -06001406 hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result);
1407 if (hci_result == HCI_SUCCESS)
1408 dev->system_event_supported = 1;
1409 }
1410
1411 if (!dev->info_supported && !dev->system_event_supported) {
1412 pr_warn("No hotkey query interface found\n");
1413 goto err_remove_filter;
1414 }
1415
Seth Forshee6e02cc72011-09-20 16:55:51 -05001416 status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05001417 if (ACPI_FAILURE(status)) {
1418 pr_info("Unable to enable hotkeys\n");
1419 error = -ENODEV;
Seth Forshee29cd2932012-01-18 13:44:09 -06001420 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001421 }
1422
1423 error = input_register_device(dev->hotkey_dev);
1424 if (error) {
1425 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001426 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001427 }
1428
Seth Forshee29cd2932012-01-18 13:44:09 -06001429 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result);
Seth Forshee135740d2011-09-20 16:55:49 -05001430 return 0;
1431
Seth Forshee29cd2932012-01-18 13:44:09 -06001432 err_remove_filter:
1433 if (dev->ntfy_supported)
1434 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05001435 err_free_keymap:
1436 sparse_keymap_free(dev->hotkey_dev);
1437 err_free_dev:
1438 input_free_device(dev->hotkey_dev);
1439 dev->hotkey_dev = NULL;
1440 return error;
1441}
1442
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001443static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
Seth Forshee62cce752012-04-19 11:23:50 -05001444{
1445 struct backlight_properties props;
1446 int brightness;
1447 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +09001448 bool enabled;
Seth Forshee62cce752012-04-19 11:23:50 -05001449
1450 /*
1451 * Some machines don't support the backlight methods at all, and
1452 * others support it read-only. Either of these is pretty useless,
1453 * so only register the backlight device if the backlight method
1454 * supports both reads and writes.
1455 */
1456 brightness = __get_lcd_brightness(dev);
1457 if (brightness < 0)
1458 return 0;
1459 ret = set_lcd_brightness(dev, brightness);
1460 if (ret) {
1461 pr_debug("Backlight method is read-only, disabling backlight support\n");
1462 return 0;
1463 }
1464
Akio Idehara121b7b02012-04-06 01:46:43 +09001465 /* Determine whether or not BIOS supports transflective backlight */
1466 ret = get_tr_backlight_status(dev, &enabled);
1467 dev->tr_backlight_supported = !ret;
1468
Matthew Garrett53039f22012-06-01 11:02:36 -04001469 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05001470 props.type = BACKLIGHT_PLATFORM;
1471 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001472
Akio Idehara121b7b02012-04-06 01:46:43 +09001473 /* adding an extra level and having 0 change to transflective mode */
1474 if (dev->tr_backlight_supported)
1475 props.max_brightness++;
1476
Seth Forshee62cce752012-04-19 11:23:50 -05001477 dev->backlight_dev = backlight_device_register("toshiba",
1478 &dev->acpi_dev->dev,
1479 dev,
1480 &toshiba_backlight_data,
1481 &props);
1482 if (IS_ERR(dev->backlight_dev)) {
1483 ret = PTR_ERR(dev->backlight_dev);
1484 pr_err("Could not register toshiba backlight device\n");
1485 dev->backlight_dev = NULL;
1486 return ret;
1487 }
1488
1489 dev->backlight_dev->props.brightness = brightness;
1490 return 0;
1491}
1492
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001493static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001494{
1495 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
1496
Seth Forshee36d03f92011-09-20 16:55:53 -05001497 remove_toshiba_proc_entries(dev);
Azael Avalos360f0f32014-03-25 20:38:31 -06001498
1499 if (dev->sysfs_created)
1500 sysfs_remove_group(&dev->acpi_dev->dev.kobj,
1501 &toshiba_attr_group);
Seth Forshee135740d2011-09-20 16:55:49 -05001502
Seth Forshee29cd2932012-01-18 13:44:09 -06001503 if (dev->ntfy_supported) {
1504 i8042_remove_filter(toshiba_acpi_i8042_filter);
1505 cancel_work_sync(&dev->hotkey_work);
1506 }
1507
Seth Forshee135740d2011-09-20 16:55:49 -05001508 if (dev->hotkey_dev) {
1509 input_unregister_device(dev->hotkey_dev);
1510 sparse_keymap_free(dev->hotkey_dev);
1511 }
1512
1513 if (dev->bt_rfk) {
1514 rfkill_unregister(dev->bt_rfk);
1515 rfkill_destroy(dev->bt_rfk);
1516 }
1517
1518 if (dev->backlight_dev)
1519 backlight_device_unregister(dev->backlight_dev);
1520
Seth Forshee36d03f92011-09-20 16:55:53 -05001521 if (dev->illumination_supported)
Seth Forshee135740d2011-09-20 16:55:49 -05001522 led_classdev_unregister(&dev->led_dev);
Azael Avalos360f0f32014-03-25 20:38:31 -06001523
1524 if (dev->kbd_led_registered)
1525 led_classdev_unregister(&dev->kbd_led);
Azael Avalosdef6c4e2014-03-25 20:38:33 -06001526
1527 if (dev->eco_supported)
1528 led_classdev_unregister(&dev->eco_led);
Seth Forshee135740d2011-09-20 16:55:49 -05001529
Seth Forshee29cd2932012-01-18 13:44:09 -06001530 if (toshiba_acpi)
1531 toshiba_acpi = NULL;
1532
Seth Forshee135740d2011-09-20 16:55:49 -05001533 kfree(dev);
1534
1535 return 0;
1536}
1537
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001538static const char *find_hci_method(acpi_handle handle)
Seth Forsheea540d6b2011-09-20 16:55:52 -05001539{
Zhang Ruie2e19602013-09-03 08:32:06 +08001540 if (acpi_has_method(handle, "GHCI"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001541 return "GHCI";
1542
Zhang Ruie2e19602013-09-03 08:32:06 +08001543 if (acpi_has_method(handle, "SPFC"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001544 return "SPFC";
1545
1546 return NULL;
1547}
1548
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001549static int toshiba_acpi_add(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001550{
1551 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001552 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05001553 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05001554 bool bt_present;
1555 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05001556
Seth Forshee29cd2932012-01-18 13:44:09 -06001557 if (toshiba_acpi)
1558 return -EBUSY;
1559
Seth Forshee135740d2011-09-20 16:55:49 -05001560 pr_info("Toshiba Laptop ACPI Extras version %s\n",
1561 TOSHIBA_ACPI_VERSION);
1562
Seth Forsheea540d6b2011-09-20 16:55:52 -05001563 hci_method = find_hci_method(acpi_dev->handle);
1564 if (!hci_method) {
1565 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05001566 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001567 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05001568
Seth Forshee135740d2011-09-20 16:55:49 -05001569 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1570 if (!dev)
1571 return -ENOMEM;
1572 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001573 dev->method_hci = hci_method;
Seth Forshee135740d2011-09-20 16:55:49 -05001574 acpi_dev->driver_data = dev;
Azael Avalos360f0f32014-03-25 20:38:31 -06001575 dev_set_drvdata(&acpi_dev->dev, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001576
Seth Forshee6e02cc72011-09-20 16:55:51 -05001577 if (toshiba_acpi_setup_keyboard(dev))
1578 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05001579
1580 mutex_init(&dev->mutex);
1581
Seth Forshee62cce752012-04-19 11:23:50 -05001582 ret = toshiba_acpi_setup_backlight(dev);
1583 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05001584 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05001585
1586 /* Register rfkill switch for Bluetooth */
1587 if (hci_get_bt_present(dev, &bt_present) == HCI_SUCCESS && bt_present) {
1588 dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth",
1589 &acpi_dev->dev,
1590 RFKILL_TYPE_BLUETOOTH,
1591 &toshiba_rfk_ops,
1592 dev);
1593 if (!dev->bt_rfk) {
1594 pr_err("unable to allocate rfkill device\n");
1595 ret = -ENOMEM;
1596 goto error;
1597 }
1598
1599 ret = rfkill_register(dev->bt_rfk);
1600 if (ret) {
1601 pr_err("unable to register rfkill device\n");
1602 rfkill_destroy(dev->bt_rfk);
1603 goto error;
1604 }
1605 }
1606
1607 if (toshiba_illumination_available(dev)) {
1608 dev->led_dev.name = "toshiba::illumination";
1609 dev->led_dev.max_brightness = 1;
1610 dev->led_dev.brightness_set = toshiba_illumination_set;
1611 dev->led_dev.brightness_get = toshiba_illumination_get;
1612 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Seth Forshee36d03f92011-09-20 16:55:53 -05001613 dev->illumination_supported = 1;
Seth Forshee135740d2011-09-20 16:55:49 -05001614 }
Azael Avalos360f0f32014-03-25 20:38:31 -06001615
Azael Avalosdef6c4e2014-03-25 20:38:33 -06001616 if (toshiba_eco_mode_available(dev)) {
1617 dev->eco_led.name = "toshiba::eco_mode";
1618 dev->eco_led.max_brightness = 1;
1619 dev->eco_led.brightness_set = toshiba_eco_mode_set_status;
1620 dev->eco_led.brightness_get = toshiba_eco_mode_get_status;
1621 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->eco_led))
1622 dev->eco_supported = 1;
1623 }
1624
Azael Avalos360f0f32014-03-25 20:38:31 -06001625 ret = toshiba_kbd_illum_status_get(dev, &dummy);
1626 if (!ret) {
1627 dev->kbd_time = dummy >> HCI_MISC_SHIFT;
1628 dev->kbd_mode = dummy & 0x07;
1629 }
1630 dev->kbd_illum_supported = !ret;
1631 /*
1632 * Only register the LED if KBD illumination is supported
1633 * and the keyboard backlight operation mode is set to FN-Z
1634 */
1635 if (dev->kbd_illum_supported && dev->kbd_mode == SCI_KBD_MODE_FNZ) {
1636 dev->kbd_led.name = "toshiba::kbd_backlight";
1637 dev->kbd_led.max_brightness = 1;
1638 dev->kbd_led.brightness_set = toshiba_kbd_backlight_set;
1639 dev->kbd_led.brightness_get = toshiba_kbd_backlight_get;
1640 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->kbd_led))
1641 dev->kbd_led_registered = 1;
1642 }
Azael Avalos9d8658a2014-03-25 20:38:32 -06001643
1644 ret = toshiba_touchpad_get(dev, &dummy);
1645 dev->touchpad_supported = !ret;
Seth Forshee135740d2011-09-20 16:55:49 -05001646
Seth Forshee36d03f92011-09-20 16:55:53 -05001647 /* Determine whether or not BIOS supports fan and video interfaces */
1648
1649 ret = get_video_status(dev, &dummy);
1650 dev->video_supported = !ret;
1651
1652 ret = get_fan_status(dev, &dummy);
1653 dev->fan_supported = !ret;
1654
Azael Avalos360f0f32014-03-25 20:38:31 -06001655 ret = sysfs_create_group(&dev->acpi_dev->dev.kobj,
1656 &toshiba_attr_group);
1657 if (ret) {
1658 dev->sysfs_created = 0;
1659 goto error;
1660 }
1661 dev->sysfs_created = !ret;
1662
Seth Forshee36d03f92011-09-20 16:55:53 -05001663 create_toshiba_proc_entries(dev);
1664
Seth Forshee29cd2932012-01-18 13:44:09 -06001665 toshiba_acpi = dev;
1666
Seth Forshee135740d2011-09-20 16:55:49 -05001667 return 0;
1668
1669error:
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001670 toshiba_acpi_remove(acpi_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001671 return ret;
1672}
1673
1674static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
1675{
1676 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001677 u32 hci_result, value;
Seth Forshee11948b92011-11-16 17:37:45 -06001678 int retries = 3;
Seth Forshee29cd2932012-01-18 13:44:09 -06001679 int scancode;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001680
Seth Forshee29cd2932012-01-18 13:44:09 -06001681 if (event != 0x80)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001682 return;
Seth Forshee11948b92011-11-16 17:37:45 -06001683
Seth Forshee29cd2932012-01-18 13:44:09 -06001684 if (dev->info_supported) {
1685 scancode = toshiba_acpi_query_hotkey(dev);
1686 if (scancode < 0)
1687 pr_err("Failed to query hotkey event\n");
1688 else if (scancode != 0)
1689 toshiba_acpi_report_hotkey(dev, scancode);
1690 } else if (dev->system_event_supported) {
1691 do {
1692 hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result);
1693 switch (hci_result) {
1694 case HCI_SUCCESS:
1695 toshiba_acpi_report_hotkey(dev, (int)value);
1696 break;
1697 case HCI_NOT_SUPPORTED:
1698 /*
1699 * This is a workaround for an unresolved
1700 * issue on some machines where system events
1701 * sporadically become disabled.
1702 */
1703 hci_write1(dev, HCI_SYSTEM_EVENT, 1,
1704 &hci_result);
1705 pr_notice("Re-enabled hotkeys\n");
1706 /* fall through */
1707 default:
1708 retries--;
1709 break;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001710 }
Seth Forshee29cd2932012-01-18 13:44:09 -06001711 } while (retries && hci_result != HCI_EMPTY);
1712 }
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001713}
1714
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001715#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001716static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001717{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001718 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001719 u32 result;
1720
1721 if (dev->hotkey_dev)
1722 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result);
1723
1724 return 0;
1725}
1726
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001727static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06001728{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001729 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06001730 u32 result;
1731
1732 if (dev->hotkey_dev)
1733 hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result);
1734
1735 return 0;
1736}
Rafael J. Wysocki3567a4e2012-08-09 23:00:13 +02001737#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001738
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001739static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
1740 toshiba_acpi_suspend, toshiba_acpi_resume);
1741
Seth Forshee135740d2011-09-20 16:55:49 -05001742static struct acpi_driver toshiba_acpi_driver = {
1743 .name = "Toshiba ACPI driver",
1744 .owner = THIS_MODULE,
1745 .ids = toshiba_device_ids,
1746 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
1747 .ops = {
1748 .add = toshiba_acpi_add,
1749 .remove = toshiba_acpi_remove,
1750 .notify = toshiba_acpi_notify,
1751 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02001752 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05001753};
Holger Machtc9263552006-10-20 14:30:29 -07001754
Len Brown4be44fc2005-08-05 00:44:28 -04001755static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Seth Forshee135740d2011-09-20 16:55:49 -05001757 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Seth Forsheef11f9992012-01-18 13:44:11 -06001759 /*
1760 * Machines with this WMI guid aren't supported due to bugs in
1761 * their AML. This check relies on wmi initializing before
1762 * toshiba_acpi to guarantee guids have been identified.
1763 */
1764 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
1765 return -ENODEV;
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
1768 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05001769 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001770 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
1772
Seth Forshee135740d2011-09-20 16:55:49 -05001773 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
1774 if (ret) {
1775 pr_err("Failed to register ACPI driver: %d\n", ret);
1776 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07001777 }
1778
Seth Forshee135740d2011-09-20 16:55:49 -05001779 return ret;
1780}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04001781
Seth Forshee135740d2011-09-20 16:55:49 -05001782static void __exit toshiba_acpi_exit(void)
1783{
1784 acpi_bus_unregister_driver(&toshiba_acpi_driver);
1785 if (toshiba_proc_dir)
1786 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789module_init(toshiba_acpi_init);
1790module_exit(toshiba_acpi_exit);