]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/platform/x86/toshiba_acpi.c
Platform: fix samsung-laptop DMI identification for N220 model
[mirror_ubuntu-bionic-kernel.git] / drivers / platform / x86 / toshiba_acpi.c
CommitLineData
1da177e4
LT
1/*
2 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
3 *
4 *
5 * Copyright (C) 2002-2004 John Belmonte
c41a40c5 6 * Copyright (C) 2008 Philip Langdale
6c3f6e6c 7 * Copyright (C) 2010 Pierre Ducroquet
1da177e4
LT
8 *
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
7e33460d
JP
38#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39
c41a40c5 40#define TOSHIBA_ACPI_VERSION "0.19"
1da177e4
LT
41#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>
936c8bcd 48#include <linux/seq_file.h>
c9263557 49#include <linux/backlight.h>
c41a40c5 50#include <linux/platform_device.h>
51#include <linux/rfkill.h>
6335e4d5 52#include <linux/input.h>
384a7cd9 53#include <linux/input/sparse-keymap.h>
6c3f6e6c 54#include <linux/leds.h>
5a0e3ad6 55#include <linux/slab.h>
c9263557 56
1da177e4
LT
57#include <asm/uaccess.h>
58
59#include <acpi/acpi_drivers.h>
60
61MODULE_AUTHOR("John Belmonte");
62MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
63MODULE_LICENSE("GPL");
64
1da177e4
LT
65/* Toshiba ACPI method paths */
66#define METHOD_LCD_BRIGHTNESS "\\_SB_.PCI0.VGA_.LCD_._BCM"
6335e4d5
MG
67#define TOSH_INTERFACE_1 "\\_SB_.VALD"
68#define TOSH_INTERFACE_2 "\\_SB_.VALZ"
1da177e4 69#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
6335e4d5 70#define GHCI_METHOD ".GHCI"
1da177e4
LT
71
72/* Toshiba HCI interface definitions
73 *
74 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
75 * be uniform across all their models. Ideally we would just call
76 * dedicated ACPI methods instead of using this primitive interface.
77 * However the ACPI methods seem to be incomplete in some areas (for
78 * example they allow setting, but not reading, the LCD brightness value),
79 * so this is still useful.
80 */
81
82#define HCI_WORDS 6
83
84/* operations */
85#define HCI_SET 0xff00
86#define HCI_GET 0xfe00
87
88/* return codes */
89#define HCI_SUCCESS 0x0000
90#define HCI_FAILURE 0x1000
91#define HCI_NOT_SUPPORTED 0x8000
92#define HCI_EMPTY 0x8c00
93
94/* registers */
95#define HCI_FAN 0x0004
96#define HCI_SYSTEM_EVENT 0x0016
97#define HCI_VIDEO_OUT 0x001c
98#define HCI_HOTKEY_EVENT 0x001e
99#define HCI_LCD_BRIGHTNESS 0x002a
c41a40c5 100#define HCI_WIRELESS 0x0056
1da177e4
LT
101
102/* field definitions */
103#define HCI_LCD_BRIGHTNESS_BITS 3
104#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
105#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
106#define HCI_VIDEO_OUT_LCD 0x1
107#define HCI_VIDEO_OUT_CRT 0x2
108#define HCI_VIDEO_OUT_TV 0x4
c41a40c5 109#define HCI_WIRELESS_KILL_SWITCH 0x01
110#define HCI_WIRELESS_BT_PRESENT 0x0f
111#define HCI_WIRELESS_BT_ATTACH 0x40
112#define HCI_WIRELESS_BT_POWER 0x80
1da177e4 113
4db42c51 114static const struct acpi_device_id toshiba_device_ids[] = {
115 {"TOS6200", 0},
c41a40c5 116 {"TOS6208", 0},
4db42c51 117 {"TOS1900", 0},
118 {"", 0},
119};
120MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
121
384a7cd9
DT
122static const struct key_entry toshiba_acpi_keymap[] __initconst = {
123 { KE_KEY, 0x101, { KEY_MUTE } },
124 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
125 { KE_KEY, 0x103, { KEY_ZOOMIN } },
126 { KE_KEY, 0x13b, { KEY_COFFEE } },
127 { KE_KEY, 0x13c, { KEY_BATTERY } },
128 { KE_KEY, 0x13d, { KEY_SLEEP } },
129 { KE_KEY, 0x13e, { KEY_SUSPEND } },
130 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
131 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
132 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
133 { KE_KEY, 0x142, { KEY_WLAN } },
134 { KE_KEY, 0x143, { KEY_PROG1 } },
a49010f5 135 { KE_KEY, 0x17f, { KEY_FN } },
384a7cd9
DT
136 { KE_KEY, 0xb05, { KEY_PROG2 } },
137 { KE_KEY, 0xb06, { KEY_WWW } },
138 { KE_KEY, 0xb07, { KEY_MAIL } },
139 { KE_KEY, 0xb30, { KEY_STOP } },
140 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
141 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
142 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
143 { KE_KEY, 0xb5a, { KEY_MEDIA } },
144 { KE_END, 0 },
6335e4d5
MG
145};
146
1da177e4
LT
147/* utility
148 */
149
4be44fcd 150static __inline__ void _set_bit(u32 * word, u32 mask, int value)
1da177e4
LT
151{
152 *word = (*word & ~mask) | (mask * value);
153}
154
155/* acpi interface wrappers
156 */
157
4be44fcd 158static int is_valid_acpi_path(const char *methodName)
1da177e4
LT
159{
160 acpi_handle handle;
161 acpi_status status;
162
4be44fcd 163 status = acpi_get_handle(NULL, (char *)methodName, &handle);
1da177e4
LT
164 return !ACPI_FAILURE(status);
165}
166
4be44fcd 167static int write_acpi_int(const char *methodName, int val)
1da177e4
LT
168{
169 struct acpi_object_list params;
170 union acpi_object in_objs[1];
171 acpi_status status;
172
b2b7910d 173 params.count = ARRAY_SIZE(in_objs);
1da177e4
LT
174 params.pointer = in_objs;
175 in_objs[0].type = ACPI_TYPE_INTEGER;
176 in_objs[0].integer.value = val;
177
4be44fcd 178 status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
1da177e4
LT
179 return (status == AE_OK);
180}
181
182#if 0
4be44fcd 183static int read_acpi_int(const char *methodName, int *pVal)
1da177e4
LT
184{
185 struct acpi_buffer results;
186 union acpi_object out_objs[1];
187 acpi_status status;
188
189 results.length = sizeof(out_objs);
190 results.pointer = out_objs;
191
4be44fcd 192 status = acpi_evaluate_object(0, (char *)methodName, 0, &results);
1da177e4
LT
193 *pVal = out_objs[0].integer.value;
194
195 return (status == AE_OK) && (out_objs[0].type == ACPI_TYPE_INTEGER);
196}
197#endif
198
4be44fcd 199static const char *method_hci /*= 0*/ ;
1da177e4
LT
200
201/* Perform a raw HCI call. Here we don't care about input or output buffer
202 * format.
203 */
4be44fcd 204static acpi_status hci_raw(const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
1da177e4
LT
205{
206 struct acpi_object_list params;
207 union acpi_object in_objs[HCI_WORDS];
208 struct acpi_buffer results;
4be44fcd 209 union acpi_object out_objs[HCI_WORDS + 1];
1da177e4
LT
210 acpi_status status;
211 int i;
212
213 params.count = HCI_WORDS;
214 params.pointer = in_objs;
215 for (i = 0; i < HCI_WORDS; ++i) {
216 in_objs[i].type = ACPI_TYPE_INTEGER;
217 in_objs[i].integer.value = in[i];
218 }
219
220 results.length = sizeof(out_objs);
221 results.pointer = out_objs;
222
4be44fcd
LB
223 status = acpi_evaluate_object(NULL, (char *)method_hci, &params,
224 &results);
1da177e4
LT
225 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
226 for (i = 0; i < out_objs->package.count; ++i) {
227 out[i] = out_objs->package.elements[i].integer.value;
228 }
229 }
230
231 return status;
232}
233
c41a40c5 234/* common hci tasks (get or set one or two value)
1da177e4
LT
235 *
236 * In addition to the ACPI status, the HCI system returns a result which
237 * may be useful (such as "not supported").
238 */
239
4be44fcd 240static acpi_status hci_write1(u32 reg, u32 in1, u32 * result)
1da177e4
LT
241{
242 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
243 u32 out[HCI_WORDS];
244 acpi_status status = hci_raw(in, out);
245 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
246 return status;
247}
248
4be44fcd 249static acpi_status hci_read1(u32 reg, u32 * out1, u32 * result)
1da177e4
LT
250{
251 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
252 u32 out[HCI_WORDS];
253 acpi_status status = hci_raw(in, out);
254 *out1 = out[2];
255 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
256 return status;
257}
258
c41a40c5 259static acpi_status hci_write2(u32 reg, u32 in1, u32 in2, u32 *result)
260{
261 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
262 u32 out[HCI_WORDS];
263 acpi_status status = hci_raw(in, out);
264 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
265 return status;
266}
267
268static acpi_status hci_read2(u32 reg, u32 *out1, u32 *out2, u32 *result)
269{
270 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
271 u32 out[HCI_WORDS];
272 acpi_status status = hci_raw(in, out);
273 *out1 = out[2];
274 *out2 = out[3];
275 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
276 return status;
277}
278
279struct toshiba_acpi_dev {
280 struct platform_device *p_dev;
19d337df 281 struct rfkill *bt_rfk;
6335e4d5 282 struct input_dev *hotkey_dev;
6c3f6e6c 283 int illumination_installed;
6335e4d5 284 acpi_handle handle;
c41a40c5 285
286 const char *bt_name;
c41a40c5 287
288 struct mutex mutex;
289};
290
6c3f6e6c
PD
291/* Illumination support */
292static int toshiba_illumination_available(void)
293{
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;
299 status = hci_raw(in, out);
300 if (ACPI_FAILURE(status)) {
7e33460d 301 pr_info("Illumination device not available\n");
6c3f6e6c
PD
302 return 0;
303 }
304 in[0] = 0xf400;
305 status = hci_raw(in, out);
306 return 1;
307}
308
309static void toshiba_illumination_set(struct led_classdev *cdev,
310 enum led_brightness brightness)
311{
312 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
313 u32 out[HCI_WORDS];
314 acpi_status status;
315
316 /* First request : initialize communication. */
317 in[0] = 0xf100;
318 status = hci_raw(in, out);
319 if (ACPI_FAILURE(status)) {
7e33460d 320 pr_info("Illumination device not available\n");
6c3f6e6c
PD
321 return;
322 }
323
324 if (brightness) {
325 /* Switch the illumination on */
326 in[0] = 0xf400;
327 in[1] = 0x14e;
328 in[2] = 1;
329 status = hci_raw(in, out);
330 if (ACPI_FAILURE(status)) {
7e33460d 331 pr_info("ACPI call for illumination failed\n");
6c3f6e6c
PD
332 return;
333 }
334 } else {
335 /* Switch the illumination off */
336 in[0] = 0xf400;
337 in[1] = 0x14e;
338 in[2] = 0;
339 status = hci_raw(in, out);
340 if (ACPI_FAILURE(status)) {
7e33460d 341 pr_info("ACPI call for illumination failed.\n");
6c3f6e6c
PD
342 return;
343 }
344 }
345
346 /* Last request : close communication. */
347 in[0] = 0xf200;
348 in[1] = 0;
349 in[2] = 0;
350 hci_raw(in, out);
351}
352
353static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
354{
355 u32 in[HCI_WORDS] = { 0, 0, 0, 0, 0, 0 };
356 u32 out[HCI_WORDS];
357 acpi_status status;
358 enum led_brightness result;
359
360 /* First request : initialize communication. */
361 in[0] = 0xf100;
362 status = hci_raw(in, out);
363 if (ACPI_FAILURE(status)) {
7e33460d 364 pr_info("Illumination device not available\n");
6c3f6e6c
PD
365 return LED_OFF;
366 }
367
368 /* Check the illumination */
369 in[0] = 0xf300;
370 in[1] = 0x14e;
371 status = hci_raw(in, out);
372 if (ACPI_FAILURE(status)) {
7e33460d 373 pr_info("ACPI call for illumination failed.\n");
6c3f6e6c
PD
374 return LED_OFF;
375 }
376
377 result = out[2] ? LED_FULL : LED_OFF;
378
379 /* Last request : close communication. */
380 in[0] = 0xf200;
381 in[1] = 0;
382 in[2] = 0;
383 hci_raw(in, out);
384
385 return result;
386}
387
388static struct led_classdev toshiba_led = {
389 .name = "toshiba::illumination",
390 .max_brightness = 1,
391 .brightness_set = toshiba_illumination_set,
392 .brightness_get = toshiba_illumination_get,
393};
394
c41a40c5 395static struct toshiba_acpi_dev toshiba_acpi = {
396 .bt_name = "Toshiba Bluetooth",
c41a40c5 397};
398
399/* Bluetooth rfkill handlers */
400
401static u32 hci_get_bt_present(bool *present)
402{
403 u32 hci_result;
404 u32 value, value2;
405
406 value = 0;
407 value2 = 0;
408 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
409 if (hci_result == HCI_SUCCESS)
410 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
411
412 return hci_result;
413}
414
c41a40c5 415static u32 hci_get_radio_state(bool *radio_state)
416{
417 u32 hci_result;
418 u32 value, value2;
419
420 value = 0;
421 value2 = 0x0001;
422 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
423
424 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
425 return hci_result;
426}
427
19d337df 428static int bt_rfkill_set_block(void *data, bool blocked)
c41a40c5 429{
19d337df 430 struct toshiba_acpi_dev *dev = data;
c41a40c5 431 u32 result1, result2;
432 u32 value;
19d337df 433 int err;
c41a40c5 434 bool radio_state;
c41a40c5 435
19d337df 436 value = (blocked == false);
c41a40c5 437
19d337df
JB
438 mutex_lock(&dev->mutex);
439 if (hci_get_radio_state(&radio_state) != HCI_SUCCESS) {
440 err = -EBUSY;
441 goto out;
442 }
c41a40c5 443
19d337df
JB
444 if (!radio_state) {
445 err = 0;
446 goto out;
c41a40c5 447 }
448
c41a40c5 449 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
450 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
c41a40c5 451
452 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
19d337df
JB
453 err = -EBUSY;
454 else
455 err = 0;
456 out:
457 mutex_unlock(&dev->mutex);
458 return err;
c41a40c5 459}
460
19d337df 461static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
c41a40c5 462{
c41a40c5 463 bool new_rfk_state;
464 bool value;
465 u32 hci_result;
19d337df
JB
466 struct toshiba_acpi_dev *dev = data;
467
468 mutex_lock(&dev->mutex);
c41a40c5 469
470 hci_result = hci_get_radio_state(&value);
19d337df
JB
471 if (hci_result != HCI_SUCCESS) {
472 /* Can't do anything useful */
473 mutex_unlock(&dev->mutex);
82e7784f 474 return;
19d337df 475 }
c41a40c5 476
477 new_rfk_state = value;
478
c41a40c5 479 mutex_unlock(&dev->mutex);
480
19d337df
JB
481 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
482 bt_rfkill_set_block(data, true);
c41a40c5 483}
484
19d337df
JB
485static const struct rfkill_ops toshiba_rfk_ops = {
486 .set_block = bt_rfkill_set_block,
487 .poll = bt_rfkill_poll,
488};
489
4be44fcd 490static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
c9263557 491static struct backlight_device *toshiba_backlight_device;
4be44fcd
LB
492static int force_fan;
493static int last_key_event;
494static int key_event_valid;
1da177e4 495
c9263557 496static int get_lcd(struct backlight_device *bd)
1da177e4
LT
497{
498 u32 hci_result;
499 u32 value;
500
501 hci_read1(HCI_LCD_BRIGHTNESS, &value, &hci_result);
502 if (hci_result == HCI_SUCCESS) {
c9263557
HM
503 return (value >> HCI_LCD_BRIGHTNESS_SHIFT);
504 } else
505 return -EFAULT;
506}
507
936c8bcd 508static int lcd_proc_show(struct seq_file *m, void *v)
c9263557
HM
509{
510 int value = get_lcd(NULL);
511
512 if (value >= 0) {
936c8bcd
AD
513 seq_printf(m, "brightness: %d\n", value);
514 seq_printf(m, "brightness_levels: %d\n",
4be44fcd 515 HCI_LCD_BRIGHTNESS_LEVELS);
1da177e4 516 } else {
7e33460d 517 pr_err("Error reading LCD brightness\n");
1da177e4
LT
518 }
519
936c8bcd
AD
520 return 0;
521}
522
523static int lcd_proc_open(struct inode *inode, struct file *file)
524{
525 return single_open(file, lcd_proc_show, NULL);
1da177e4
LT
526}
527
c9263557
HM
528static int set_lcd(int value)
529{
530 u32 hci_result;
531
532 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
533 hci_write1(HCI_LCD_BRIGHTNESS, value, &hci_result);
534 if (hci_result != HCI_SUCCESS)
535 return -EFAULT;
536
537 return 0;
538}
539
540static int set_lcd_status(struct backlight_device *bd)
541{
599a52d1 542 return set_lcd(bd->props.brightness);
c9263557
HM
543}
544
936c8bcd
AD
545static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
546 size_t count, loff_t *pos)
1da177e4 547{
936c8bcd
AD
548 char cmd[42];
549 size_t len;
1da177e4 550 int value;
c8af57eb 551 int ret;
1da177e4 552
936c8bcd
AD
553 len = min(count, sizeof(cmd) - 1);
554 if (copy_from_user(cmd, buf, len))
555 return -EFAULT;
556 cmd[len] = '\0';
557
558 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
c8af57eb 559 value >= 0 && value < HCI_LCD_BRIGHTNESS_LEVELS) {
c9263557 560 ret = set_lcd(value);
c8af57eb
MO
561 if (ret == 0)
562 ret = count;
563 } else {
c9263557 564 ret = -EINVAL;
c8af57eb 565 }
c9263557 566 return ret;
1da177e4
LT
567}
568
936c8bcd
AD
569static const struct file_operations lcd_proc_fops = {
570 .owner = THIS_MODULE,
571 .open = lcd_proc_open,
572 .read = seq_read,
573 .llseek = seq_lseek,
574 .release = single_release,
575 .write = lcd_proc_write,
576};
577
578static int video_proc_show(struct seq_file *m, void *v)
1da177e4
LT
579{
580 u32 hci_result;
581 u32 value;
582
583 hci_read1(HCI_VIDEO_OUT, &value, &hci_result);
584 if (hci_result == HCI_SUCCESS) {
585 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
586 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
4be44fcd 587 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
936c8bcd
AD
588 seq_printf(m, "lcd_out: %d\n", is_lcd);
589 seq_printf(m, "crt_out: %d\n", is_crt);
590 seq_printf(m, "tv_out: %d\n", is_tv);
1da177e4 591 } else {
7e33460d 592 pr_err("Error reading video out status\n");
1da177e4
LT
593 }
594
936c8bcd 595 return 0;
1da177e4
LT
596}
597
936c8bcd 598static int video_proc_open(struct inode *inode, struct file *file)
1da177e4 599{
936c8bcd
AD
600 return single_open(file, video_proc_show, NULL);
601}
602
603static ssize_t video_proc_write(struct file *file, const char __user *buf,
604 size_t count, loff_t *pos)
605{
606 char *cmd, *buffer;
1da177e4
LT
607 int value;
608 int remain = count;
609 int lcd_out = -1;
610 int crt_out = -1;
611 int tv_out = -1;
612 u32 hci_result;
b4482a4b 613 u32 video_out;
1da177e4 614
936c8bcd
AD
615 cmd = kmalloc(count + 1, GFP_KERNEL);
616 if (!cmd)
617 return -ENOMEM;
618 if (copy_from_user(cmd, buf, count)) {
619 kfree(cmd);
620 return -EFAULT;
621 }
622 cmd[count] = '\0';
623
624 buffer = cmd;
625
1da177e4
LT
626 /* scan expression. Multiple expressions may be delimited with ;
627 *
628 * NOTE: to keep scanning simple, invalid fields are ignored
629 */
630 while (remain) {
631 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
632 lcd_out = value & 1;
633 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
634 crt_out = value & 1;
635 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
636 tv_out = value & 1;
637 /* advance to one character past the next ; */
638 do {
639 ++buffer;
640 --remain;
641 }
4be44fcd 642 while (remain && *(buffer - 1) != ';');
1da177e4
LT
643 }
644
936c8bcd
AD
645 kfree(cmd);
646
1da177e4
LT
647 hci_read1(HCI_VIDEO_OUT, &video_out, &hci_result);
648 if (hci_result == HCI_SUCCESS) {
9e113e00 649 unsigned int new_video_out = video_out;
1da177e4
LT
650 if (lcd_out != -1)
651 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
652 if (crt_out != -1)
653 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
654 if (tv_out != -1)
655 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
656 /* To avoid unnecessary video disruption, only write the new
657 * video setting if something changed. */
658 if (new_video_out != video_out)
659 write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
660 } else {
661 return -EFAULT;
662 }
663
664 return count;
665}
666
936c8bcd
AD
667static const struct file_operations video_proc_fops = {
668 .owner = THIS_MODULE,
669 .open = video_proc_open,
670 .read = seq_read,
671 .llseek = seq_lseek,
672 .release = single_release,
673 .write = video_proc_write,
674};
675
676static int fan_proc_show(struct seq_file *m, void *v)
1da177e4
LT
677{
678 u32 hci_result;
679 u32 value;
680
681 hci_read1(HCI_FAN, &value, &hci_result);
682 if (hci_result == HCI_SUCCESS) {
936c8bcd
AD
683 seq_printf(m, "running: %d\n", (value > 0));
684 seq_printf(m, "force_on: %d\n", force_fan);
1da177e4 685 } else {
7e33460d 686 pr_err("Error reading fan status\n");
1da177e4
LT
687 }
688
936c8bcd
AD
689 return 0;
690}
691
692static int fan_proc_open(struct inode *inode, struct file *file)
693{
694 return single_open(file, fan_proc_show, NULL);
1da177e4
LT
695}
696
936c8bcd
AD
697static ssize_t fan_proc_write(struct file *file, const char __user *buf,
698 size_t count, loff_t *pos)
1da177e4 699{
936c8bcd
AD
700 char cmd[42];
701 size_t len;
1da177e4
LT
702 int value;
703 u32 hci_result;
704
936c8bcd
AD
705 len = min(count, sizeof(cmd) - 1);
706 if (copy_from_user(cmd, buf, len))
707 return -EFAULT;
708 cmd[len] = '\0';
709
710 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
4be44fcd 711 value >= 0 && value <= 1) {
1da177e4
LT
712 hci_write1(HCI_FAN, value, &hci_result);
713 if (hci_result != HCI_SUCCESS)
714 return -EFAULT;
715 else
716 force_fan = value;
717 } else {
718 return -EINVAL;
719 }
720
721 return count;
722}
723
936c8bcd
AD
724static const struct file_operations fan_proc_fops = {
725 .owner = THIS_MODULE,
726 .open = fan_proc_open,
727 .read = seq_read,
728 .llseek = seq_lseek,
729 .release = single_release,
730 .write = fan_proc_write,
731};
732
733static int keys_proc_show(struct seq_file *m, void *v)
1da177e4
LT
734{
735 u32 hci_result;
736 u32 value;
737
738 if (!key_event_valid) {
739 hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result);
740 if (hci_result == HCI_SUCCESS) {
741 key_event_valid = 1;
742 last_key_event = value;
743 } else if (hci_result == HCI_EMPTY) {
744 /* better luck next time */
745 } else if (hci_result == HCI_NOT_SUPPORTED) {
746 /* This is a workaround for an unresolved issue on
747 * some machines where system events sporadically
748 * become disabled. */
749 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
7e33460d 750 pr_notice("Re-enabled hotkeys\n");
1da177e4 751 } else {
7e33460d 752 pr_err("Error reading hotkey status\n");
1da177e4
LT
753 goto end;
754 }
755 }
756
936c8bcd
AD
757 seq_printf(m, "hotkey_ready: %d\n", key_event_valid);
758 seq_printf(m, "hotkey: 0x%04x\n", last_key_event);
759end:
760 return 0;
761}
1da177e4 762
936c8bcd
AD
763static int keys_proc_open(struct inode *inode, struct file *file)
764{
765 return single_open(file, keys_proc_show, NULL);
1da177e4
LT
766}
767
936c8bcd
AD
768static ssize_t keys_proc_write(struct file *file, const char __user *buf,
769 size_t count, loff_t *pos)
1da177e4 770{
936c8bcd
AD
771 char cmd[42];
772 size_t len;
1da177e4
LT
773 int value;
774
936c8bcd
AD
775 len = min(count, sizeof(cmd) - 1);
776 if (copy_from_user(cmd, buf, len))
777 return -EFAULT;
778 cmd[len] = '\0';
779
780 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
1da177e4
LT
781 key_event_valid = 0;
782 } else {
783 return -EINVAL;
784 }
785
786 return count;
787}
788
936c8bcd
AD
789static const struct file_operations keys_proc_fops = {
790 .owner = THIS_MODULE,
791 .open = keys_proc_open,
792 .read = seq_read,
793 .llseek = seq_lseek,
794 .release = single_release,
795 .write = keys_proc_write,
796};
797
798static int version_proc_show(struct seq_file *m, void *v)
1da177e4 799{
936c8bcd
AD
800 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
801 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
802 return 0;
1da177e4
LT
803}
804
936c8bcd
AD
805static int version_proc_open(struct inode *inode, struct file *file)
806{
807 return single_open(file, version_proc_show, PDE(inode)->data);
808}
809
810static const struct file_operations version_proc_fops = {
811 .owner = THIS_MODULE,
812 .open = version_proc_open,
813 .read = seq_read,
814 .llseek = seq_lseek,
815 .release = single_release,
816};
817
1da177e4
LT
818/* proc and module init
819 */
820
821#define PROC_TOSHIBA "toshiba"
822
f8ef3aec 823static void __init create_toshiba_proc_entries(void)
1da177e4 824{
936c8bcd
AD
825 proc_create("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir, &lcd_proc_fops);
826 proc_create("video", S_IRUGO | S_IWUSR, toshiba_proc_dir, &video_proc_fops);
827 proc_create("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir, &fan_proc_fops);
828 proc_create("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir, &keys_proc_fops);
829 proc_create("version", S_IRUGO, toshiba_proc_dir, &version_proc_fops);
1da177e4
LT
830}
831
f8ef3aec 832static void remove_toshiba_proc_entries(void)
1da177e4 833{
936c8bcd
AD
834 remove_proc_entry("lcd", toshiba_proc_dir);
835 remove_proc_entry("video", toshiba_proc_dir);
836 remove_proc_entry("fan", toshiba_proc_dir);
837 remove_proc_entry("keys", toshiba_proc_dir);
838 remove_proc_entry("version", toshiba_proc_dir);
1da177e4
LT
839}
840
acc2472e 841static const struct backlight_ops toshiba_backlight_data = {
c9263557
HM
842 .get_brightness = get_lcd,
843 .update_status = set_lcd_status,
c9263557
HM
844};
845
6335e4d5
MG
846static void toshiba_acpi_notify(acpi_handle handle, u32 event, void *context)
847{
848 u32 hci_result, value;
6335e4d5
MG
849
850 if (event != 0x80)
851 return;
852 do {
853 hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result);
854 if (hci_result == HCI_SUCCESS) {
855 if (value == 0x100)
856 continue;
b466301b
FP
857 /* act on key press; ignore key release */
858 if (value & 0x80)
859 continue;
860
384a7cd9
DT
861 if (!sparse_keymap_report_event(toshiba_acpi.hotkey_dev,
862 value, 1, true)) {
7e33460d 863 pr_info("Unknown key %x\n",
b466301b 864 value);
6335e4d5
MG
865 }
866 } else if (hci_result == HCI_NOT_SUPPORTED) {
867 /* This is a workaround for an unresolved issue on
868 * some machines where system events sporadically
869 * become disabled. */
870 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
7e33460d 871 pr_notice("Re-enabled hotkeys\n");
6335e4d5
MG
872 }
873 } while (hci_result != HCI_EMPTY);
874}
875
384a7cd9 876static int __init toshiba_acpi_setup_keyboard(char *device)
6335e4d5
MG
877{
878 acpi_status status;
384a7cd9 879 int error;
6335e4d5 880
384a7cd9 881 status = acpi_get_handle(NULL, device, &toshiba_acpi.handle);
6335e4d5 882 if (ACPI_FAILURE(status)) {
7e33460d 883 pr_info("Unable to get notification device\n");
6335e4d5
MG
884 return -ENODEV;
885 }
886
6335e4d5
MG
887 toshiba_acpi.hotkey_dev = input_allocate_device();
888 if (!toshiba_acpi.hotkey_dev) {
7e33460d 889 pr_info("Unable to register input device\n");
6335e4d5
MG
890 return -ENOMEM;
891 }
892
893 toshiba_acpi.hotkey_dev->name = "Toshiba input device";
894 toshiba_acpi.hotkey_dev->phys = device;
895 toshiba_acpi.hotkey_dev->id.bustype = BUS_HOST;
6335e4d5 896
384a7cd9
DT
897 error = sparse_keymap_setup(toshiba_acpi.hotkey_dev,
898 toshiba_acpi_keymap, NULL);
899 if (error)
900 goto err_free_dev;
901
902 status = acpi_install_notify_handler(toshiba_acpi.handle,
903 ACPI_DEVICE_NOTIFY, toshiba_acpi_notify, NULL);
904 if (ACPI_FAILURE(status)) {
7e33460d 905 pr_info("Unable to install hotkey notification\n");
384a7cd9
DT
906 error = -ENODEV;
907 goto err_free_keymap;
908 }
909
910 status = acpi_evaluate_object(toshiba_acpi.handle, "ENAB", NULL, NULL);
911 if (ACPI_FAILURE(status)) {
7e33460d 912 pr_info("Unable to enable hotkeys\n");
384a7cd9
DT
913 error = -ENODEV;
914 goto err_remove_notify;
6335e4d5
MG
915 }
916
384a7cd9
DT
917 error = input_register_device(toshiba_acpi.hotkey_dev);
918 if (error) {
7e33460d 919 pr_info("Unable to register input device\n");
384a7cd9 920 goto err_remove_notify;
6335e4d5
MG
921 }
922
923 return 0;
384a7cd9
DT
924
925 err_remove_notify:
926 acpi_remove_notify_handler(toshiba_acpi.handle,
927 ACPI_DEVICE_NOTIFY, toshiba_acpi_notify);
928 err_free_keymap:
929 sparse_keymap_free(toshiba_acpi.hotkey_dev);
930 err_free_dev:
931 input_free_device(toshiba_acpi.hotkey_dev);
932 toshiba_acpi.hotkey_dev = NULL;
933 return error;
6335e4d5
MG
934}
935
b2b77b23 936static void toshiba_acpi_exit(void)
c9263557 937{
384a7cd9
DT
938 if (toshiba_acpi.hotkey_dev) {
939 acpi_remove_notify_handler(toshiba_acpi.handle,
940 ACPI_DEVICE_NOTIFY, toshiba_acpi_notify);
941 sparse_keymap_free(toshiba_acpi.hotkey_dev);
6335e4d5 942 input_unregister_device(toshiba_acpi.hotkey_dev);
384a7cd9 943 }
6335e4d5 944
19d337df
JB
945 if (toshiba_acpi.bt_rfk) {
946 rfkill_unregister(toshiba_acpi.bt_rfk);
947 rfkill_destroy(toshiba_acpi.bt_rfk);
c41a40c5 948 }
949
c9263557
HM
950 if (toshiba_backlight_device)
951 backlight_device_unregister(toshiba_backlight_device);
952
f8ef3aec 953 remove_toshiba_proc_entries();
c9263557
HM
954
955 if (toshiba_proc_dir)
956 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
957
6c3f6e6c
PD
958 if (toshiba_acpi.illumination_installed)
959 led_classdev_unregister(&toshiba_led);
960
c41a40c5 961 platform_device_unregister(toshiba_acpi.p_dev);
962
c9263557
HM
963 return;
964}
965
4be44fcd 966static int __init toshiba_acpi_init(void)
1da177e4 967{
1da177e4 968 u32 hci_result;
c41a40c5 969 bool bt_present;
c41a40c5 970 int ret = 0;
a19a6ee6 971 struct backlight_properties props;
1da177e4
LT
972
973 if (acpi_disabled)
974 return -ENODEV;
fb9802fa 975
1da177e4 976 /* simple device detection: look for HCI method */
6335e4d5
MG
977 if (is_valid_acpi_path(TOSH_INTERFACE_1 GHCI_METHOD)) {
978 method_hci = TOSH_INTERFACE_1 GHCI_METHOD;
979 if (toshiba_acpi_setup_keyboard(TOSH_INTERFACE_1))
7e33460d 980 pr_info("Unable to activate hotkeys\n");
6335e4d5
MG
981 } else if (is_valid_acpi_path(TOSH_INTERFACE_2 GHCI_METHOD)) {
982 method_hci = TOSH_INTERFACE_2 GHCI_METHOD;
983 if (toshiba_acpi_setup_keyboard(TOSH_INTERFACE_2))
7e33460d 984 pr_info("Unable to activate hotkeys\n");
6335e4d5 985 } else
1da177e4
LT
986 return -ENODEV;
987
7e33460d 988 pr_info("Toshiba Laptop ACPI Extras version %s\n",
4be44fcd 989 TOSHIBA_ACPI_VERSION);
7e33460d 990 pr_info(" HCI method: %s\n", method_hci);
1da177e4 991
c41a40c5 992 mutex_init(&toshiba_acpi.mutex);
993
994 toshiba_acpi.p_dev = platform_device_register_simple("toshiba_acpi",
995 -1, NULL, 0);
996 if (IS_ERR(toshiba_acpi.p_dev)) {
997 ret = PTR_ERR(toshiba_acpi.p_dev);
7e33460d 998 pr_err("unable to register platform device\n");
c41a40c5 999 toshiba_acpi.p_dev = NULL;
1000 toshiba_acpi_exit();
1001 return ret;
1002 }
1003
1da177e4
LT
1004 force_fan = 0;
1005 key_event_valid = 0;
1006
1007 /* enable event fifo */
1008 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
1009
1010 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
1011 if (!toshiba_proc_dir) {
c41a40c5 1012 toshiba_acpi_exit();
1013 return -ENODEV;
1da177e4 1014 } else {
f8ef3aec 1015 create_toshiba_proc_entries();
1da177e4
LT
1016 }
1017
bb7ca747 1018 props.type = BACKLIGHT_PLATFORM;
a19a6ee6 1019 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
c41a40c5 1020 toshiba_backlight_device = backlight_device_register("toshiba",
a19a6ee6
MG
1021 &toshiba_acpi.p_dev->dev,
1022 NULL,
1023 &toshiba_backlight_data,
1024 &props);
c9263557 1025 if (IS_ERR(toshiba_backlight_device)) {
c41a40c5 1026 ret = PTR_ERR(toshiba_backlight_device);
1299342b 1027
7e33460d 1028 pr_err("Could not register toshiba backlight device\n");
c9263557
HM
1029 toshiba_backlight_device = NULL;
1030 toshiba_acpi_exit();
1299342b 1031 return ret;
c9263557 1032 }
1da177e4 1033
c41a40c5 1034 /* Register rfkill switch for Bluetooth */
1035 if (hci_get_bt_present(&bt_present) == HCI_SUCCESS && bt_present) {
19d337df
JB
1036 toshiba_acpi.bt_rfk = rfkill_alloc(toshiba_acpi.bt_name,
1037 &toshiba_acpi.p_dev->dev,
1038 RFKILL_TYPE_BLUETOOTH,
1039 &toshiba_rfk_ops,
1040 &toshiba_acpi);
1041 if (!toshiba_acpi.bt_rfk) {
7e33460d 1042 pr_err("unable to allocate rfkill device\n");
c41a40c5 1043 toshiba_acpi_exit();
1044 return -ENOMEM;
1045 }
1046
19d337df 1047 ret = rfkill_register(toshiba_acpi.bt_rfk);
c41a40c5 1048 if (ret) {
7e33460d 1049 pr_err("unable to register rfkill device\n");
19d337df 1050 rfkill_destroy(toshiba_acpi.bt_rfk);
38aefbc5
FD
1051 toshiba_acpi_exit();
1052 return ret;
1053 }
c41a40c5 1054 }
1055
6c3f6e6c
PD
1056 toshiba_acpi.illumination_installed = 0;
1057 if (toshiba_illumination_available()) {
1058 if (!led_classdev_register(&(toshiba_acpi.p_dev->dev),
1059 &toshiba_led))
1060 toshiba_acpi.illumination_installed = 1;
1061 }
1062
c41a40c5 1063 return 0;
1da177e4
LT
1064}
1065
1066module_init(toshiba_acpi_init);
1067module_exit(toshiba_acpi_exit);