2 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
5 * Copyright (C) 2002-2004 John Belmonte
6 * Copyright (C) 2008 Philip Langdale
7 * Copyright (C) 2010 Pierre Ducroquet
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.
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.
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
24 * The devolpment page for this driver is located at
25 * http://memebeam.org/toys/ToshibaAcpiDriver.
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
38 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40 #define TOSHIBA_ACPI_VERSION "0.19"
41 #define PROC_INTERFACE_VERSION 1
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>
48 #include <linux/seq_file.h>
49 #include <linux/backlight.h>
50 #include <linux/platform_device.h>
51 #include <linux/rfkill.h>
52 #include <linux/input.h>
53 #include <linux/input/sparse-keymap.h>
54 #include <linux/leds.h>
55 #include <linux/slab.h>
57 #include <asm/uaccess.h>
59 #include <acpi/acpi_drivers.h>
61 MODULE_AUTHOR("John Belmonte");
62 MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
63 MODULE_LICENSE("GPL");
65 /* Toshiba ACPI method paths */
66 #define METHOD_LCD_BRIGHTNESS "\\_SB_.PCI0.VGA_.LCD_._BCM"
67 #define TOSH_INTERFACE_1 "\\_SB_.VALD"
68 #define TOSH_INTERFACE_2 "\\_SB_.VALZ"
69 #define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
70 #define GHCI_METHOD ".GHCI"
72 /* Toshiba HCI interface definitions
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.
85 #define HCI_SET 0xff00
86 #define HCI_GET 0xfe00
89 #define HCI_SUCCESS 0x0000
90 #define HCI_FAILURE 0x1000
91 #define HCI_NOT_SUPPORTED 0x8000
92 #define HCI_EMPTY 0x8c00
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
100 #define HCI_WIRELESS 0x0056
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
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
114 static const struct acpi_device_id toshiba_device_ids
[] = {
120 MODULE_DEVICE_TABLE(acpi
, toshiba_device_ids
);
122 static 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
} },
135 { KE_KEY
, 0x17f, { KEY_FN
} },
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
} },
150 static __inline__
void _set_bit(u32
* word
, u32 mask
, int value
)
152 *word
= (*word
& ~mask
) | (mask
* value
);
155 /* acpi interface wrappers
158 static int is_valid_acpi_path(const char *methodName
)
163 status
= acpi_get_handle(NULL
, (char *)methodName
, &handle
);
164 return !ACPI_FAILURE(status
);
167 static int write_acpi_int(const char *methodName
, int val
)
169 struct acpi_object_list params
;
170 union acpi_object in_objs
[1];
173 params
.count
= ARRAY_SIZE(in_objs
);
174 params
.pointer
= in_objs
;
175 in_objs
[0].type
= ACPI_TYPE_INTEGER
;
176 in_objs
[0].integer
.value
= val
;
178 status
= acpi_evaluate_object(NULL
, (char *)methodName
, ¶ms
, NULL
);
179 return (status
== AE_OK
);
183 static int read_acpi_int(const char *methodName
, int *pVal
)
185 struct acpi_buffer results
;
186 union acpi_object out_objs
[1];
189 results
.length
= sizeof(out_objs
);
190 results
.pointer
= out_objs
;
192 status
= acpi_evaluate_object(0, (char *)methodName
, 0, &results
);
193 *pVal
= out_objs
[0].integer
.value
;
195 return (status
== AE_OK
) && (out_objs
[0].type
== ACPI_TYPE_INTEGER
);
199 static const char *method_hci
/*= 0*/ ;
201 /* Perform a raw HCI call. Here we don't care about input or output buffer
204 static acpi_status
hci_raw(const u32 in
[HCI_WORDS
], u32 out
[HCI_WORDS
])
206 struct acpi_object_list params
;
207 union acpi_object in_objs
[HCI_WORDS
];
208 struct acpi_buffer results
;
209 union acpi_object out_objs
[HCI_WORDS
+ 1];
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
];
220 results
.length
= sizeof(out_objs
);
221 results
.pointer
= out_objs
;
223 status
= acpi_evaluate_object(NULL
, (char *)method_hci
, ¶ms
,
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
;
234 /* common hci tasks (get or set one or two value)
236 * In addition to the ACPI status, the HCI system returns a result which
237 * may be useful (such as "not supported").
240 static acpi_status
hci_write1(u32 reg
, u32 in1
, u32
* result
)
242 u32 in
[HCI_WORDS
] = { HCI_SET
, reg
, in1
, 0, 0, 0 };
244 acpi_status status
= hci_raw(in
, out
);
245 *result
= (status
== AE_OK
) ? out
[0] : HCI_FAILURE
;
249 static acpi_status
hci_read1(u32 reg
, u32
* out1
, u32
* result
)
251 u32 in
[HCI_WORDS
] = { HCI_GET
, reg
, 0, 0, 0, 0 };
253 acpi_status status
= hci_raw(in
, out
);
255 *result
= (status
== AE_OK
) ? out
[0] : HCI_FAILURE
;
259 static acpi_status
hci_write2(u32 reg
, u32 in1
, u32 in2
, u32
*result
)
261 u32 in
[HCI_WORDS
] = { HCI_SET
, reg
, in1
, in2
, 0, 0 };
263 acpi_status status
= hci_raw(in
, out
);
264 *result
= (status
== AE_OK
) ? out
[0] : HCI_FAILURE
;
268 static acpi_status
hci_read2(u32 reg
, u32
*out1
, u32
*out2
, u32
*result
)
270 u32 in
[HCI_WORDS
] = { HCI_GET
, reg
, *out1
, *out2
, 0, 0 };
272 acpi_status status
= hci_raw(in
, out
);
275 *result
= (status
== AE_OK
) ? out
[0] : HCI_FAILURE
;
279 struct toshiba_acpi_dev
{
280 struct platform_device
*p_dev
;
281 struct rfkill
*bt_rfk
;
282 struct input_dev
*hotkey_dev
;
283 int illumination_installed
;
291 /* Illumination support */
292 static int toshiba_illumination_available(void)
294 u32 in
[HCI_WORDS
] = { 0, 0, 0, 0, 0, 0 };
299 status
= hci_raw(in
, out
);
300 if (ACPI_FAILURE(status
)) {
301 pr_info("Illumination device not available\n");
305 status
= hci_raw(in
, out
);
309 static void toshiba_illumination_set(struct led_classdev
*cdev
,
310 enum led_brightness brightness
)
312 u32 in
[HCI_WORDS
] = { 0, 0, 0, 0, 0, 0 };
316 /* First request : initialize communication. */
318 status
= hci_raw(in
, out
);
319 if (ACPI_FAILURE(status
)) {
320 pr_info("Illumination device not available\n");
325 /* Switch the illumination on */
329 status
= hci_raw(in
, out
);
330 if (ACPI_FAILURE(status
)) {
331 pr_info("ACPI call for illumination failed\n");
335 /* Switch the illumination off */
339 status
= hci_raw(in
, out
);
340 if (ACPI_FAILURE(status
)) {
341 pr_info("ACPI call for illumination failed.\n");
346 /* Last request : close communication. */
353 static enum led_brightness
toshiba_illumination_get(struct led_classdev
*cdev
)
355 u32 in
[HCI_WORDS
] = { 0, 0, 0, 0, 0, 0 };
358 enum led_brightness result
;
360 /*Â First request : initialize communication. */
362 status
= hci_raw(in
, out
);
363 if (ACPI_FAILURE(status
)) {
364 pr_info("Illumination device not available\n");
368 /* Check the illumination */
371 status
= hci_raw(in
, out
);
372 if (ACPI_FAILURE(status
)) {
373 pr_info("ACPI call for illumination failed.\n");
377 result
= out
[2] ? LED_FULL
: LED_OFF
;
379 /* Last request : close communication. */
388 static struct led_classdev toshiba_led
= {
389 .name
= "toshiba::illumination",
391 .brightness_set
= toshiba_illumination_set
,
392 .brightness_get
= toshiba_illumination_get
,
395 static struct toshiba_acpi_dev toshiba_acpi
= {
396 .bt_name
= "Toshiba Bluetooth",
399 /* Bluetooth rfkill handlers */
401 static u32
hci_get_bt_present(bool *present
)
408 hci_read2(HCI_WIRELESS
, &value
, &value2
, &hci_result
);
409 if (hci_result
== HCI_SUCCESS
)
410 *present
= (value
& HCI_WIRELESS_BT_PRESENT
) ? true : false;
415 static u32
hci_get_radio_state(bool *radio_state
)
422 hci_read2(HCI_WIRELESS
, &value
, &value2
, &hci_result
);
424 *radio_state
= value
& HCI_WIRELESS_KILL_SWITCH
;
428 static int bt_rfkill_set_block(void *data
, bool blocked
)
430 struct toshiba_acpi_dev
*dev
= data
;
431 u32 result1
, result2
;
436 value
= (blocked
== false);
438 mutex_lock(&dev
->mutex
);
439 if (hci_get_radio_state(&radio_state
) != HCI_SUCCESS
) {
449 hci_write2(HCI_WIRELESS
, value
, HCI_WIRELESS_BT_POWER
, &result1
);
450 hci_write2(HCI_WIRELESS
, value
, HCI_WIRELESS_BT_ATTACH
, &result2
);
452 if (result1
!= HCI_SUCCESS
|| result2
!= HCI_SUCCESS
)
457 mutex_unlock(&dev
->mutex
);
461 static void bt_rfkill_poll(struct rfkill
*rfkill
, void *data
)
466 struct toshiba_acpi_dev
*dev
= data
;
468 mutex_lock(&dev
->mutex
);
470 hci_result
= hci_get_radio_state(&value
);
471 if (hci_result
!= HCI_SUCCESS
) {
472 /* Can't do anything useful */
473 mutex_unlock(&dev
->mutex
);
477 new_rfk_state
= value
;
479 mutex_unlock(&dev
->mutex
);
481 if (rfkill_set_hw_state(rfkill
, !new_rfk_state
))
482 bt_rfkill_set_block(data
, true);
485 static const struct rfkill_ops toshiba_rfk_ops
= {
486 .set_block
= bt_rfkill_set_block
,
487 .poll
= bt_rfkill_poll
,
490 static struct proc_dir_entry
*toshiba_proc_dir
/*= 0*/ ;
491 static struct backlight_device
*toshiba_backlight_device
;
492 static int force_fan
;
493 static int last_key_event
;
494 static int key_event_valid
;
496 static int get_lcd(struct backlight_device
*bd
)
501 hci_read1(HCI_LCD_BRIGHTNESS
, &value
, &hci_result
);
502 if (hci_result
== HCI_SUCCESS
) {
503 return (value
>> HCI_LCD_BRIGHTNESS_SHIFT
);
508 static int lcd_proc_show(struct seq_file
*m
, void *v
)
510 int value
= get_lcd(NULL
);
513 seq_printf(m
, "brightness: %d\n", value
);
514 seq_printf(m
, "brightness_levels: %d\n",
515 HCI_LCD_BRIGHTNESS_LEVELS
);
517 pr_err("Error reading LCD brightness\n");
523 static int lcd_proc_open(struct inode
*inode
, struct file
*file
)
525 return single_open(file
, lcd_proc_show
, NULL
);
528 static int set_lcd(int value
)
532 value
= value
<< HCI_LCD_BRIGHTNESS_SHIFT
;
533 hci_write1(HCI_LCD_BRIGHTNESS
, value
, &hci_result
);
534 if (hci_result
!= HCI_SUCCESS
)
540 static int set_lcd_status(struct backlight_device
*bd
)
542 return set_lcd(bd
->props
.brightness
);
545 static ssize_t
lcd_proc_write(struct file
*file
, const char __user
*buf
,
546 size_t count
, loff_t
*pos
)
553 len
= min(count
, sizeof(cmd
) - 1);
554 if (copy_from_user(cmd
, buf
, len
))
558 if (sscanf(cmd
, " brightness : %i", &value
) == 1 &&
559 value
>= 0 && value
< HCI_LCD_BRIGHTNESS_LEVELS
) {
560 ret
= set_lcd(value
);
569 static const struct file_operations lcd_proc_fops
= {
570 .owner
= THIS_MODULE
,
571 .open
= lcd_proc_open
,
574 .release
= single_release
,
575 .write
= lcd_proc_write
,
578 static int video_proc_show(struct seq_file
*m
, void *v
)
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;
587 int is_tv
= (value
& HCI_VIDEO_OUT_TV
) ? 1 : 0;
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
);
592 pr_err("Error reading video out status\n");
598 static int video_proc_open(struct inode
*inode
, struct file
*file
)
600 return single_open(file
, video_proc_show
, NULL
);
603 static ssize_t
video_proc_write(struct file
*file
, const char __user
*buf
,
604 size_t count
, loff_t
*pos
)
615 cmd
= kmalloc(count
+ 1, GFP_KERNEL
);
618 if (copy_from_user(cmd
, buf
, count
)) {
626 /* scan expression. Multiple expressions may be delimited with ;
628 * NOTE: to keep scanning simple, invalid fields are ignored
631 if (sscanf(buffer
, " lcd_out : %i", &value
) == 1)
633 else if (sscanf(buffer
, " crt_out : %i", &value
) == 1)
635 else if (sscanf(buffer
, " tv_out : %i", &value
) == 1)
637 /* advance to one character past the next ; */
642 while (remain
&& *(buffer
- 1) != ';');
647 hci_read1(HCI_VIDEO_OUT
, &video_out
, &hci_result
);
648 if (hci_result
== HCI_SUCCESS
) {
649 unsigned int new_video_out
= video_out
;
651 _set_bit(&new_video_out
, HCI_VIDEO_OUT_LCD
, lcd_out
);
653 _set_bit(&new_video_out
, HCI_VIDEO_OUT_CRT
, crt_out
);
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
);
667 static const struct file_operations video_proc_fops
= {
668 .owner
= THIS_MODULE
,
669 .open
= video_proc_open
,
672 .release
= single_release
,
673 .write
= video_proc_write
,
676 static int fan_proc_show(struct seq_file
*m
, void *v
)
681 hci_read1(HCI_FAN
, &value
, &hci_result
);
682 if (hci_result
== HCI_SUCCESS
) {
683 seq_printf(m
, "running: %d\n", (value
> 0));
684 seq_printf(m
, "force_on: %d\n", force_fan
);
686 pr_err("Error reading fan status\n");
692 static int fan_proc_open(struct inode
*inode
, struct file
*file
)
694 return single_open(file
, fan_proc_show
, NULL
);
697 static ssize_t
fan_proc_write(struct file
*file
, const char __user
*buf
,
698 size_t count
, loff_t
*pos
)
705 len
= min(count
, sizeof(cmd
) - 1);
706 if (copy_from_user(cmd
, buf
, len
))
710 if (sscanf(cmd
, " force_on : %i", &value
) == 1 &&
711 value
>= 0 && value
<= 1) {
712 hci_write1(HCI_FAN
, value
, &hci_result
);
713 if (hci_result
!= HCI_SUCCESS
)
724 static const struct file_operations fan_proc_fops
= {
725 .owner
= THIS_MODULE
,
726 .open
= fan_proc_open
,
729 .release
= single_release
,
730 .write
= fan_proc_write
,
733 static int keys_proc_show(struct seq_file
*m
, void *v
)
738 if (!key_event_valid
) {
739 hci_read1(HCI_SYSTEM_EVENT
, &value
, &hci_result
);
740 if (hci_result
== HCI_SUCCESS
) {
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
);
750 pr_notice("Re-enabled hotkeys\n");
752 pr_err("Error reading hotkey status\n");
757 seq_printf(m
, "hotkey_ready: %d\n", key_event_valid
);
758 seq_printf(m
, "hotkey: 0x%04x\n", last_key_event
);
763 static int keys_proc_open(struct inode
*inode
, struct file
*file
)
765 return single_open(file
, keys_proc_show
, NULL
);
768 static ssize_t
keys_proc_write(struct file
*file
, const char __user
*buf
,
769 size_t count
, loff_t
*pos
)
775 len
= min(count
, sizeof(cmd
) - 1);
776 if (copy_from_user(cmd
, buf
, len
))
780 if (sscanf(cmd
, " hotkey_ready : %i", &value
) == 1 && value
== 0) {
789 static const struct file_operations keys_proc_fops
= {
790 .owner
= THIS_MODULE
,
791 .open
= keys_proc_open
,
794 .release
= single_release
,
795 .write
= keys_proc_write
,
798 static int version_proc_show(struct seq_file
*m
, void *v
)
800 seq_printf(m
, "driver: %s\n", TOSHIBA_ACPI_VERSION
);
801 seq_printf(m
, "proc_interface: %d\n", PROC_INTERFACE_VERSION
);
805 static int version_proc_open(struct inode
*inode
, struct file
*file
)
807 return single_open(file
, version_proc_show
, PDE(inode
)->data
);
810 static const struct file_operations version_proc_fops
= {
811 .owner
= THIS_MODULE
,
812 .open
= version_proc_open
,
815 .release
= single_release
,
818 /* proc and module init
821 #define PROC_TOSHIBA "toshiba"
823 static void __init
create_toshiba_proc_entries(void)
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
);
832 static void remove_toshiba_proc_entries(void)
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
);
841 static const struct backlight_ops toshiba_backlight_data
= {
842 .get_brightness
= get_lcd
,
843 .update_status
= set_lcd_status
,
846 static void toshiba_acpi_notify(acpi_handle handle
, u32 event
, void *context
)
848 u32 hci_result
, value
;
853 hci_read1(HCI_SYSTEM_EVENT
, &value
, &hci_result
);
854 if (hci_result
== HCI_SUCCESS
) {
857 /* act on key press; ignore key release */
861 if (!sparse_keymap_report_event(toshiba_acpi
.hotkey_dev
,
863 pr_info("Unknown key %x\n",
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
);
871 pr_notice("Re-enabled hotkeys\n");
873 } while (hci_result
!= HCI_EMPTY
);
876 static int __init
toshiba_acpi_setup_keyboard(char *device
)
881 status
= acpi_get_handle(NULL
, device
, &toshiba_acpi
.handle
);
882 if (ACPI_FAILURE(status
)) {
883 pr_info("Unable to get notification device\n");
887 toshiba_acpi
.hotkey_dev
= input_allocate_device();
888 if (!toshiba_acpi
.hotkey_dev
) {
889 pr_info("Unable to register input device\n");
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
;
897 error
= sparse_keymap_setup(toshiba_acpi
.hotkey_dev
,
898 toshiba_acpi_keymap
, NULL
);
902 status
= acpi_install_notify_handler(toshiba_acpi
.handle
,
903 ACPI_DEVICE_NOTIFY
, toshiba_acpi_notify
, NULL
);
904 if (ACPI_FAILURE(status
)) {
905 pr_info("Unable to install hotkey notification\n");
907 goto err_free_keymap
;
910 status
= acpi_evaluate_object(toshiba_acpi
.handle
, "ENAB", NULL
, NULL
);
911 if (ACPI_FAILURE(status
)) {
912 pr_info("Unable to enable hotkeys\n");
914 goto err_remove_notify
;
917 error
= input_register_device(toshiba_acpi
.hotkey_dev
);
919 pr_info("Unable to register input device\n");
920 goto err_remove_notify
;
926 acpi_remove_notify_handler(toshiba_acpi
.handle
,
927 ACPI_DEVICE_NOTIFY
, toshiba_acpi_notify
);
929 sparse_keymap_free(toshiba_acpi
.hotkey_dev
);
931 input_free_device(toshiba_acpi
.hotkey_dev
);
932 toshiba_acpi
.hotkey_dev
= NULL
;
936 static void toshiba_acpi_exit(void)
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
);
942 input_unregister_device(toshiba_acpi
.hotkey_dev
);
945 if (toshiba_acpi
.bt_rfk
) {
946 rfkill_unregister(toshiba_acpi
.bt_rfk
);
947 rfkill_destroy(toshiba_acpi
.bt_rfk
);
950 if (toshiba_backlight_device
)
951 backlight_device_unregister(toshiba_backlight_device
);
953 remove_toshiba_proc_entries();
955 if (toshiba_proc_dir
)
956 remove_proc_entry(PROC_TOSHIBA
, acpi_root_dir
);
958 if (toshiba_acpi
.illumination_installed
)
959 led_classdev_unregister(&toshiba_led
);
961 platform_device_unregister(toshiba_acpi
.p_dev
);
966 static int __init
toshiba_acpi_init(void)
971 struct backlight_properties props
;
976 /* simple device detection: look for HCI method */
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
))
980 pr_info("Unable to activate hotkeys\n");
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
))
984 pr_info("Unable to activate hotkeys\n");
988 pr_info("Toshiba Laptop ACPI Extras version %s\n",
989 TOSHIBA_ACPI_VERSION
);
990 pr_info(" HCI method: %s\n", method_hci
);
992 mutex_init(&toshiba_acpi
.mutex
);
994 toshiba_acpi
.p_dev
= platform_device_register_simple("toshiba_acpi",
996 if (IS_ERR(toshiba_acpi
.p_dev
)) {
997 ret
= PTR_ERR(toshiba_acpi
.p_dev
);
998 pr_err("unable to register platform device\n");
999 toshiba_acpi
.p_dev
= NULL
;
1000 toshiba_acpi_exit();
1005 key_event_valid
= 0;
1007 /* enable event fifo */
1008 hci_write1(HCI_SYSTEM_EVENT
, 1, &hci_result
);
1010 toshiba_proc_dir
= proc_mkdir(PROC_TOSHIBA
, acpi_root_dir
);
1011 if (!toshiba_proc_dir
) {
1012 toshiba_acpi_exit();
1015 create_toshiba_proc_entries();
1018 props
.type
= BACKLIGHT_PLATFORM
;
1019 props
.max_brightness
= HCI_LCD_BRIGHTNESS_LEVELS
- 1;
1020 toshiba_backlight_device
= backlight_device_register("toshiba",
1021 &toshiba_acpi
.p_dev
->dev
,
1023 &toshiba_backlight_data
,
1025 if (IS_ERR(toshiba_backlight_device
)) {
1026 ret
= PTR_ERR(toshiba_backlight_device
);
1028 pr_err("Could not register toshiba backlight device\n");
1029 toshiba_backlight_device
= NULL
;
1030 toshiba_acpi_exit();
1034 /* Register rfkill switch for Bluetooth */
1035 if (hci_get_bt_present(&bt_present
) == HCI_SUCCESS
&& bt_present
) {
1036 toshiba_acpi
.bt_rfk
= rfkill_alloc(toshiba_acpi
.bt_name
,
1037 &toshiba_acpi
.p_dev
->dev
,
1038 RFKILL_TYPE_BLUETOOTH
,
1041 if (!toshiba_acpi
.bt_rfk
) {
1042 pr_err("unable to allocate rfkill device\n");
1043 toshiba_acpi_exit();
1047 ret
= rfkill_register(toshiba_acpi
.bt_rfk
);
1049 pr_err("unable to register rfkill device\n");
1050 rfkill_destroy(toshiba_acpi
.bt_rfk
);
1051 toshiba_acpi_exit();
1056 toshiba_acpi
.illumination_installed
= 0;
1057 if (toshiba_illumination_available()) {
1058 if (!led_classdev_register(&(toshiba_acpi
.p_dev
->dev
),
1060 toshiba_acpi
.illumination_installed
= 1;
1066 module_init(toshiba_acpi_init
);
1067 module_exit(toshiba_acpi_exit
);