blob: 51c0a8bee4144ff800ff200e463315590e2d729a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 *
23 * The devolpment page for this driver is located at
24 * http://memebeam.org/toys/ToshibaAcpiDriver.
25 *
26 * Credits:
27 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
28 * engineering the Windows drivers
29 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
30 * Rob Miller - TV out and hotkeys help
31 *
32 *
33 * TODO
34 *
35 */
36
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040037#define TOSHIBA_ACPI_VERSION "0.19"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define PROC_INTERFACE_VERSION 1
39
40#include <linux/kernel.h>
41#include <linux/module.h>
42#include <linux/init.h>
43#include <linux/types.h>
44#include <linux/proc_fs.h>
Holger Machtc9263552006-10-20 14:30:29 -070045#include <linux/backlight.h>
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040046#include <linux/platform_device.h>
47#include <linux/rfkill.h>
Holger Machtc9263552006-10-20 14:30:29 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/uaccess.h>
50
51#include <acpi/acpi_drivers.h>
52
53MODULE_AUTHOR("John Belmonte");
54MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
55MODULE_LICENSE("GPL");
56
57#define MY_LOGPREFIX "toshiba_acpi: "
58#define MY_ERR KERN_ERR MY_LOGPREFIX
59#define MY_NOTICE KERN_NOTICE MY_LOGPREFIX
60#define MY_INFO KERN_INFO MY_LOGPREFIX
61
62/* Toshiba ACPI method paths */
63#define METHOD_LCD_BRIGHTNESS "\\_SB_.PCI0.VGA_.LCD_._BCM"
64#define METHOD_HCI_1 "\\_SB_.VALD.GHCI"
65#define METHOD_HCI_2 "\\_SB_.VALZ.GHCI"
66#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
67
68/* Toshiba HCI interface definitions
69 *
70 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
71 * be uniform across all their models. Ideally we would just call
72 * dedicated ACPI methods instead of using this primitive interface.
73 * However the ACPI methods seem to be incomplete in some areas (for
74 * example they allow setting, but not reading, the LCD brightness value),
75 * so this is still useful.
76 */
77
78#define HCI_WORDS 6
79
80/* operations */
81#define HCI_SET 0xff00
82#define HCI_GET 0xfe00
83
84/* return codes */
85#define HCI_SUCCESS 0x0000
86#define HCI_FAILURE 0x1000
87#define HCI_NOT_SUPPORTED 0x8000
88#define HCI_EMPTY 0x8c00
89
90/* registers */
91#define HCI_FAN 0x0004
92#define HCI_SYSTEM_EVENT 0x0016
93#define HCI_VIDEO_OUT 0x001c
94#define HCI_HOTKEY_EVENT 0x001e
95#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040096#define HCI_WIRELESS 0x0056
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* field definitions */
99#define HCI_LCD_BRIGHTNESS_BITS 3
100#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
101#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
102#define HCI_VIDEO_OUT_LCD 0x1
103#define HCI_VIDEO_OUT_CRT 0x2
104#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400105#define HCI_WIRELESS_KILL_SWITCH 0x01
106#define HCI_WIRELESS_BT_PRESENT 0x0f
107#define HCI_WIRELESS_BT_ATTACH 0x40
108#define HCI_WIRELESS_BT_POWER 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800110static const struct acpi_device_id toshiba_device_ids[] = {
111 {"TOS6200", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400112 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800113 {"TOS1900", 0},
114 {"", 0},
115};
116MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* utility
119 */
120
Len Brown4be44fc2005-08-05 00:44:28 -0400121static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 *word = (*word & ~mask) | (mask * value);
124}
125
126/* acpi interface wrappers
127 */
128
Len Brown4be44fc2005-08-05 00:44:28 -0400129static int is_valid_acpi_path(const char *methodName)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 acpi_handle handle;
132 acpi_status status;
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134 status = acpi_get_handle(NULL, (char *)methodName, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return !ACPI_FAILURE(status);
136}
137
Len Brown4be44fc2005-08-05 00:44:28 -0400138static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 struct acpi_object_list params;
141 union acpi_object in_objs[1];
142 acpi_status status;
143
Ahmed S. Darwishb2b79102007-02-06 16:14:43 -0800144 params.count = ARRAY_SIZE(in_objs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 params.pointer = in_objs;
146 in_objs[0].type = ACPI_TYPE_INTEGER;
147 in_objs[0].integer.value = val;
148
Len Brown4be44fc2005-08-05 00:44:28 -0400149 status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return (status == AE_OK);
151}
152
153#if 0
Len Brown4be44fc2005-08-05 00:44:28 -0400154static int read_acpi_int(const char *methodName, int *pVal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct acpi_buffer results;
157 union acpi_object out_objs[1];
158 acpi_status status;
159
160 results.length = sizeof(out_objs);
161 results.pointer = out_objs;
162
Len Brown4be44fc2005-08-05 00:44:28 -0400163 status = acpi_evaluate_object(0, (char *)methodName, 0, &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *pVal = out_objs[0].integer.value;
165
166 return (status == AE_OK) && (out_objs[0].type == ACPI_TYPE_INTEGER);
167}
168#endif
169
Len Brown4be44fc2005-08-05 00:44:28 -0400170static const char *method_hci /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* Perform a raw HCI call. Here we don't care about input or output buffer
173 * format.
174 */
Len Brown4be44fc2005-08-05 00:44:28 -0400175static acpi_status hci_raw(const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct acpi_object_list params;
178 union acpi_object in_objs[HCI_WORDS];
179 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400180 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 acpi_status status;
182 int i;
183
184 params.count = HCI_WORDS;
185 params.pointer = in_objs;
186 for (i = 0; i < HCI_WORDS; ++i) {
187 in_objs[i].type = ACPI_TYPE_INTEGER;
188 in_objs[i].integer.value = in[i];
189 }
190
191 results.length = sizeof(out_objs);
192 results.pointer = out_objs;
193
Len Brown4be44fc2005-08-05 00:44:28 -0400194 status = acpi_evaluate_object(NULL, (char *)method_hci, &params,
195 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
197 for (i = 0; i < out_objs->package.count; ++i) {
198 out[i] = out_objs->package.elements[i].integer.value;
199 }
200 }
201
202 return status;
203}
204
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400205/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
207 * In addition to the ACPI status, the HCI system returns a result which
208 * may be useful (such as "not supported").
209 */
210
Len Brown4be44fc2005-08-05 00:44:28 -0400211static acpi_status hci_write1(u32 reg, u32 in1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
214 u32 out[HCI_WORDS];
215 acpi_status status = hci_raw(in, out);
216 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
217 return status;
218}
219
Len Brown4be44fc2005-08-05 00:44:28 -0400220static acpi_status hci_read1(u32 reg, u32 * out1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
223 u32 out[HCI_WORDS];
224 acpi_status status = hci_raw(in, out);
225 *out1 = out[2];
226 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
227 return status;
228}
229
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400230static acpi_status hci_write2(u32 reg, u32 in1, u32 in2, u32 *result)
231{
232 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
233 u32 out[HCI_WORDS];
234 acpi_status status = hci_raw(in, out);
235 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
236 return status;
237}
238
239static acpi_status hci_read2(u32 reg, u32 *out1, u32 *out2, u32 *result)
240{
241 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
242 u32 out[HCI_WORDS];
243 acpi_status status = hci_raw(in, out);
244 *out1 = out[2];
245 *out2 = out[3];
246 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
247 return status;
248}
249
250struct toshiba_acpi_dev {
251 struct platform_device *p_dev;
Johannes Berg19d337d2009-06-02 13:01:37 +0200252 struct rfkill *bt_rfk;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400253
254 const char *bt_name;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400255
256 struct mutex mutex;
257};
258
259static struct toshiba_acpi_dev toshiba_acpi = {
260 .bt_name = "Toshiba Bluetooth",
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400261};
262
263/* Bluetooth rfkill handlers */
264
265static u32 hci_get_bt_present(bool *present)
266{
267 u32 hci_result;
268 u32 value, value2;
269
270 value = 0;
271 value2 = 0;
272 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
273 if (hci_result == HCI_SUCCESS)
274 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
275
276 return hci_result;
277}
278
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400279static u32 hci_get_radio_state(bool *radio_state)
280{
281 u32 hci_result;
282 u32 value, value2;
283
284 value = 0;
285 value2 = 0x0001;
286 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
287
288 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
289 return hci_result;
290}
291
Johannes Berg19d337d2009-06-02 13:01:37 +0200292static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400293{
Johannes Berg19d337d2009-06-02 13:01:37 +0200294 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400295 u32 result1, result2;
296 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200297 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400298 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400299
Johannes Berg19d337d2009-06-02 13:01:37 +0200300 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400301
302 mutex_lock(&dev->mutex);
Johannes Berg19d337d2009-06-02 13:01:37 +0200303 if (hci_get_radio_state(&radio_state) != HCI_SUCCESS) {
304 err = -EBUSY;
305 goto out;
306 }
307
308 if (!radio_state) {
309 err = 0;
310 goto out;
311 }
312
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400313 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
314 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400315
316 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Johannes Berg19d337d2009-06-02 13:01:37 +0200317 err = -EBUSY;
318 else
319 err = 0;
320 out:
321 mutex_unlock(&dev->mutex);
322 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400323}
324
Johannes Berg19d337d2009-06-02 13:01:37 +0200325static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400326{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400327 bool new_rfk_state;
328 bool value;
329 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200330 struct toshiba_acpi_dev *dev = data;
331
332 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400333
334 hci_result = hci_get_radio_state(&value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200335 if (hci_result != HCI_SUCCESS) {
336 /* Can't do anything useful */
337 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700338 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200339 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400340
341 new_rfk_state = value;
342
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400343 mutex_unlock(&dev->mutex);
344
Johannes Berg19d337d2009-06-02 13:01:37 +0200345 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
346 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400347}
348
Johannes Berg19d337d2009-06-02 13:01:37 +0200349static const struct rfkill_ops toshiba_rfk_ops = {
350 .set_block = bt_rfkill_set_block,
351 .poll = bt_rfkill_poll,
352};
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Holger Machtc9263552006-10-20 14:30:29 -0700355static struct backlight_device *toshiba_backlight_device;
Len Brown4be44fc2005-08-05 00:44:28 -0400356static int force_fan;
357static int last_key_event;
358static int key_event_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Len Brown4be44fc2005-08-05 00:44:28 -0400360typedef struct _ProcItem {
361 const char *name;
362 char *(*read_func) (char *);
363 unsigned long (*write_func) (const char *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364} ProcItem;
365
366/* proc file handlers
367 */
368
369static int
Len Brown4be44fc2005-08-05 00:44:28 -0400370dispatch_read(char *page, char **start, off_t off, int count, int *eof,
371 ProcItem * item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Len Brown4be44fc2005-08-05 00:44:28 -0400373 char *p = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int len;
375
376 if (off == 0)
377 p = item->read_func(p);
378
379 /* ISSUE: I don't understand this code */
380 len = (p - page);
Len Brown4be44fc2005-08-05 00:44:28 -0400381 if (len <= off + count)
382 *eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *start = page + off;
384 len -= off;
Len Brown4be44fc2005-08-05 00:44:28 -0400385 if (len > count)
386 len = count;
387 if (len < 0)
388 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return len;
390}
391
392static int
Len Brown4be44fc2005-08-05 00:44:28 -0400393dispatch_write(struct file *file, const char __user * buffer,
394 unsigned long count, ProcItem * item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 int result;
Len Brown4be44fc2005-08-05 00:44:28 -0400397 char *tmp_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* Arg buffer points to userspace memory, which can't be accessed
400 * directly. Since we're making a copy, zero-terminate the
401 * destination so that sscanf can be used on it safely.
402 */
403 tmp_buffer = kmalloc(count + 1, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400404 if (!tmp_buffer)
Panagiotis Issarisf4224152005-03-30 22:15:36 -0500405 return -ENOMEM;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (copy_from_user(tmp_buffer, buffer, count)) {
408 result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400409 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 tmp_buffer[count] = 0;
411 result = item->write_func(tmp_buffer, count);
412 }
413 kfree(tmp_buffer);
414 return result;
415}
416
Holger Machtc9263552006-10-20 14:30:29 -0700417static int get_lcd(struct backlight_device *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 u32 hci_result;
420 u32 value;
421
422 hci_read1(HCI_LCD_BRIGHTNESS, &value, &hci_result);
423 if (hci_result == HCI_SUCCESS) {
Holger Machtc9263552006-10-20 14:30:29 -0700424 return (value >> HCI_LCD_BRIGHTNESS_SHIFT);
425 } else
426 return -EFAULT;
427}
428
429static char *read_lcd(char *p)
430{
431 int value = get_lcd(NULL);
432
433 if (value >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 p += sprintf(p, "brightness: %d\n", value);
435 p += sprintf(p, "brightness_levels: %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400436 HCI_LCD_BRIGHTNESS_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 } else {
438 printk(MY_ERR "Error reading LCD brightness\n");
439 }
440
441 return p;
442}
443
Holger Machtc9263552006-10-20 14:30:29 -0700444static int set_lcd(int value)
445{
446 u32 hci_result;
447
448 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
449 hci_write1(HCI_LCD_BRIGHTNESS, value, &hci_result);
450 if (hci_result != HCI_SUCCESS)
451 return -EFAULT;
452
453 return 0;
454}
455
456static int set_lcd_status(struct backlight_device *bd)
457{
Richard Purdie599a52d2007-02-10 23:07:48 +0000458 return set_lcd(bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700459}
460
Len Brown4be44fc2005-08-05 00:44:28 -0400461static unsigned long write_lcd(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800464 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (sscanf(buffer, " brightness : %i", &value) == 1 &&
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800467 value >= 0 && value < HCI_LCD_BRIGHTNESS_LEVELS) {
Holger Machtc9263552006-10-20 14:30:29 -0700468 ret = set_lcd(value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800469 if (ret == 0)
470 ret = count;
471 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700472 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800473 }
Holger Machtc9263552006-10-20 14:30:29 -0700474 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Len Brown4be44fc2005-08-05 00:44:28 -0400477static char *read_video(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 u32 hci_result;
480 u32 value;
481
482 hci_read1(HCI_VIDEO_OUT, &value, &hci_result);
483 if (hci_result == HCI_SUCCESS) {
484 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
485 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400486 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 p += sprintf(p, "lcd_out: %d\n", is_lcd);
488 p += sprintf(p, "crt_out: %d\n", is_crt);
489 p += sprintf(p, "tv_out: %d\n", is_tv);
490 } else {
491 printk(MY_ERR "Error reading video out status\n");
492 }
493
494 return p;
495}
496
Len Brown4be44fc2005-08-05 00:44:28 -0400497static unsigned long write_video(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 int value;
500 int remain = count;
501 int lcd_out = -1;
502 int crt_out = -1;
503 int tv_out = -1;
504 u32 hci_result;
Al Virob4482a42007-10-14 19:35:40 +0100505 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* scan expression. Multiple expressions may be delimited with ;
508 *
509 * NOTE: to keep scanning simple, invalid fields are ignored
510 */
511 while (remain) {
512 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
513 lcd_out = value & 1;
514 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
515 crt_out = value & 1;
516 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
517 tv_out = value & 1;
518 /* advance to one character past the next ; */
519 do {
520 ++buffer;
521 --remain;
522 }
Len Brown4be44fc2005-08-05 00:44:28 -0400523 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
526 hci_read1(HCI_VIDEO_OUT, &video_out, &hci_result);
527 if (hci_result == HCI_SUCCESS) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700528 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (lcd_out != -1)
530 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
531 if (crt_out != -1)
532 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
533 if (tv_out != -1)
534 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
535 /* To avoid unnecessary video disruption, only write the new
536 * video setting if something changed. */
537 if (new_video_out != video_out)
538 write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
539 } else {
540 return -EFAULT;
541 }
542
543 return count;
544}
545
Len Brown4be44fc2005-08-05 00:44:28 -0400546static char *read_fan(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 u32 hci_result;
549 u32 value;
550
551 hci_read1(HCI_FAN, &value, &hci_result);
552 if (hci_result == HCI_SUCCESS) {
553 p += sprintf(p, "running: %d\n", (value > 0));
554 p += sprintf(p, "force_on: %d\n", force_fan);
555 } else {
556 printk(MY_ERR "Error reading fan status\n");
557 }
558
559 return p;
560}
561
Len Brown4be44fc2005-08-05 00:44:28 -0400562static unsigned long write_fan(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 int value;
565 u32 hci_result;
566
567 if (sscanf(buffer, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400568 value >= 0 && value <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 hci_write1(HCI_FAN, value, &hci_result);
570 if (hci_result != HCI_SUCCESS)
571 return -EFAULT;
572 else
573 force_fan = value;
574 } else {
575 return -EINVAL;
576 }
577
578 return count;
579}
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581static char *read_keys(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 u32 hci_result;
584 u32 value;
585
586 if (!key_event_valid) {
587 hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result);
588 if (hci_result == HCI_SUCCESS) {
589 key_event_valid = 1;
590 last_key_event = value;
591 } else if (hci_result == HCI_EMPTY) {
592 /* better luck next time */
593 } else if (hci_result == HCI_NOT_SUPPORTED) {
594 /* This is a workaround for an unresolved issue on
595 * some machines where system events sporadically
596 * become disabled. */
597 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
598 printk(MY_NOTICE "Re-enabled hotkeys\n");
599 } else {
600 printk(MY_ERR "Error reading hotkey status\n");
601 goto end;
602 }
603 }
604
605 p += sprintf(p, "hotkey_ready: %d\n", key_event_valid);
606 p += sprintf(p, "hotkey: 0x%04x\n", last_key_event);
607
Len Brown4be44fc2005-08-05 00:44:28 -0400608 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return p;
610}
611
Len Brown4be44fc2005-08-05 00:44:28 -0400612static unsigned long write_keys(const char *buffer, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 int value;
615
Len Brown4be44fc2005-08-05 00:44:28 -0400616 if (sscanf(buffer, " hotkey_ready : %i", &value) == 1 && value == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 key_event_valid = 0;
618 } else {
619 return -EINVAL;
620 }
621
622 return count;
623}
624
Len Brown4be44fc2005-08-05 00:44:28 -0400625static char *read_version(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 p += sprintf(p, "driver: %s\n", TOSHIBA_ACPI_VERSION);
628 p += sprintf(p, "proc_interface: %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400629 PROC_INTERFACE_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return p;
631}
632
633/* proc and module init
634 */
635
636#define PROC_TOSHIBA "toshiba"
637
Len Brown4be44fc2005-08-05 00:44:28 -0400638static ProcItem proc_items[] = {
639 {"lcd", read_lcd, write_lcd},
640 {"video", read_video, write_video},
641 {"fan", read_fan, write_fan},
642 {"keys", read_keys, write_keys},
643 {"version", read_version, NULL},
644 {NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645};
646
Len Brown4be44fc2005-08-05 00:44:28 -0400647static acpi_status __init add_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Len Brown4be44fc2005-08-05 00:44:28 -0400649 struct proc_dir_entry *proc;
650 ProcItem *item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Len Brown4be44fc2005-08-05 00:44:28 -0400652 for (item = proc_items; item->name; ++item) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 proc = create_proc_read_entry(item->name,
Len Brown4be44fc2005-08-05 00:44:28 -0400654 S_IFREG | S_IRUGO | S_IWUSR,
655 toshiba_proc_dir,
656 (read_proc_t *) dispatch_read,
657 item);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (proc && item->write_func)
Len Brown4be44fc2005-08-05 00:44:28 -0400659 proc->write_proc = (write_proc_t *) dispatch_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
662 return AE_OK;
663}
664
Randy Dunlapb1d93de2007-06-16 10:16:02 -0700665static acpi_status remove_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Len Brown4be44fc2005-08-05 00:44:28 -0400667 ProcItem *item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 for (item = proc_items; item->name; ++item)
670 remove_proc_entry(item->name, toshiba_proc_dir);
671 return AE_OK;
672}
673
Richard Purdie599a52d2007-02-10 23:07:48 +0000674static struct backlight_ops toshiba_backlight_data = {
Holger Machtc9263552006-10-20 14:30:29 -0700675 .get_brightness = get_lcd,
676 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700677};
678
Sam Ravnborgb2b77b22007-06-01 00:47:12 -0700679static void toshiba_acpi_exit(void)
Holger Machtc9263552006-10-20 14:30:29 -0700680{
Johannes Berg19d337d2009-06-02 13:01:37 +0200681 if (toshiba_acpi.bt_rfk) {
682 rfkill_unregister(toshiba_acpi.bt_rfk);
683 rfkill_destroy(toshiba_acpi.bt_rfk);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400684 }
685
Holger Machtc9263552006-10-20 14:30:29 -0700686 if (toshiba_backlight_device)
687 backlight_device_unregister(toshiba_backlight_device);
688
689 remove_device();
690
691 if (toshiba_proc_dir)
692 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
693
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400694 platform_device_unregister(toshiba_acpi.p_dev);
695
Holger Machtc9263552006-10-20 14:30:29 -0700696 return;
697}
698
Len Brown4be44fc2005-08-05 00:44:28 -0400699static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 acpi_status status = AE_OK;
702 u32 hci_result;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400703 bool bt_present;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400704 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 if (acpi_disabled)
707 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* simple device detection: look for HCI method */
710 if (is_valid_acpi_path(METHOD_HCI_1))
711 method_hci = METHOD_HCI_1;
712 else if (is_valid_acpi_path(METHOD_HCI_2))
713 method_hci = METHOD_HCI_2;
714 else
715 return -ENODEV;
716
717 printk(MY_INFO "Toshiba Laptop ACPI Extras version %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400718 TOSHIBA_ACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 printk(MY_INFO " HCI method: %s\n", method_hci);
720
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400721 mutex_init(&toshiba_acpi.mutex);
722
723 toshiba_acpi.p_dev = platform_device_register_simple("toshiba_acpi",
724 -1, NULL, 0);
725 if (IS_ERR(toshiba_acpi.p_dev)) {
726 ret = PTR_ERR(toshiba_acpi.p_dev);
727 printk(MY_ERR "unable to register platform device\n");
728 toshiba_acpi.p_dev = NULL;
729 toshiba_acpi_exit();
730 return ret;
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 force_fan = 0;
734 key_event_valid = 0;
735
736 /* enable event fifo */
737 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
738
739 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
740 if (!toshiba_proc_dir) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400741 toshiba_acpi_exit();
742 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 status = add_device();
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400745 if (ACPI_FAILURE(status)) {
746 toshiba_acpi_exit();
747 return -ENODEV;
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400751 toshiba_backlight_device = backlight_device_register("toshiba",
752 &toshiba_acpi.p_dev->dev,
Yu Luming519ab5f2006-12-19 12:56:15 -0800753 NULL,
Holger Machtc9263552006-10-20 14:30:29 -0700754 &toshiba_backlight_data);
755 if (IS_ERR(toshiba_backlight_device)) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400756 ret = PTR_ERR(toshiba_backlight_device);
Andrey Borzenkov12993422007-11-14 16:58:28 -0800757
Holger Machtc9263552006-10-20 14:30:29 -0700758 printk(KERN_ERR "Could not register toshiba backlight device\n");
759 toshiba_backlight_device = NULL;
760 toshiba_acpi_exit();
Andrey Borzenkov12993422007-11-14 16:58:28 -0800761 return ret;
Holger Machtc9263552006-10-20 14:30:29 -0700762 }
Richard Purdie599a52d2007-02-10 23:07:48 +0000763 toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Holger Machtc9263552006-10-20 14:30:29 -0700764
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400765 /* Register rfkill switch for Bluetooth */
766 if (hci_get_bt_present(&bt_present) == HCI_SUCCESS && bt_present) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200767 toshiba_acpi.bt_rfk = rfkill_alloc(toshiba_acpi.bt_name,
768 &toshiba_acpi.p_dev->dev,
769 RFKILL_TYPE_BLUETOOTH,
770 &toshiba_rfk_ops,
771 &toshiba_acpi);
772 if (!toshiba_acpi.bt_rfk) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400773 printk(MY_ERR "unable to allocate rfkill device\n");
774 toshiba_acpi_exit();
775 return -ENOMEM;
776 }
777
Johannes Berg19d337d2009-06-02 13:01:37 +0200778 ret = rfkill_register(toshiba_acpi.bt_rfk);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400779 if (ret) {
780 printk(MY_ERR "unable to register rfkill device\n");
Johannes Berg19d337d2009-06-02 13:01:37 +0200781 rfkill_destroy(toshiba_acpi.bt_rfk);
Frederik Deweerdt38aefbc2008-12-15 13:54:19 -0800782 toshiba_acpi_exit();
783 return ret;
784 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400785 }
786
787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790module_init(toshiba_acpi_init);
791module_exit(toshiba_acpi_exit);