blob: 9e8c20c6a0b7243e708876a4dfffa30dd8f47506 [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
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 *
22 * The devolpment page for this driver is located at
23 * http://memebeam.org/toys/ToshibaAcpiDriver.
24 *
25 * Credits:
26 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
27 * engineering the Windows drivers
28 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
29 * Rob Miller - TV out and hotkeys help
30 *
31 *
32 * TODO
33 *
34 */
35
36#define TOSHIBA_ACPI_VERSION "0.18"
37#define PROC_INTERFACE_VERSION 1
38
39#include <linux/kernel.h>
40#include <linux/module.h>
41#include <linux/init.h>
42#include <linux/types.h>
43#include <linux/proc_fs.h>
Holger Machtc9263552006-10-20 14:30:29 -070044#include <linux/backlight.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/uaccess.h>
47
48#include <acpi/acpi_drivers.h>
49
50MODULE_AUTHOR("John Belmonte");
51MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
52MODULE_LICENSE("GPL");
53
54#define MY_LOGPREFIX "toshiba_acpi: "
55#define MY_ERR KERN_ERR MY_LOGPREFIX
56#define MY_NOTICE KERN_NOTICE MY_LOGPREFIX
57#define MY_INFO KERN_INFO MY_LOGPREFIX
58
59/* Toshiba ACPI method paths */
60#define METHOD_LCD_BRIGHTNESS "\\_SB_.PCI0.VGA_.LCD_._BCM"
61#define METHOD_HCI_1 "\\_SB_.VALD.GHCI"
62#define METHOD_HCI_2 "\\_SB_.VALZ.GHCI"
63#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
64
65/* Toshiba HCI interface definitions
66 *
67 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
68 * be uniform across all their models. Ideally we would just call
69 * dedicated ACPI methods instead of using this primitive interface.
70 * However the ACPI methods seem to be incomplete in some areas (for
71 * example they allow setting, but not reading, the LCD brightness value),
72 * so this is still useful.
73 */
74
75#define HCI_WORDS 6
76
77/* operations */
78#define HCI_SET 0xff00
79#define HCI_GET 0xfe00
80
81/* return codes */
82#define HCI_SUCCESS 0x0000
83#define HCI_FAILURE 0x1000
84#define HCI_NOT_SUPPORTED 0x8000
85#define HCI_EMPTY 0x8c00
86
87/* registers */
88#define HCI_FAN 0x0004
89#define HCI_SYSTEM_EVENT 0x0016
90#define HCI_VIDEO_OUT 0x001c
91#define HCI_HOTKEY_EVENT 0x001e
92#define HCI_LCD_BRIGHTNESS 0x002a
93
94/* field definitions */
95#define HCI_LCD_BRIGHTNESS_BITS 3
96#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
97#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
98#define HCI_VIDEO_OUT_LCD 0x1
99#define HCI_VIDEO_OUT_CRT 0x2
100#define HCI_VIDEO_OUT_TV 0x4
101
102/* utility
103 */
104
Len Brown4be44fc2005-08-05 00:44:28 -0400105static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 *word = (*word & ~mask) | (mask * value);
108}
109
110/* acpi interface wrappers
111 */
112
Len Brown4be44fc2005-08-05 00:44:28 -0400113static int is_valid_acpi_path(const char *methodName)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 acpi_handle handle;
116 acpi_status status;
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118 status = acpi_get_handle(NULL, (char *)methodName, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return !ACPI_FAILURE(status);
120}
121
Len Brown4be44fc2005-08-05 00:44:28 -0400122static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct acpi_object_list params;
125 union acpi_object in_objs[1];
126 acpi_status status;
127
Ahmed S. Darwishb2b79102007-02-06 16:14:43 -0800128 params.count = ARRAY_SIZE(in_objs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 params.pointer = in_objs;
130 in_objs[0].type = ACPI_TYPE_INTEGER;
131 in_objs[0].integer.value = val;
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return (status == AE_OK);
135}
136
137#if 0
Len Brown4be44fc2005-08-05 00:44:28 -0400138static int read_acpi_int(const char *methodName, int *pVal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct acpi_buffer results;
141 union acpi_object out_objs[1];
142 acpi_status status;
143
144 results.length = sizeof(out_objs);
145 results.pointer = out_objs;
146
Len Brown4be44fc2005-08-05 00:44:28 -0400147 status = acpi_evaluate_object(0, (char *)methodName, 0, &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 *pVal = out_objs[0].integer.value;
149
150 return (status == AE_OK) && (out_objs[0].type == ACPI_TYPE_INTEGER);
151}
152#endif
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154static const char *method_hci /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/* Perform a raw HCI call. Here we don't care about input or output buffer
157 * format.
158 */
Len Brown4be44fc2005-08-05 00:44:28 -0400159static acpi_status hci_raw(const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct acpi_object_list params;
162 union acpi_object in_objs[HCI_WORDS];
163 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400164 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 acpi_status status;
166 int i;
167
168 params.count = HCI_WORDS;
169 params.pointer = in_objs;
170 for (i = 0; i < HCI_WORDS; ++i) {
171 in_objs[i].type = ACPI_TYPE_INTEGER;
172 in_objs[i].integer.value = in[i];
173 }
174
175 results.length = sizeof(out_objs);
176 results.pointer = out_objs;
177
Len Brown4be44fc2005-08-05 00:44:28 -0400178 status = acpi_evaluate_object(NULL, (char *)method_hci, &params,
179 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
181 for (i = 0; i < out_objs->package.count; ++i) {
182 out[i] = out_objs->package.elements[i].integer.value;
183 }
184 }
185
186 return status;
187}
188
189/* common hci tasks (get or set one value)
190 *
191 * In addition to the ACPI status, the HCI system returns a result which
192 * may be useful (such as "not supported").
193 */
194
Len Brown4be44fc2005-08-05 00:44:28 -0400195static acpi_status hci_write1(u32 reg, u32 in1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
198 u32 out[HCI_WORDS];
199 acpi_status status = hci_raw(in, out);
200 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
201 return status;
202}
203
Len Brown4be44fc2005-08-05 00:44:28 -0400204static acpi_status hci_read1(u32 reg, u32 * out1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
207 u32 out[HCI_WORDS];
208 acpi_status status = hci_raw(in, out);
209 *out1 = out[2];
210 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
211 return status;
212}
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Holger Machtc9263552006-10-20 14:30:29 -0700215static struct backlight_device *toshiba_backlight_device;
Len Brown4be44fc2005-08-05 00:44:28 -0400216static int force_fan;
217static int last_key_event;
218static int key_event_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Len Brown4be44fc2005-08-05 00:44:28 -0400220typedef struct _ProcItem {
221 const char *name;
222 char *(*read_func) (char *);
223 unsigned long (*write_func) (const char *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224} ProcItem;
225
226/* proc file handlers
227 */
228
229static int
Len Brown4be44fc2005-08-05 00:44:28 -0400230dispatch_read(char *page, char **start, off_t off, int count, int *eof,
231 ProcItem * item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Len Brown4be44fc2005-08-05 00:44:28 -0400233 char *p = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int len;
235
236 if (off == 0)
237 p = item->read_func(p);
238
239 /* ISSUE: I don't understand this code */
240 len = (p - page);
Len Brown4be44fc2005-08-05 00:44:28 -0400241 if (len <= off + count)
242 *eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 *start = page + off;
244 len -= off;
Len Brown4be44fc2005-08-05 00:44:28 -0400245 if (len > count)
246 len = count;
247 if (len < 0)
248 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return len;
250}
251
252static int
Len Brown4be44fc2005-08-05 00:44:28 -0400253dispatch_write(struct file *file, const char __user * buffer,
254 unsigned long count, ProcItem * item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 int result;
Len Brown4be44fc2005-08-05 00:44:28 -0400257 char *tmp_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* Arg buffer points to userspace memory, which can't be accessed
260 * directly. Since we're making a copy, zero-terminate the
261 * destination so that sscanf can be used on it safely.
262 */
263 tmp_buffer = kmalloc(count + 1, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400264 if (!tmp_buffer)
Panagiotis Issarisf4224152005-03-30 22:15:36 -0500265 return -ENOMEM;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (copy_from_user(tmp_buffer, buffer, count)) {
268 result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400269 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 tmp_buffer[count] = 0;
271 result = item->write_func(tmp_buffer, count);
272 }
273 kfree(tmp_buffer);
274 return result;
275}
276
Holger Machtc9263552006-10-20 14:30:29 -0700277static int get_lcd(struct backlight_device *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 u32 hci_result;
280 u32 value;
281
282 hci_read1(HCI_LCD_BRIGHTNESS, &value, &hci_result);
283 if (hci_result == HCI_SUCCESS) {
Holger Machtc9263552006-10-20 14:30:29 -0700284 return (value >> HCI_LCD_BRIGHTNESS_SHIFT);
285 } else
286 return -EFAULT;
287}
288
289static char *read_lcd(char *p)
290{
291 int value = get_lcd(NULL);
292
293 if (value >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 p += sprintf(p, "brightness: %d\n", value);
295 p += sprintf(p, "brightness_levels: %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400296 HCI_LCD_BRIGHTNESS_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 } else {
298 printk(MY_ERR "Error reading LCD brightness\n");
299 }
300
301 return p;
302}
303
Holger Machtc9263552006-10-20 14:30:29 -0700304static int set_lcd(int value)
305{
306 u32 hci_result;
307
308 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
309 hci_write1(HCI_LCD_BRIGHTNESS, value, &hci_result);
310 if (hci_result != HCI_SUCCESS)
311 return -EFAULT;
312
313 return 0;
314}
315
316static int set_lcd_status(struct backlight_device *bd)
317{
Richard Purdie599a52d2007-02-10 23:07:48 +0000318 return set_lcd(bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700319}
320
Len Brown4be44fc2005-08-05 00:44:28 -0400321static unsigned long write_lcd(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800324 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (sscanf(buffer, " brightness : %i", &value) == 1 &&
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800327 value >= 0 && value < HCI_LCD_BRIGHTNESS_LEVELS) {
Holger Machtc9263552006-10-20 14:30:29 -0700328 ret = set_lcd(value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800329 if (ret == 0)
330 ret = count;
331 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700332 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800333 }
Holger Machtc9263552006-10-20 14:30:29 -0700334 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Len Brown4be44fc2005-08-05 00:44:28 -0400337static char *read_video(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 u32 hci_result;
340 u32 value;
341
342 hci_read1(HCI_VIDEO_OUT, &value, &hci_result);
343 if (hci_result == HCI_SUCCESS) {
344 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
345 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400346 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 p += sprintf(p, "lcd_out: %d\n", is_lcd);
348 p += sprintf(p, "crt_out: %d\n", is_crt);
349 p += sprintf(p, "tv_out: %d\n", is_tv);
350 } else {
351 printk(MY_ERR "Error reading video out status\n");
352 }
353
354 return p;
355}
356
Len Brown4be44fc2005-08-05 00:44:28 -0400357static unsigned long write_video(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 int value;
360 int remain = count;
361 int lcd_out = -1;
362 int crt_out = -1;
363 int tv_out = -1;
364 u32 hci_result;
Al Virob4482a42007-10-14 19:35:40 +0100365 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /* scan expression. Multiple expressions may be delimited with ;
368 *
369 * NOTE: to keep scanning simple, invalid fields are ignored
370 */
371 while (remain) {
372 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
373 lcd_out = value & 1;
374 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
375 crt_out = value & 1;
376 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
377 tv_out = value & 1;
378 /* advance to one character past the next ; */
379 do {
380 ++buffer;
381 --remain;
382 }
Len Brown4be44fc2005-08-05 00:44:28 -0400383 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
386 hci_read1(HCI_VIDEO_OUT, &video_out, &hci_result);
387 if (hci_result == HCI_SUCCESS) {
388 int new_video_out = video_out;
389 if (lcd_out != -1)
390 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
391 if (crt_out != -1)
392 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
393 if (tv_out != -1)
394 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
395 /* To avoid unnecessary video disruption, only write the new
396 * video setting if something changed. */
397 if (new_video_out != video_out)
398 write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
399 } else {
400 return -EFAULT;
401 }
402
403 return count;
404}
405
Len Brown4be44fc2005-08-05 00:44:28 -0400406static char *read_fan(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 u32 hci_result;
409 u32 value;
410
411 hci_read1(HCI_FAN, &value, &hci_result);
412 if (hci_result == HCI_SUCCESS) {
413 p += sprintf(p, "running: %d\n", (value > 0));
414 p += sprintf(p, "force_on: %d\n", force_fan);
415 } else {
416 printk(MY_ERR "Error reading fan status\n");
417 }
418
419 return p;
420}
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422static unsigned long write_fan(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 int value;
425 u32 hci_result;
426
427 if (sscanf(buffer, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400428 value >= 0 && value <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 hci_write1(HCI_FAN, value, &hci_result);
430 if (hci_result != HCI_SUCCESS)
431 return -EFAULT;
432 else
433 force_fan = value;
434 } else {
435 return -EINVAL;
436 }
437
438 return count;
439}
440
Len Brown4be44fc2005-08-05 00:44:28 -0400441static char *read_keys(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 u32 hci_result;
444 u32 value;
445
446 if (!key_event_valid) {
447 hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result);
448 if (hci_result == HCI_SUCCESS) {
449 key_event_valid = 1;
450 last_key_event = value;
451 } else if (hci_result == HCI_EMPTY) {
452 /* better luck next time */
453 } else if (hci_result == HCI_NOT_SUPPORTED) {
454 /* This is a workaround for an unresolved issue on
455 * some machines where system events sporadically
456 * become disabled. */
457 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
458 printk(MY_NOTICE "Re-enabled hotkeys\n");
459 } else {
460 printk(MY_ERR "Error reading hotkey status\n");
461 goto end;
462 }
463 }
464
465 p += sprintf(p, "hotkey_ready: %d\n", key_event_valid);
466 p += sprintf(p, "hotkey: 0x%04x\n", last_key_event);
467
Len Brown4be44fc2005-08-05 00:44:28 -0400468 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return p;
470}
471
Len Brown4be44fc2005-08-05 00:44:28 -0400472static unsigned long write_keys(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 int value;
475
Len Brown4be44fc2005-08-05 00:44:28 -0400476 if (sscanf(buffer, " hotkey_ready : %i", &value) == 1 && value == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 key_event_valid = 0;
478 } else {
479 return -EINVAL;
480 }
481
482 return count;
483}
484
Len Brown4be44fc2005-08-05 00:44:28 -0400485static char *read_version(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 p += sprintf(p, "driver: %s\n", TOSHIBA_ACPI_VERSION);
488 p += sprintf(p, "proc_interface: %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400489 PROC_INTERFACE_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return p;
491}
492
493/* proc and module init
494 */
495
496#define PROC_TOSHIBA "toshiba"
497
Len Brown4be44fc2005-08-05 00:44:28 -0400498static ProcItem proc_items[] = {
499 {"lcd", read_lcd, write_lcd},
500 {"video", read_video, write_video},
501 {"fan", read_fan, write_fan},
502 {"keys", read_keys, write_keys},
503 {"version", read_version, NULL},
504 {NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505};
506
Len Brown4be44fc2005-08-05 00:44:28 -0400507static acpi_status __init add_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Len Brown4be44fc2005-08-05 00:44:28 -0400509 struct proc_dir_entry *proc;
510 ProcItem *item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Len Brown4be44fc2005-08-05 00:44:28 -0400512 for (item = proc_items; item->name; ++item) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 proc = create_proc_read_entry(item->name,
Len Brown4be44fc2005-08-05 00:44:28 -0400514 S_IFREG | S_IRUGO | S_IWUSR,
515 toshiba_proc_dir,
516 (read_proc_t *) dispatch_read,
517 item);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (proc)
519 proc->owner = THIS_MODULE;
520 if (proc && item->write_func)
Len Brown4be44fc2005-08-05 00:44:28 -0400521 proc->write_proc = (write_proc_t *) dispatch_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
523
524 return AE_OK;
525}
526
Randy Dunlapb1d93de2007-06-16 10:16:02 -0700527static acpi_status remove_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Len Brown4be44fc2005-08-05 00:44:28 -0400529 ProcItem *item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 for (item = proc_items; item->name; ++item)
532 remove_proc_entry(item->name, toshiba_proc_dir);
533 return AE_OK;
534}
535
Richard Purdie599a52d2007-02-10 23:07:48 +0000536static struct backlight_ops toshiba_backlight_data = {
Holger Machtc9263552006-10-20 14:30:29 -0700537 .get_brightness = get_lcd,
538 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700539};
540
Sam Ravnborgb2b77b22007-06-01 00:47:12 -0700541static void toshiba_acpi_exit(void)
Holger Machtc9263552006-10-20 14:30:29 -0700542{
543 if (toshiba_backlight_device)
544 backlight_device_unregister(toshiba_backlight_device);
545
546 remove_device();
547
548 if (toshiba_proc_dir)
549 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
550
551 return;
552}
553
Len Brown4be44fc2005-08-05 00:44:28 -0400554static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 acpi_status status = AE_OK;
557 u32 hci_result;
558
559 if (acpi_disabled)
560 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* simple device detection: look for HCI method */
563 if (is_valid_acpi_path(METHOD_HCI_1))
564 method_hci = METHOD_HCI_1;
565 else if (is_valid_acpi_path(METHOD_HCI_2))
566 method_hci = METHOD_HCI_2;
567 else
568 return -ENODEV;
569
570 printk(MY_INFO "Toshiba Laptop ACPI Extras version %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400571 TOSHIBA_ACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 printk(MY_INFO " HCI method: %s\n", method_hci);
573
574 force_fan = 0;
575 key_event_valid = 0;
576
577 /* enable event fifo */
578 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
579
580 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
581 if (!toshiba_proc_dir) {
582 status = AE_ERROR;
583 } else {
584 toshiba_proc_dir->owner = THIS_MODULE;
585 status = add_device();
586 if (ACPI_FAILURE(status))
587 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
588 }
589
Yu Luming519ab5f2006-12-19 12:56:15 -0800590 toshiba_backlight_device = backlight_device_register("toshiba",NULL,
591 NULL,
Holger Machtc9263552006-10-20 14:30:29 -0700592 &toshiba_backlight_data);
593 if (IS_ERR(toshiba_backlight_device)) {
Andrey Borzenkov12993422007-11-14 16:58:28 -0800594 int ret = PTR_ERR(toshiba_backlight_device);
595
Holger Machtc9263552006-10-20 14:30:29 -0700596 printk(KERN_ERR "Could not register toshiba backlight device\n");
597 toshiba_backlight_device = NULL;
598 toshiba_acpi_exit();
Andrey Borzenkov12993422007-11-14 16:58:28 -0800599 return ret;
Holger Machtc9263552006-10-20 14:30:29 -0700600 }
Richard Purdie599a52d2007-02-10 23:07:48 +0000601 toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Holger Machtc9263552006-10-20 14:30:29 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return (ACPI_SUCCESS(status)) ? 0 : -ENODEV;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606module_init(toshiba_acpi_init);
607module_exit(toshiba_acpi_exit);