blob: 77bf5d8f893aae8368f3ae6253c9f5c98e4d86a9 [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>
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -080045#include <linux/seq_file.h>
Holger Machtc9263552006-10-20 14:30:29 -070046#include <linux/backlight.h>
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040047#include <linux/platform_device.h>
48#include <linux/rfkill.h>
Holger Machtc9263552006-10-20 14:30:29 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/uaccess.h>
51
52#include <acpi/acpi_drivers.h>
53
54MODULE_AUTHOR("John Belmonte");
55MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
56MODULE_LICENSE("GPL");
57
58#define MY_LOGPREFIX "toshiba_acpi: "
59#define MY_ERR KERN_ERR MY_LOGPREFIX
60#define MY_NOTICE KERN_NOTICE MY_LOGPREFIX
61#define MY_INFO KERN_INFO MY_LOGPREFIX
62
63/* Toshiba ACPI method paths */
64#define METHOD_LCD_BRIGHTNESS "\\_SB_.PCI0.VGA_.LCD_._BCM"
65#define METHOD_HCI_1 "\\_SB_.VALD.GHCI"
66#define METHOD_HCI_2 "\\_SB_.VALZ.GHCI"
67#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
68
69/* Toshiba HCI interface definitions
70 *
71 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
72 * be uniform across all their models. Ideally we would just call
73 * dedicated ACPI methods instead of using this primitive interface.
74 * However the ACPI methods seem to be incomplete in some areas (for
75 * example they allow setting, but not reading, the LCD brightness value),
76 * so this is still useful.
77 */
78
79#define HCI_WORDS 6
80
81/* operations */
82#define HCI_SET 0xff00
83#define HCI_GET 0xfe00
84
85/* return codes */
86#define HCI_SUCCESS 0x0000
87#define HCI_FAILURE 0x1000
88#define HCI_NOT_SUPPORTED 0x8000
89#define HCI_EMPTY 0x8c00
90
91/* registers */
92#define HCI_FAN 0x0004
93#define HCI_SYSTEM_EVENT 0x0016
94#define HCI_VIDEO_OUT 0x001c
95#define HCI_HOTKEY_EVENT 0x001e
96#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040097#define HCI_WIRELESS 0x0056
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/* field definitions */
100#define HCI_LCD_BRIGHTNESS_BITS 3
101#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
102#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
103#define HCI_VIDEO_OUT_LCD 0x1
104#define HCI_VIDEO_OUT_CRT 0x2
105#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400106#define HCI_WIRELESS_KILL_SWITCH 0x01
107#define HCI_WIRELESS_BT_PRESENT 0x0f
108#define HCI_WIRELESS_BT_ATTACH 0x40
109#define HCI_WIRELESS_BT_POWER 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800111static const struct acpi_device_id toshiba_device_ids[] = {
112 {"TOS6200", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400113 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800114 {"TOS1900", 0},
115 {"", 0},
116};
117MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* utility
120 */
121
Len Brown4be44fc2005-08-05 00:44:28 -0400122static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 *word = (*word & ~mask) | (mask * value);
125}
126
127/* acpi interface wrappers
128 */
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130static int is_valid_acpi_path(const char *methodName)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 acpi_handle handle;
133 acpi_status status;
134
Len Brown4be44fc2005-08-05 00:44:28 -0400135 status = acpi_get_handle(NULL, (char *)methodName, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return !ACPI_FAILURE(status);
137}
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 struct acpi_object_list params;
142 union acpi_object in_objs[1];
143 acpi_status status;
144
Ahmed S. Darwishb2b79102007-02-06 16:14:43 -0800145 params.count = ARRAY_SIZE(in_objs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 params.pointer = in_objs;
147 in_objs[0].type = ACPI_TYPE_INTEGER;
148 in_objs[0].integer.value = val;
149
Len Brown4be44fc2005-08-05 00:44:28 -0400150 status = acpi_evaluate_object(NULL, (char *)methodName, &params, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return (status == AE_OK);
152}
153
154#if 0
Len Brown4be44fc2005-08-05 00:44:28 -0400155static int read_acpi_int(const char *methodName, int *pVal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 struct acpi_buffer results;
158 union acpi_object out_objs[1];
159 acpi_status status;
160
161 results.length = sizeof(out_objs);
162 results.pointer = out_objs;
163
Len Brown4be44fc2005-08-05 00:44:28 -0400164 status = acpi_evaluate_object(0, (char *)methodName, 0, &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *pVal = out_objs[0].integer.value;
166
167 return (status == AE_OK) && (out_objs[0].type == ACPI_TYPE_INTEGER);
168}
169#endif
170
Len Brown4be44fc2005-08-05 00:44:28 -0400171static const char *method_hci /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* Perform a raw HCI call. Here we don't care about input or output buffer
174 * format.
175 */
Len Brown4be44fc2005-08-05 00:44:28 -0400176static acpi_status hci_raw(const u32 in[HCI_WORDS], u32 out[HCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct acpi_object_list params;
179 union acpi_object in_objs[HCI_WORDS];
180 struct acpi_buffer results;
Len Brown4be44fc2005-08-05 00:44:28 -0400181 union acpi_object out_objs[HCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 acpi_status status;
183 int i;
184
185 params.count = HCI_WORDS;
186 params.pointer = in_objs;
187 for (i = 0; i < HCI_WORDS; ++i) {
188 in_objs[i].type = ACPI_TYPE_INTEGER;
189 in_objs[i].integer.value = in[i];
190 }
191
192 results.length = sizeof(out_objs);
193 results.pointer = out_objs;
194
Len Brown4be44fc2005-08-05 00:44:28 -0400195 status = acpi_evaluate_object(NULL, (char *)method_hci, &params,
196 &results);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) {
198 for (i = 0; i < out_objs->package.count; ++i) {
199 out[i] = out_objs->package.elements[i].integer.value;
200 }
201 }
202
203 return status;
204}
205
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400206/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 *
208 * In addition to the ACPI status, the HCI system returns a result which
209 * may be useful (such as "not supported").
210 */
211
Len Brown4be44fc2005-08-05 00:44:28 -0400212static acpi_status hci_write1(u32 reg, u32 in1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
215 u32 out[HCI_WORDS];
216 acpi_status status = hci_raw(in, out);
217 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
218 return status;
219}
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static acpi_status hci_read1(u32 reg, u32 * out1, u32 * result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
224 u32 out[HCI_WORDS];
225 acpi_status status = hci_raw(in, out);
226 *out1 = out[2];
227 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
228 return status;
229}
230
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400231static acpi_status hci_write2(u32 reg, u32 in1, u32 in2, u32 *result)
232{
233 u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
234 u32 out[HCI_WORDS];
235 acpi_status status = hci_raw(in, out);
236 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
237 return status;
238}
239
240static acpi_status hci_read2(u32 reg, u32 *out1, u32 *out2, u32 *result)
241{
242 u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
243 u32 out[HCI_WORDS];
244 acpi_status status = hci_raw(in, out);
245 *out1 = out[2];
246 *out2 = out[3];
247 *result = (status == AE_OK) ? out[0] : HCI_FAILURE;
248 return status;
249}
250
251struct toshiba_acpi_dev {
252 struct platform_device *p_dev;
Johannes Berg19d337d2009-06-02 13:01:37 +0200253 struct rfkill *bt_rfk;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400254
255 const char *bt_name;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400256
257 struct mutex mutex;
258};
259
260static struct toshiba_acpi_dev toshiba_acpi = {
261 .bt_name = "Toshiba Bluetooth",
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400262};
263
264/* Bluetooth rfkill handlers */
265
266static u32 hci_get_bt_present(bool *present)
267{
268 u32 hci_result;
269 u32 value, value2;
270
271 value = 0;
272 value2 = 0;
273 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
274 if (hci_result == HCI_SUCCESS)
275 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
276
277 return hci_result;
278}
279
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400280static u32 hci_get_radio_state(bool *radio_state)
281{
282 u32 hci_result;
283 u32 value, value2;
284
285 value = 0;
286 value2 = 0x0001;
287 hci_read2(HCI_WIRELESS, &value, &value2, &hci_result);
288
289 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
290 return hci_result;
291}
292
Johannes Berg19d337d2009-06-02 13:01:37 +0200293static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400294{
Johannes Berg19d337d2009-06-02 13:01:37 +0200295 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400296 u32 result1, result2;
297 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200298 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400299 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400300
Johannes Berg19d337d2009-06-02 13:01:37 +0200301 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400302
303 mutex_lock(&dev->mutex);
Johannes Berg19d337d2009-06-02 13:01:37 +0200304 if (hci_get_radio_state(&radio_state) != HCI_SUCCESS) {
305 err = -EBUSY;
306 goto out;
307 }
308
309 if (!radio_state) {
310 err = 0;
311 goto out;
312 }
313
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400314 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1);
315 hci_write2(HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400316
317 if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS)
Johannes Berg19d337d2009-06-02 13:01:37 +0200318 err = -EBUSY;
319 else
320 err = 0;
321 out:
322 mutex_unlock(&dev->mutex);
323 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400324}
325
Johannes Berg19d337d2009-06-02 13:01:37 +0200326static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400327{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400328 bool new_rfk_state;
329 bool value;
330 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200331 struct toshiba_acpi_dev *dev = data;
332
333 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400334
335 hci_result = hci_get_radio_state(&value);
Johannes Berg19d337d2009-06-02 13:01:37 +0200336 if (hci_result != HCI_SUCCESS) {
337 /* Can't do anything useful */
338 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700339 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200340 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400341
342 new_rfk_state = value;
343
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400344 mutex_unlock(&dev->mutex);
345
Johannes Berg19d337d2009-06-02 13:01:37 +0200346 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
347 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400348}
349
Johannes Berg19d337d2009-06-02 13:01:37 +0200350static const struct rfkill_ops toshiba_rfk_ops = {
351 .set_block = bt_rfkill_set_block,
352 .poll = bt_rfkill_poll,
353};
354
Len Brown4be44fc2005-08-05 00:44:28 -0400355static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Holger Machtc9263552006-10-20 14:30:29 -0700356static struct backlight_device *toshiba_backlight_device;
Len Brown4be44fc2005-08-05 00:44:28 -0400357static int force_fan;
358static int last_key_event;
359static int key_event_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Holger Machtc9263552006-10-20 14:30:29 -0700361static int get_lcd(struct backlight_device *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 u32 hci_result;
364 u32 value;
365
366 hci_read1(HCI_LCD_BRIGHTNESS, &value, &hci_result);
367 if (hci_result == HCI_SUCCESS) {
Holger Machtc9263552006-10-20 14:30:29 -0700368 return (value >> HCI_LCD_BRIGHTNESS_SHIFT);
369 } else
370 return -EFAULT;
371}
372
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800373static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700374{
375 int value = get_lcd(NULL);
376
377 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800378 seq_printf(m, "brightness: %d\n", value);
379 seq_printf(m, "brightness_levels: %d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400380 HCI_LCD_BRIGHTNESS_LEVELS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else {
382 printk(MY_ERR "Error reading LCD brightness\n");
383 }
384
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800385 return 0;
386}
387
388static int lcd_proc_open(struct inode *inode, struct file *file)
389{
390 return single_open(file, lcd_proc_show, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Holger Machtc9263552006-10-20 14:30:29 -0700393static int set_lcd(int value)
394{
395 u32 hci_result;
396
397 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
398 hci_write1(HCI_LCD_BRIGHTNESS, value, &hci_result);
399 if (hci_result != HCI_SUCCESS)
400 return -EFAULT;
401
402 return 0;
403}
404
405static int set_lcd_status(struct backlight_device *bd)
406{
Richard Purdie599a52d2007-02-10 23:07:48 +0000407 return set_lcd(bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700408}
409
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800410static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
411 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800413 char cmd[42];
414 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800416 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800418 len = min(count, sizeof(cmd) - 1);
419 if (copy_from_user(cmd, buf, len))
420 return -EFAULT;
421 cmd[len] = '\0';
422
423 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800424 value >= 0 && value < HCI_LCD_BRIGHTNESS_LEVELS) {
Holger Machtc9263552006-10-20 14:30:29 -0700425 ret = set_lcd(value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800426 if (ret == 0)
427 ret = count;
428 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700429 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800430 }
Holger Machtc9263552006-10-20 14:30:29 -0700431 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800434static const struct file_operations lcd_proc_fops = {
435 .owner = THIS_MODULE,
436 .open = lcd_proc_open,
437 .read = seq_read,
438 .llseek = seq_lseek,
439 .release = single_release,
440 .write = lcd_proc_write,
441};
442
443static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 u32 hci_result;
446 u32 value;
447
448 hci_read1(HCI_VIDEO_OUT, &value, &hci_result);
449 if (hci_result == HCI_SUCCESS) {
450 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
451 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400452 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800453 seq_printf(m, "lcd_out: %d\n", is_lcd);
454 seq_printf(m, "crt_out: %d\n", is_crt);
455 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 } else {
457 printk(MY_ERR "Error reading video out status\n");
458 }
459
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800463static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800465 return single_open(file, video_proc_show, NULL);
466}
467
468static ssize_t video_proc_write(struct file *file, const char __user *buf,
469 size_t count, loff_t *pos)
470{
471 char *cmd, *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int value;
473 int remain = count;
474 int lcd_out = -1;
475 int crt_out = -1;
476 int tv_out = -1;
477 u32 hci_result;
Al Virob4482a42007-10-14 19:35:40 +0100478 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800480 cmd = kmalloc(count + 1, GFP_KERNEL);
481 if (!cmd)
482 return -ENOMEM;
483 if (copy_from_user(cmd, buf, count)) {
484 kfree(cmd);
485 return -EFAULT;
486 }
487 cmd[count] = '\0';
488
489 buffer = cmd;
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /* scan expression. Multiple expressions may be delimited with ;
492 *
493 * NOTE: to keep scanning simple, invalid fields are ignored
494 */
495 while (remain) {
496 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
497 lcd_out = value & 1;
498 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
499 crt_out = value & 1;
500 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
501 tv_out = value & 1;
502 /* advance to one character past the next ; */
503 do {
504 ++buffer;
505 --remain;
506 }
Len Brown4be44fc2005-08-05 00:44:28 -0400507 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800510 kfree(cmd);
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 hci_read1(HCI_VIDEO_OUT, &video_out, &hci_result);
513 if (hci_result == HCI_SUCCESS) {
Harvey Harrison9e113e02008-09-22 14:37:29 -0700514 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (lcd_out != -1)
516 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
517 if (crt_out != -1)
518 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
519 if (tv_out != -1)
520 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
521 /* To avoid unnecessary video disruption, only write the new
522 * video setting if something changed. */
523 if (new_video_out != video_out)
524 write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
525 } else {
526 return -EFAULT;
527 }
528
529 return count;
530}
531
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800532static const struct file_operations video_proc_fops = {
533 .owner = THIS_MODULE,
534 .open = video_proc_open,
535 .read = seq_read,
536 .llseek = seq_lseek,
537 .release = single_release,
538 .write = video_proc_write,
539};
540
541static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 u32 hci_result;
544 u32 value;
545
546 hci_read1(HCI_FAN, &value, &hci_result);
547 if (hci_result == HCI_SUCCESS) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800548 seq_printf(m, "running: %d\n", (value > 0));
549 seq_printf(m, "force_on: %d\n", force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 } else {
551 printk(MY_ERR "Error reading fan status\n");
552 }
553
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800557static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800559 return single_open(file, fan_proc_show, NULL);
560}
561
562static ssize_t fan_proc_write(struct file *file, const char __user *buf,
563 size_t count, loff_t *pos)
564{
565 char cmd[42];
566 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int value;
568 u32 hci_result;
569
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800570 len = min(count, sizeof(cmd) - 1);
571 if (copy_from_user(cmd, buf, len))
572 return -EFAULT;
573 cmd[len] = '\0';
574
575 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -0400576 value >= 0 && value <= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 hci_write1(HCI_FAN, value, &hci_result);
578 if (hci_result != HCI_SUCCESS)
579 return -EFAULT;
580 else
581 force_fan = value;
582 } else {
583 return -EINVAL;
584 }
585
586 return count;
587}
588
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800589static const struct file_operations fan_proc_fops = {
590 .owner = THIS_MODULE,
591 .open = fan_proc_open,
592 .read = seq_read,
593 .llseek = seq_lseek,
594 .release = single_release,
595 .write = fan_proc_write,
596};
597
598static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 u32 hci_result;
601 u32 value;
602
603 if (!key_event_valid) {
604 hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result);
605 if (hci_result == HCI_SUCCESS) {
606 key_event_valid = 1;
607 last_key_event = value;
608 } else if (hci_result == HCI_EMPTY) {
609 /* better luck next time */
610 } else if (hci_result == HCI_NOT_SUPPORTED) {
611 /* This is a workaround for an unresolved issue on
612 * some machines where system events sporadically
613 * become disabled. */
614 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
615 printk(MY_NOTICE "Re-enabled hotkeys\n");
616 } else {
617 printk(MY_ERR "Error reading hotkey status\n");
618 goto end;
619 }
620 }
621
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800622 seq_printf(m, "hotkey_ready: %d\n", key_event_valid);
623 seq_printf(m, "hotkey: 0x%04x\n", last_key_event);
624end:
625 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800628static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800630 return single_open(file, keys_proc_show, NULL);
631}
632
633static ssize_t keys_proc_write(struct file *file, const char __user *buf,
634 size_t count, loff_t *pos)
635{
636 char cmd[42];
637 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 int value;
639
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800640 len = min(count, sizeof(cmd) - 1);
641 if (copy_from_user(cmd, buf, len))
642 return -EFAULT;
643 cmd[len] = '\0';
644
645 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 key_event_valid = 0;
647 } else {
648 return -EINVAL;
649 }
650
651 return count;
652}
653
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800654static const struct file_operations keys_proc_fops = {
655 .owner = THIS_MODULE,
656 .open = keys_proc_open,
657 .read = seq_read,
658 .llseek = seq_lseek,
659 .release = single_release,
660 .write = keys_proc_write,
661};
662
663static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800665 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
666 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800670static int version_proc_open(struct inode *inode, struct file *file)
671{
672 return single_open(file, version_proc_show, PDE(inode)->data);
673}
674
675static const struct file_operations version_proc_fops = {
676 .owner = THIS_MODULE,
677 .open = version_proc_open,
678 .read = seq_read,
679 .llseek = seq_lseek,
680 .release = single_release,
681};
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/* proc and module init
684 */
685
686#define PROC_TOSHIBA "toshiba"
687
Len Brown4be44fc2005-08-05 00:44:28 -0400688static acpi_status __init add_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800690 proc_create("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir, &lcd_proc_fops);
691 proc_create("video", S_IRUGO | S_IWUSR, toshiba_proc_dir, &video_proc_fops);
692 proc_create("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir, &fan_proc_fops);
693 proc_create("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir, &keys_proc_fops);
694 proc_create("version", S_IRUGO, toshiba_proc_dir, &version_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 return AE_OK;
697}
698
Randy Dunlapb1d93de2007-06-16 10:16:02 -0700699static acpi_status remove_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800701 remove_proc_entry("lcd", toshiba_proc_dir);
702 remove_proc_entry("video", toshiba_proc_dir);
703 remove_proc_entry("fan", toshiba_proc_dir);
704 remove_proc_entry("keys", toshiba_proc_dir);
705 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return AE_OK;
707}
708
Richard Purdie599a52d2007-02-10 23:07:48 +0000709static struct backlight_ops toshiba_backlight_data = {
Holger Machtc9263552006-10-20 14:30:29 -0700710 .get_brightness = get_lcd,
711 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -0700712};
713
Sam Ravnborgb2b77b22007-06-01 00:47:12 -0700714static void toshiba_acpi_exit(void)
Holger Machtc9263552006-10-20 14:30:29 -0700715{
Johannes Berg19d337d2009-06-02 13:01:37 +0200716 if (toshiba_acpi.bt_rfk) {
717 rfkill_unregister(toshiba_acpi.bt_rfk);
718 rfkill_destroy(toshiba_acpi.bt_rfk);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400719 }
720
Holger Machtc9263552006-10-20 14:30:29 -0700721 if (toshiba_backlight_device)
722 backlight_device_unregister(toshiba_backlight_device);
723
724 remove_device();
725
726 if (toshiba_proc_dir)
727 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
728
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400729 platform_device_unregister(toshiba_acpi.p_dev);
730
Holger Machtc9263552006-10-20 14:30:29 -0700731 return;
732}
733
Len Brown4be44fc2005-08-05 00:44:28 -0400734static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 acpi_status status = AE_OK;
737 u32 hci_result;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400738 bool bt_present;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400739 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (acpi_disabled)
742 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /* simple device detection: look for HCI method */
745 if (is_valid_acpi_path(METHOD_HCI_1))
746 method_hci = METHOD_HCI_1;
747 else if (is_valid_acpi_path(METHOD_HCI_2))
748 method_hci = METHOD_HCI_2;
749 else
750 return -ENODEV;
751
752 printk(MY_INFO "Toshiba Laptop ACPI Extras version %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400753 TOSHIBA_ACPI_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 printk(MY_INFO " HCI method: %s\n", method_hci);
755
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400756 mutex_init(&toshiba_acpi.mutex);
757
758 toshiba_acpi.p_dev = platform_device_register_simple("toshiba_acpi",
759 -1, NULL, 0);
760 if (IS_ERR(toshiba_acpi.p_dev)) {
761 ret = PTR_ERR(toshiba_acpi.p_dev);
762 printk(MY_ERR "unable to register platform device\n");
763 toshiba_acpi.p_dev = NULL;
764 toshiba_acpi_exit();
765 return ret;
766 }
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 force_fan = 0;
769 key_event_valid = 0;
770
771 /* enable event fifo */
772 hci_write1(HCI_SYSTEM_EVENT, 1, &hci_result);
773
774 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
775 if (!toshiba_proc_dir) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400776 toshiba_acpi_exit();
777 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 status = add_device();
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400780 if (ACPI_FAILURE(status)) {
781 toshiba_acpi_exit();
782 return -ENODEV;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400786 toshiba_backlight_device = backlight_device_register("toshiba",
787 &toshiba_acpi.p_dev->dev,
Yu Luming519ab5f2006-12-19 12:56:15 -0800788 NULL,
Holger Machtc9263552006-10-20 14:30:29 -0700789 &toshiba_backlight_data);
790 if (IS_ERR(toshiba_backlight_device)) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400791 ret = PTR_ERR(toshiba_backlight_device);
Andrey Borzenkov12993422007-11-14 16:58:28 -0800792
Holger Machtc9263552006-10-20 14:30:29 -0700793 printk(KERN_ERR "Could not register toshiba backlight device\n");
794 toshiba_backlight_device = NULL;
795 toshiba_acpi_exit();
Andrey Borzenkov12993422007-11-14 16:58:28 -0800796 return ret;
Holger Machtc9263552006-10-20 14:30:29 -0700797 }
Richard Purdie599a52d2007-02-10 23:07:48 +0000798 toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Holger Machtc9263552006-10-20 14:30:29 -0700799
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400800 /* Register rfkill switch for Bluetooth */
801 if (hci_get_bt_present(&bt_present) == HCI_SUCCESS && bt_present) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200802 toshiba_acpi.bt_rfk = rfkill_alloc(toshiba_acpi.bt_name,
803 &toshiba_acpi.p_dev->dev,
804 RFKILL_TYPE_BLUETOOTH,
805 &toshiba_rfk_ops,
806 &toshiba_acpi);
807 if (!toshiba_acpi.bt_rfk) {
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400808 printk(MY_ERR "unable to allocate rfkill device\n");
809 toshiba_acpi_exit();
810 return -ENOMEM;
811 }
812
Johannes Berg19d337d2009-06-02 13:01:37 +0200813 ret = rfkill_register(toshiba_acpi.bt_rfk);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400814 if (ret) {
815 printk(MY_ERR "unable to register rfkill device\n");
Johannes Berg19d337d2009-06-02 13:01:37 +0200816 rfkill_destroy(toshiba_acpi.bt_rfk);
Frederik Deweerdt38aefbc2008-12-15 13:54:19 -0800817 toshiba_acpi_exit();
818 return ret;
819 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400820 }
821
822 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825module_init(toshiba_acpi_init);
826module_exit(toshiba_acpi_exit);