blob: 0327cf79bacadecf9c65399fd5bd02a3917aee7e [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
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +02007 * Copyright (C) 2010 Pierre Ducroquet
Azael Avalos548c4302014-03-25 20:38:35 -06008 * Copyright (C) 2014 Azael Avalos
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 *
25 * The devolpment page for this driver is located at
26 * http://memebeam.org/toys/ToshibaAcpiDriver.
27 *
28 * Credits:
29 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
30 * engineering the Windows drivers
31 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
32 * Rob Miller - TV out and hotkeys help
33 *
34 *
35 * TODO
36 *
37 */
38
Joe Perches7e334602011-03-29 15:21:52 -070039#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
Azael Avalos548c4302014-03-25 20:38:35 -060041#define TOSHIBA_ACPI_VERSION "0.20"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define PROC_INTERFACE_VERSION 1
43
44#include <linux/kernel.h>
45#include <linux/module.h>
46#include <linux/init.h>
47#include <linux/types.h>
48#include <linux/proc_fs.h>
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -080049#include <linux/seq_file.h>
Holger Machtc9263552006-10-20 14:30:29 -070050#include <linux/backlight.h>
philipl@overt.orgc41a40c2008-08-30 11:57:39 -040051#include <linux/rfkill.h>
Matthew Garrett6335e4d2010-02-25 15:20:54 -050052#include <linux/input.h>
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -070053#include <linux/input/sparse-keymap.h>
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +020054#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090055#include <linux/slab.h>
Seth Forshee29cd2932012-01-18 13:44:09 -060056#include <linux/workqueue.h>
57#include <linux/i8042.h>
Lv Zheng8b484632013-12-03 08:49:16 +080058#include <linux/acpi.h>
Takashi Iwaife808bfb2014-04-29 15:15:38 +020059#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/uaccess.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_AUTHOR("John Belmonte");
63MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
64MODULE_LICENSE("GPL");
65
Seth Forsheef11f9992012-01-18 13:44:11 -060066#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
67
Seth Forshee29cd2932012-01-18 13:44:09 -060068/* Scan code for Fn key on TOS1900 models */
69#define TOS1900_FN_SCAN 0x6e
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* Toshiba ACPI method paths */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
73
Azael Avalos258c5902014-09-29 20:40:07 -060074/* The Toshiba configuration interface is composed of the HCI and the SCI,
75 * which are defined as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 *
77 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
78 * be uniform across all their models. Ideally we would just call
79 * dedicated ACPI methods instead of using this primitive interface.
80 * However the ACPI methods seem to be incomplete in some areas (for
81 * example they allow setting, but not reading, the LCD brightness value),
82 * so this is still useful.
Matthew Garrettea6b31f2014-04-04 14:22:34 -040083 *
Azael Avalos84a62732014-03-25 20:38:29 -060084 * SCI stands for "System Configuration Interface" which aim is to
85 * conceal differences in hardware between different models.
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
87
Azael Avalos258c5902014-09-29 20:40:07 -060088#define TCI_WORDS 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/* operations */
91#define HCI_SET 0xff00
92#define HCI_GET 0xfe00
Azael Avalos84a62732014-03-25 20:38:29 -060093#define SCI_OPEN 0xf100
94#define SCI_CLOSE 0xf200
95#define SCI_GET 0xf300
96#define SCI_SET 0xf400
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* return codes */
Azael Avalos1864bbc2014-09-29 20:40:08 -060099#define TOS_SUCCESS 0x0000
100#define TOS_OPEN_CLOSE_OK 0x0044
101#define TOS_FAILURE 0x1000
102#define TOS_NOT_SUPPORTED 0x8000
103#define TOS_ALREADY_OPEN 0x8100
104#define TOS_NOT_OPENED 0x8200
105#define TOS_INPUT_DATA_ERROR 0x8300
106#define TOS_WRITE_PROTECTED 0x8400
107#define TOS_NOT_PRESENT 0x8600
108#define TOS_FIFO_EMPTY 0x8c00
109#define TOS_DATA_NOT_AVAILABLE 0x8d20
110#define TOS_NOT_INITIALIZED 0x8d50
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/* registers */
113#define HCI_FAN 0x0004
Akio Idehara121b7b02012-04-06 01:46:43 +0900114#define HCI_TR_BACKLIGHT 0x0005
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define HCI_SYSTEM_EVENT 0x0016
116#define HCI_VIDEO_OUT 0x001c
117#define HCI_HOTKEY_EVENT 0x001e
118#define HCI_LCD_BRIGHTNESS 0x002a
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400119#define HCI_WIRELESS 0x0056
Azael Avalos5a2813e2014-03-25 20:38:34 -0600120#define HCI_ACCELEROMETER 0x006d
Azael Avalos360f0f32014-03-25 20:38:31 -0600121#define HCI_KBD_ILLUMINATION 0x0095
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600122#define HCI_ECO_MODE 0x0097
Azael Avalos5a2813e2014-03-25 20:38:34 -0600123#define HCI_ACCELEROMETER2 0x00a6
Azael Avalosfdb79082014-03-25 20:38:30 -0600124#define SCI_ILLUMINATION 0x014e
Azael Avalos360f0f32014-03-25 20:38:31 -0600125#define SCI_KBD_ILLUM_STATUS 0x015c
Azael Avalos9d8658a2014-03-25 20:38:32 -0600126#define SCI_TOUCHPAD 0x050e
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/* field definitions */
Azael Avalos5a2813e2014-03-25 20:38:34 -0600129#define HCI_ACCEL_MASK 0x7fff
Seth Forshee29cd2932012-01-18 13:44:09 -0600130#define HCI_HOTKEY_DISABLE 0x0b
131#define HCI_HOTKEY_ENABLE 0x09
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define HCI_LCD_BRIGHTNESS_BITS 3
133#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
134#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
Azael Avalos360f0f32014-03-25 20:38:31 -0600135#define HCI_MISC_SHIFT 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define HCI_VIDEO_OUT_LCD 0x1
137#define HCI_VIDEO_OUT_CRT 0x2
138#define HCI_VIDEO_OUT_TV 0x4
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400139#define HCI_WIRELESS_KILL_SWITCH 0x01
140#define HCI_WIRELESS_BT_PRESENT 0x0f
141#define HCI_WIRELESS_BT_ATTACH 0x40
142#define HCI_WIRELESS_BT_POWER 0x80
Azael Avalos93f8c162014-09-12 18:50:36 -0600143#define SCI_KBD_MODE_MASK 0x1f
Azael Avalos360f0f32014-03-25 20:38:31 -0600144#define SCI_KBD_MODE_FNZ 0x1
145#define SCI_KBD_MODE_AUTO 0x2
Azael Avalos93f8c162014-09-12 18:50:36 -0600146#define SCI_KBD_MODE_ON 0x8
147#define SCI_KBD_MODE_OFF 0x10
148#define SCI_KBD_TIME_MAX 0x3c001a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Seth Forshee135740d2011-09-20 16:55:49 -0500150struct toshiba_acpi_dev {
151 struct acpi_device *acpi_dev;
152 const char *method_hci;
153 struct rfkill *bt_rfk;
154 struct input_dev *hotkey_dev;
Seth Forshee29cd2932012-01-18 13:44:09 -0600155 struct work_struct hotkey_work;
Seth Forshee135740d2011-09-20 16:55:49 -0500156 struct backlight_device *backlight_dev;
157 struct led_classdev led_dev;
Azael Avalos360f0f32014-03-25 20:38:31 -0600158 struct led_classdev kbd_led;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600159 struct led_classdev eco_led;
Seth Forshee36d03f92011-09-20 16:55:53 -0500160
Seth Forshee135740d2011-09-20 16:55:49 -0500161 int force_fan;
162 int last_key_event;
163 int key_event_valid;
Azael Avalos93f8c162014-09-12 18:50:36 -0600164 int kbd_type;
Azael Avalos360f0f32014-03-25 20:38:31 -0600165 int kbd_mode;
166 int kbd_time;
Seth Forshee135740d2011-09-20 16:55:49 -0500167
Dan Carpenter592b7462012-01-15 14:28:20 +0300168 unsigned int illumination_supported:1;
169 unsigned int video_supported:1;
170 unsigned int fan_supported:1;
171 unsigned int system_event_supported:1;
Seth Forshee29cd2932012-01-18 13:44:09 -0600172 unsigned int ntfy_supported:1;
173 unsigned int info_supported:1;
Akio Idehara121b7b02012-04-06 01:46:43 +0900174 unsigned int tr_backlight_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600175 unsigned int kbd_illum_supported:1;
176 unsigned int kbd_led_registered:1;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600177 unsigned int touchpad_supported:1;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600178 unsigned int eco_supported:1;
Azael Avalos5a2813e2014-03-25 20:38:34 -0600179 unsigned int accelerometer_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600180 unsigned int sysfs_created:1;
Seth Forshee36d03f92011-09-20 16:55:53 -0500181
Seth Forshee135740d2011-09-20 16:55:49 -0500182 struct mutex mutex;
183};
184
Seth Forshee29cd2932012-01-18 13:44:09 -0600185static struct toshiba_acpi_dev *toshiba_acpi;
186
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800187static const struct acpi_device_id toshiba_device_ids[] = {
188 {"TOS6200", 0},
Ondrej Zary63a9e012014-11-10 00:11:54 +0100189 {"TOS6207", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400190 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800191 {"TOS1900", 0},
192 {"", 0},
193};
194MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
195
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800196static const struct key_entry toshiba_acpi_keymap[] = {
Unai Uribarrifec278a2014-01-14 11:06:47 +0100197 { KE_KEY, 0x9e, { KEY_RFKILL } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700198 { KE_KEY, 0x101, { KEY_MUTE } },
199 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
200 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalos408a5d12014-09-05 11:14:03 -0600201 { KE_KEY, 0x10f, { KEY_TAB } },
Azael Avalosaf502832012-01-18 13:44:10 -0600202 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
203 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700204 { KE_KEY, 0x13b, { KEY_COFFEE } },
205 { KE_KEY, 0x13c, { KEY_BATTERY } },
206 { KE_KEY, 0x13d, { KEY_SLEEP } },
207 { KE_KEY, 0x13e, { KEY_SUSPEND } },
208 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
209 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
210 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
211 { KE_KEY, 0x142, { KEY_WLAN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600212 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
Jon Dowlanda49010f2010-10-27 00:24:59 +0100213 { KE_KEY, 0x17f, { KEY_FN } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700214 { KE_KEY, 0xb05, { KEY_PROG2 } },
215 { KE_KEY, 0xb06, { KEY_WWW } },
216 { KE_KEY, 0xb07, { KEY_MAIL } },
217 { KE_KEY, 0xb30, { KEY_STOP } },
218 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
219 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
220 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
221 { KE_KEY, 0xb5a, { KEY_MEDIA } },
Azael Avalos408a5d12014-09-05 11:14:03 -0600222 { KE_IGNORE, 0x1430, { KEY_RESERVED } }, /* Wake from sleep */
223 { KE_IGNORE, 0x1501, { KEY_RESERVED } }, /* Output changed */
224 { KE_IGNORE, 0x1502, { KEY_RESERVED } }, /* HDMI plugged/unplugged */
225 { KE_IGNORE, 0x1ABE, { KEY_RESERVED } }, /* Protection level set */
226 { KE_IGNORE, 0x1ABF, { KEY_RESERVED } }, /* Protection level off */
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700227 { KE_END, 0 },
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500228};
229
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200230/* alternative keymap */
231static const struct dmi_system_id toshiba_alt_keymap_dmi[] = {
232 {
233 .matches = {
234 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
235 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite M840"),
236 },
237 },
Azael Avalose6efad72014-08-04 09:21:02 -0600238 {
239 .matches = {
240 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
241 DMI_MATCH(DMI_PRODUCT_NAME, "Qosmio X75-A"),
242 },
243 },
Aaron Lub1bde682014-10-23 16:18:02 +0800244 {
245 .matches = {
246 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
247 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A50-A"),
248 },
249 },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200250 {}
251};
252
253static const struct key_entry toshiba_acpi_alt_keymap[] = {
254 { KE_KEY, 0x157, { KEY_MUTE } },
255 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
256 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalose6efad72014-08-04 09:21:02 -0600257 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200258 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
259 { KE_KEY, 0x13e, { KEY_SWITCHVIDEOMODE } },
260 { KE_KEY, 0x13c, { KEY_BRIGHTNESSDOWN } },
261 { KE_KEY, 0x13d, { KEY_BRIGHTNESSUP } },
262 { KE_KEY, 0x158, { KEY_WLAN } },
263 { KE_KEY, 0x13f, { KEY_TOUCHPAD_TOGGLE } },
264 { KE_END, 0 },
265};
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/* utility
268 */
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270static __inline__ void _set_bit(u32 * word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 *word = (*word & ~mask) | (mask * value);
273}
274
275/* acpi interface wrappers
276 */
277
Len Brown4be44fc2005-08-05 00:44:28 -0400278static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 acpi_status status;
281
Zhang Rui619400d2013-09-03 08:31:56 +0800282 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500283 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Azael Avalos258c5902014-09-29 20:40:07 -0600286/* Perform a raw configuration call. Here we don't care about input or output
287 * buffer format.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Azael Avalos258c5902014-09-29 20:40:07 -0600289static acpi_status tci_raw(struct toshiba_acpi_dev *dev,
290 const u32 in[TCI_WORDS], u32 out[TCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 struct acpi_object_list params;
Azael Avalos258c5902014-09-29 20:40:07 -0600293 union acpi_object in_objs[TCI_WORDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct acpi_buffer results;
Azael Avalos258c5902014-09-29 20:40:07 -0600295 union acpi_object out_objs[TCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 acpi_status status;
297 int i;
298
Azael Avalos258c5902014-09-29 20:40:07 -0600299 params.count = TCI_WORDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 params.pointer = in_objs;
Azael Avalos258c5902014-09-29 20:40:07 -0600301 for (i = 0; i < TCI_WORDS; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 in_objs[i].type = ACPI_TYPE_INTEGER;
303 in_objs[i].integer.value = in[i];
304 }
305
306 results.length = sizeof(out_objs);
307 results.pointer = out_objs;
308
Seth Forshee6e02cc72011-09-20 16:55:51 -0500309 status = acpi_evaluate_object(dev->acpi_dev->handle,
310 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400311 &results);
Azael Avalos258c5902014-09-29 20:40:07 -0600312 if ((status == AE_OK) && (out_objs->package.count <= TCI_WORDS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 for (i = 0; i < out_objs->package.count; ++i) {
314 out[i] = out_objs->package.elements[i].integer.value;
315 }
316 }
317
318 return status;
319}
320
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400321/* common hci tasks (get or set one or two value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
323 * In addition to the ACPI status, the HCI system returns a result which
324 * may be useful (such as "not supported").
325 */
326
Azael Avalos893f3f62014-09-29 20:40:09 -0600327static u32 hci_write1(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Azael Avalos258c5902014-09-29 20:40:07 -0600329 u32 in[TCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
330 u32 out[TCI_WORDS];
331 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600332
333 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Azael Avalos893f3f62014-09-29 20:40:09 -0600336static u32 hci_read1(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Azael Avalos258c5902014-09-29 20:40:07 -0600338 u32 in[TCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
339 u32 out[TCI_WORDS];
340 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600341 if (ACPI_FAILURE(status))
342 return TOS_FAILURE;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *out1 = out[2];
Azael Avalos893f3f62014-09-29 20:40:09 -0600345
346 return out[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Azael Avalos893f3f62014-09-29 20:40:09 -0600349static u32 hci_write2(struct toshiba_acpi_dev *dev, u32 reg, u32 in1, u32 in2)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400350{
Azael Avalos258c5902014-09-29 20:40:07 -0600351 u32 in[TCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 };
352 u32 out[TCI_WORDS];
353 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600354
355 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400356}
357
Azael Avalos893f3f62014-09-29 20:40:09 -0600358static u32 hci_read2(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1, u32 *out2)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400359{
Azael Avalos258c5902014-09-29 20:40:07 -0600360 u32 in[TCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 };
361 u32 out[TCI_WORDS];
362 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600363 if (ACPI_FAILURE(status))
364 return TOS_FAILURE;
365
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400366 *out1 = out[2];
367 *out2 = out[3];
Azael Avalos893f3f62014-09-29 20:40:09 -0600368
369 return out[0];
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400370}
371
Azael Avalos84a62732014-03-25 20:38:29 -0600372/* common sci tasks
373 */
374
375static int sci_open(struct toshiba_acpi_dev *dev)
376{
Azael Avalos258c5902014-09-29 20:40:07 -0600377 u32 in[TCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 };
378 u32 out[TCI_WORDS];
Azael Avalos84a62732014-03-25 20:38:29 -0600379 acpi_status status;
380
Azael Avalos258c5902014-09-29 20:40:07 -0600381 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600382 if (ACPI_FAILURE(status) || out[0] == TOS_FAILURE) {
Azael Avalos84a62732014-03-25 20:38:29 -0600383 pr_err("ACPI call to open SCI failed\n");
384 return 0;
385 }
386
Azael Avalos1864bbc2014-09-29 20:40:08 -0600387 if (out[0] == TOS_OPEN_CLOSE_OK) {
Azael Avalos84a62732014-03-25 20:38:29 -0600388 return 1;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600389 } else if (out[0] == TOS_ALREADY_OPEN) {
Azael Avalos84a62732014-03-25 20:38:29 -0600390 pr_info("Toshiba SCI already opened\n");
391 return 1;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600392 } else if (out[0] == TOS_NOT_PRESENT) {
Azael Avalos84a62732014-03-25 20:38:29 -0600393 pr_info("Toshiba SCI is not present\n");
394 }
395
396 return 0;
397}
398
399static void sci_close(struct toshiba_acpi_dev *dev)
400{
Azael Avalos258c5902014-09-29 20:40:07 -0600401 u32 in[TCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 };
402 u32 out[TCI_WORDS];
Azael Avalos84a62732014-03-25 20:38:29 -0600403 acpi_status status;
404
Azael Avalos258c5902014-09-29 20:40:07 -0600405 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600406 if (ACPI_FAILURE(status) || out[0] == TOS_FAILURE) {
Azael Avalos84a62732014-03-25 20:38:29 -0600407 pr_err("ACPI call to close SCI failed\n");
408 return;
409 }
410
Azael Avalos1864bbc2014-09-29 20:40:08 -0600411 if (out[0] == TOS_OPEN_CLOSE_OK)
Azael Avalos84a62732014-03-25 20:38:29 -0600412 return;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600413 else if (out[0] == TOS_NOT_OPENED)
Azael Avalos84a62732014-03-25 20:38:29 -0600414 pr_info("Toshiba SCI not opened\n");
Azael Avalos1864bbc2014-09-29 20:40:08 -0600415 else if (out[0] == TOS_NOT_PRESENT)
Azael Avalos84a62732014-03-25 20:38:29 -0600416 pr_info("Toshiba SCI is not present\n");
417}
418
Azael Avalos893f3f62014-09-29 20:40:09 -0600419static u32 sci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
Azael Avalos84a62732014-03-25 20:38:29 -0600420{
Azael Avalos258c5902014-09-29 20:40:07 -0600421 u32 in[TCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 };
422 u32 out[TCI_WORDS];
423 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600424 if (ACPI_FAILURE(status))
425 return TOS_FAILURE;
426
Azael Avalos84a62732014-03-25 20:38:29 -0600427 *out1 = out[2];
Azael Avalos893f3f62014-09-29 20:40:09 -0600428
429 return out[0];
Azael Avalos84a62732014-03-25 20:38:29 -0600430}
431
Azael Avalos893f3f62014-09-29 20:40:09 -0600432static u32 sci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
Azael Avalos84a62732014-03-25 20:38:29 -0600433{
Azael Avalos258c5902014-09-29 20:40:07 -0600434 u32 in[TCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 };
435 u32 out[TCI_WORDS];
436 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600437
438 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
Azael Avalos84a62732014-03-25 20:38:29 -0600439}
440
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200441/* Illumination support */
Seth Forshee135740d2011-09-20 16:55:49 -0500442static int toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200443{
Azael Avalos258c5902014-09-29 20:40:07 -0600444 u32 in[TCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 };
445 u32 out[TCI_WORDS];
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200446 acpi_status status;
447
Azael Avalosfdb79082014-03-25 20:38:30 -0600448 if (!sci_open(dev))
449 return 0;
450
Azael Avalos258c5902014-09-29 20:40:07 -0600451 status = tci_raw(dev, in, out);
Azael Avalosfdb79082014-03-25 20:38:30 -0600452 sci_close(dev);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600453 if (ACPI_FAILURE(status) || out[0] == TOS_FAILURE) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600454 pr_err("ACPI call to query Illumination support failed\n");
455 return 0;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600456 } else if (out[0] == TOS_NOT_SUPPORTED) {
Joe Perches7e334602011-03-29 15:21:52 -0700457 pr_info("Illumination device not available\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200458 return 0;
459 }
Azael Avalosfdb79082014-03-25 20:38:30 -0600460
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200461 return 1;
462}
463
464static void toshiba_illumination_set(struct led_classdev *cdev,
465 enum led_brightness brightness)
466{
Seth Forshee135740d2011-09-20 16:55:49 -0500467 struct toshiba_acpi_dev *dev = container_of(cdev,
468 struct toshiba_acpi_dev, led_dev);
Azael Avalosfdb79082014-03-25 20:38:30 -0600469 u32 state, result;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200470
471 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600472 if (!sci_open(dev))
473 return;
474
475 /* Switch the illumination on/off */
476 state = brightness ? 1 : 0;
Azael Avalos893f3f62014-09-29 20:40:09 -0600477 result = sci_write(dev, SCI_ILLUMINATION, state);
Azael Avalosfdb79082014-03-25 20:38:30 -0600478 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600479 if (result == TOS_FAILURE) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600480 pr_err("ACPI call for illumination failed\n");
481 return;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600482 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600483 pr_info("Illumination not supported\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200484 return;
485 }
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200486}
487
488static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
489{
Seth Forshee135740d2011-09-20 16:55:49 -0500490 struct toshiba_acpi_dev *dev = container_of(cdev,
491 struct toshiba_acpi_dev, led_dev);
Azael Avalosfdb79082014-03-25 20:38:30 -0600492 u32 state, result;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200493
494 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600495 if (!sci_open(dev))
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200496 return LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200497
498 /* Check the illumination */
Azael Avalos893f3f62014-09-29 20:40:09 -0600499 result = sci_read(dev, SCI_ILLUMINATION, &state);
Azael Avalosfdb79082014-03-25 20:38:30 -0600500 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600501 if (result == TOS_FAILURE || result == TOS_INPUT_DATA_ERROR) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600502 pr_err("ACPI call for illumination failed\n");
503 return LED_OFF;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600504 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600505 pr_info("Illumination not supported\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200506 return LED_OFF;
507 }
508
Azael Avalosfdb79082014-03-25 20:38:30 -0600509 return state ? LED_FULL : LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200510}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400511
Azael Avalos360f0f32014-03-25 20:38:31 -0600512/* KBD Illumination */
Azael Avalos93f8c162014-09-12 18:50:36 -0600513static int toshiba_kbd_illum_available(struct toshiba_acpi_dev *dev)
514{
Azael Avalos258c5902014-09-29 20:40:07 -0600515 u32 in[TCI_WORDS] = { SCI_GET, SCI_KBD_ILLUM_STATUS, 0, 0, 0, 0 };
516 u32 out[TCI_WORDS];
Azael Avalos93f8c162014-09-12 18:50:36 -0600517 acpi_status status;
518
519 if (!sci_open(dev))
520 return 0;
521
Azael Avalos258c5902014-09-29 20:40:07 -0600522 status = tci_raw(dev, in, out);
Azael Avalos93f8c162014-09-12 18:50:36 -0600523 sci_close(dev);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600524 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalos93f8c162014-09-12 18:50:36 -0600525 pr_err("ACPI call to query kbd illumination support failed\n");
526 return 0;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600527 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalos93f8c162014-09-12 18:50:36 -0600528 pr_info("Keyboard illumination not available\n");
529 return 0;
530 }
531
532 /* Check for keyboard backlight timeout max value,
533 * previous kbd backlight implementation set this to
534 * 0x3c0003, and now the new implementation set this
535 * to 0x3c001a, use this to distinguish between them
536 */
537 if (out[3] == SCI_KBD_TIME_MAX)
538 dev->kbd_type = 2;
539 else
540 dev->kbd_type = 1;
541 /* Get the current keyboard backlight mode */
542 dev->kbd_mode = out[2] & SCI_KBD_MODE_MASK;
543 /* Get the current time (1-60 seconds) */
544 dev->kbd_time = out[2] >> HCI_MISC_SHIFT;
545
546 return 1;
547}
548
Azael Avalos360f0f32014-03-25 20:38:31 -0600549static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time)
550{
551 u32 result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600552
553 if (!sci_open(dev))
554 return -EIO;
555
Azael Avalos893f3f62014-09-29 20:40:09 -0600556 result = sci_write(dev, SCI_KBD_ILLUM_STATUS, time);
Azael Avalos360f0f32014-03-25 20:38:31 -0600557 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600558 if (result == TOS_FAILURE || result == TOS_INPUT_DATA_ERROR) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600559 pr_err("ACPI call to set KBD backlight status failed\n");
560 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600561 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600562 pr_info("Keyboard backlight status not supported\n");
563 return -ENODEV;
564 }
565
566 return 0;
567}
568
569static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time)
570{
571 u32 result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600572
573 if (!sci_open(dev))
574 return -EIO;
575
Azael Avalos893f3f62014-09-29 20:40:09 -0600576 result = sci_read(dev, SCI_KBD_ILLUM_STATUS, time);
Azael Avalos360f0f32014-03-25 20:38:31 -0600577 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600578 if (result == TOS_FAILURE || result == TOS_INPUT_DATA_ERROR) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600579 pr_err("ACPI call to get KBD backlight status failed\n");
580 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600581 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600582 pr_info("Keyboard backlight status not supported\n");
583 return -ENODEV;
584 }
585
586 return 0;
587}
588
589static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev)
590{
591 struct toshiba_acpi_dev *dev = container_of(cdev,
592 struct toshiba_acpi_dev, kbd_led);
593 u32 state, result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600594
595 /* Check the keyboard backlight state */
Azael Avalos893f3f62014-09-29 20:40:09 -0600596 result = hci_read1(dev, HCI_KBD_ILLUMINATION, &state);
597 if (result == TOS_FAILURE || result == TOS_INPUT_DATA_ERROR) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600598 pr_err("ACPI call to get the keyboard backlight failed\n");
599 return LED_OFF;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600600 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600601 pr_info("Keyboard backlight not supported\n");
602 return LED_OFF;
603 }
604
605 return state ? LED_FULL : LED_OFF;
606}
607
608static void toshiba_kbd_backlight_set(struct led_classdev *cdev,
609 enum led_brightness brightness)
610{
611 struct toshiba_acpi_dev *dev = container_of(cdev,
612 struct toshiba_acpi_dev, kbd_led);
613 u32 state, result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600614
615 /* Set the keyboard backlight state */
616 state = brightness ? 1 : 0;
Azael Avalos893f3f62014-09-29 20:40:09 -0600617 result = hci_write1(dev, HCI_KBD_ILLUMINATION, state);
618 if (result == TOS_FAILURE || result == TOS_INPUT_DATA_ERROR) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600619 pr_err("ACPI call to set KBD Illumination mode failed\n");
620 return;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600621 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600622 pr_info("Keyboard backlight not supported\n");
623 return;
624 }
625}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400626
Azael Avalos9d8658a2014-03-25 20:38:32 -0600627/* TouchPad support */
628static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state)
629{
630 u32 result;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600631
632 if (!sci_open(dev))
633 return -EIO;
634
Azael Avalos893f3f62014-09-29 20:40:09 -0600635 result = sci_write(dev, SCI_TOUCHPAD, state);
Azael Avalos9d8658a2014-03-25 20:38:32 -0600636 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600637 if (result == TOS_FAILURE) {
Azael Avalos9d8658a2014-03-25 20:38:32 -0600638 pr_err("ACPI call to set the touchpad failed\n");
639 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600640 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos9d8658a2014-03-25 20:38:32 -0600641 return -ENODEV;
642 }
643
644 return 0;
645}
646
647static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state)
648{
649 u32 result;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600650
651 if (!sci_open(dev))
652 return -EIO;
653
Azael Avalos893f3f62014-09-29 20:40:09 -0600654 result = sci_read(dev, SCI_TOUCHPAD, state);
Azael Avalos9d8658a2014-03-25 20:38:32 -0600655 sci_close(dev);
Azael Avalos893f3f62014-09-29 20:40:09 -0600656 if (result == TOS_FAILURE) {
Azael Avalos9d8658a2014-03-25 20:38:32 -0600657 pr_err("ACPI call to query the touchpad failed\n");
658 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600659 } else if (result == TOS_NOT_SUPPORTED) {
Azael Avalos9d8658a2014-03-25 20:38:32 -0600660 return -ENODEV;
661 }
662
663 return 0;
664}
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200665
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600666/* Eco Mode support */
667static int toshiba_eco_mode_available(struct toshiba_acpi_dev *dev)
668{
669 acpi_status status;
Azael Avalos258c5902014-09-29 20:40:07 -0600670 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
671 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600672
Azael Avalos258c5902014-09-29 20:40:07 -0600673 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600674 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600675 pr_info("ACPI call to get ECO led failed\n");
676 return 0;
677 }
678
679 return 1;
680}
681
682static enum led_brightness toshiba_eco_mode_get_status(struct led_classdev *cdev)
683{
684 struct toshiba_acpi_dev *dev = container_of(cdev,
685 struct toshiba_acpi_dev, eco_led);
Azael Avalos258c5902014-09-29 20:40:07 -0600686 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
687 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600688 acpi_status status;
689
Azael Avalos258c5902014-09-29 20:40:07 -0600690 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600691 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600692 pr_err("ACPI call to get ECO led failed\n");
693 return LED_OFF;
694 }
695
696 return out[2] ? LED_FULL : LED_OFF;
697}
698
699static void toshiba_eco_mode_set_status(struct led_classdev *cdev,
700 enum led_brightness brightness)
701{
702 struct toshiba_acpi_dev *dev = container_of(cdev,
703 struct toshiba_acpi_dev, eco_led);
Azael Avalos258c5902014-09-29 20:40:07 -0600704 u32 in[TCI_WORDS] = { HCI_SET, HCI_ECO_MODE, 0, 1, 0, 0 };
705 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600706 acpi_status status;
707
708 /* Switch the Eco Mode led on/off */
709 in[2] = (brightness) ? 1 : 0;
Azael Avalos258c5902014-09-29 20:40:07 -0600710 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600711 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600712 pr_err("ACPI call to set ECO led failed\n");
713 return;
714 }
715}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400716
Azael Avalos5a2813e2014-03-25 20:38:34 -0600717/* Accelerometer support */
718static int toshiba_accelerometer_supported(struct toshiba_acpi_dev *dev)
719{
Azael Avalos258c5902014-09-29 20:40:07 -0600720 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER2, 0, 0, 0, 0 };
721 u32 out[TCI_WORDS];
Azael Avalos5a2813e2014-03-25 20:38:34 -0600722 acpi_status status;
723
724 /* Check if the accelerometer call exists,
725 * this call also serves as initialization
726 */
Azael Avalos258c5902014-09-29 20:40:07 -0600727 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600728 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalos5a2813e2014-03-25 20:38:34 -0600729 pr_err("ACPI call to query the accelerometer failed\n");
730 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600731 } else if (out[0] == TOS_DATA_NOT_AVAILABLE ||
732 out[0] == TOS_NOT_INITIALIZED) {
Azael Avalos5a2813e2014-03-25 20:38:34 -0600733 pr_err("Accelerometer not initialized\n");
734 return -EIO;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600735 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalos5a2813e2014-03-25 20:38:34 -0600736 pr_info("Accelerometer not supported\n");
737 return -ENODEV;
738 }
739
740 return 0;
741}
742
743static int toshiba_accelerometer_get(struct toshiba_acpi_dev *dev,
744 u32 *xy, u32 *z)
745{
Azael Avalos258c5902014-09-29 20:40:07 -0600746 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER, 0, 1, 0, 0 };
747 u32 out[TCI_WORDS];
Azael Avalos5a2813e2014-03-25 20:38:34 -0600748 acpi_status status;
749
750 /* Check the Accelerometer status */
Azael Avalos258c5902014-09-29 20:40:07 -0600751 status = tci_raw(dev, in, out);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600752 if (ACPI_FAILURE(status) || out[0] == TOS_INPUT_DATA_ERROR) {
Azael Avalos5a2813e2014-03-25 20:38:34 -0600753 pr_err("ACPI call to query the accelerometer failed\n");
754 return -EIO;
755 }
756
757 *xy = out[2];
758 *z = out[4];
759
760 return 0;
761}
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600762
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400763/* Bluetooth rfkill handlers */
764
Seth Forshee135740d2011-09-20 16:55:49 -0500765static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400766{
767 u32 hci_result;
768 u32 value, value2;
769
770 value = 0;
771 value2 = 0;
Azael Avalos893f3f62014-09-29 20:40:09 -0600772 hci_result = hci_read2(dev, HCI_WIRELESS, &value, &value2);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600773 if (hci_result == TOS_SUCCESS)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400774 *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false;
775
776 return hci_result;
777}
778
Seth Forshee135740d2011-09-20 16:55:49 -0500779static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400780{
781 u32 hci_result;
782 u32 value, value2;
783
784 value = 0;
785 value2 = 0x0001;
Azael Avalos893f3f62014-09-29 20:40:09 -0600786 hci_result = hci_read2(dev, HCI_WIRELESS, &value, &value2);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400787
788 *radio_state = value & HCI_WIRELESS_KILL_SWITCH;
789 return hci_result;
790}
791
Johannes Berg19d337d2009-06-02 13:01:37 +0200792static int bt_rfkill_set_block(void *data, bool blocked)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400793{
Johannes Berg19d337d2009-06-02 13:01:37 +0200794 struct toshiba_acpi_dev *dev = data;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400795 u32 result1, result2;
796 u32 value;
Johannes Berg19d337d2009-06-02 13:01:37 +0200797 int err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400798 bool radio_state;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400799
Johannes Berg19d337d2009-06-02 13:01:37 +0200800 value = (blocked == false);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400801
802 mutex_lock(&dev->mutex);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600803 if (hci_get_radio_state(dev, &radio_state) != TOS_SUCCESS) {
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500804 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200805 goto out;
806 }
807
808 if (!radio_state) {
809 err = 0;
810 goto out;
811 }
812
Azael Avalos893f3f62014-09-29 20:40:09 -0600813 result1 = hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER);
814 result2 = hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400815
Azael Avalos1864bbc2014-09-29 20:40:08 -0600816 if (result1 != TOS_SUCCESS || result2 != TOS_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500817 err = -EIO;
Johannes Berg19d337d2009-06-02 13:01:37 +0200818 else
819 err = 0;
820 out:
821 mutex_unlock(&dev->mutex);
822 return err;
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400823}
824
Johannes Berg19d337d2009-06-02 13:01:37 +0200825static void bt_rfkill_poll(struct rfkill *rfkill, void *data)
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400826{
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400827 bool new_rfk_state;
828 bool value;
829 u32 hci_result;
Johannes Berg19d337d2009-06-02 13:01:37 +0200830 struct toshiba_acpi_dev *dev = data;
831
832 mutex_lock(&dev->mutex);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400833
Seth Forshee135740d2011-09-20 16:55:49 -0500834 hci_result = hci_get_radio_state(dev, &value);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600835 if (hci_result != TOS_SUCCESS) {
Johannes Berg19d337d2009-06-02 13:01:37 +0200836 /* Can't do anything useful */
837 mutex_unlock(&dev->mutex);
Jiri Slaby82e77842009-08-06 15:57:51 -0700838 return;
Johannes Berg19d337d2009-06-02 13:01:37 +0200839 }
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400840
841 new_rfk_state = value;
842
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400843 mutex_unlock(&dev->mutex);
844
Johannes Berg19d337d2009-06-02 13:01:37 +0200845 if (rfkill_set_hw_state(rfkill, !new_rfk_state))
846 bt_rfkill_set_block(data, true);
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400847}
848
Johannes Berg19d337d2009-06-02 13:01:37 +0200849static const struct rfkill_ops toshiba_rfk_ops = {
850 .set_block = bt_rfkill_set_block,
851 .poll = bt_rfkill_poll,
852};
853
Akio Idehara121b7b02012-04-06 01:46:43 +0900854static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled)
855{
856 u32 hci_result;
857 u32 status;
858
Azael Avalos893f3f62014-09-29 20:40:09 -0600859 hci_result = hci_read1(dev, HCI_TR_BACKLIGHT, &status);
Akio Idehara121b7b02012-04-06 01:46:43 +0900860 *enabled = !status;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600861 return hci_result == TOS_SUCCESS ? 0 : -EIO;
Akio Idehara121b7b02012-04-06 01:46:43 +0900862}
863
864static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable)
865{
866 u32 hci_result;
867 u32 value = !enable;
868
Azael Avalos893f3f62014-09-29 20:40:09 -0600869 hci_result = hci_write1(dev, HCI_TR_BACKLIGHT, value);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600870 return hci_result == TOS_SUCCESS ? 0 : -EIO;
Akio Idehara121b7b02012-04-06 01:46:43 +0900871}
872
Len Brown4be44fc2005-08-05 00:44:28 -0400873static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Seth Forshee62cce752012-04-19 11:23:50 -0500875static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 u32 hci_result;
878 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900879 int brightness = 0;
880
881 if (dev->tr_backlight_supported) {
882 bool enabled;
883 int ret = get_tr_backlight_status(dev, &enabled);
884 if (ret)
885 return ret;
886 if (enabled)
887 return 0;
888 brightness++;
889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Azael Avalos893f3f62014-09-29 20:40:09 -0600891 hci_result = hci_read1(dev, HCI_LCD_BRIGHTNESS, &value);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600892 if (hci_result == TOS_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +0900893 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500894
895 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700896}
897
Seth Forshee62cce752012-04-19 11:23:50 -0500898static int get_lcd_brightness(struct backlight_device *bd)
899{
900 struct toshiba_acpi_dev *dev = bl_get_data(bd);
901 return __get_lcd_brightness(dev);
902}
903
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800904static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -0700905{
Seth Forshee135740d2011-09-20 16:55:49 -0500906 struct toshiba_acpi_dev *dev = m->private;
907 int value;
Akio Idehara121b7b02012-04-06 01:46:43 +0900908 int levels;
Holger Machtc9263552006-10-20 14:30:29 -0700909
Seth Forshee135740d2011-09-20 16:55:49 -0500910 if (!dev->backlight_dev)
911 return -ENODEV;
912
Akio Idehara121b7b02012-04-06 01:46:43 +0900913 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -0500914 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -0700915 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800916 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +0900917 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500921 pr_err("Error reading LCD brightness\n");
922 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800923}
924
925static int lcd_proc_open(struct inode *inode, struct file *file)
926{
Al Virod9dda782013-03-31 18:16:14 -0400927 return single_open(file, lcd_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Seth Forshee62cce752012-04-19 11:23:50 -0500930static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -0700931{
Azael Avalosa39f46d2014-11-24 19:29:36 -0700932 u32 hci_result;
Holger Machtc9263552006-10-20 14:30:29 -0700933
Akio Idehara121b7b02012-04-06 01:46:43 +0900934 if (dev->tr_backlight_supported) {
935 bool enable = !value;
936 int ret = set_tr_backlight_status(dev, enable);
937 if (ret)
938 return ret;
939 if (value)
940 value--;
941 }
942
Azael Avalosa39f46d2014-11-24 19:29:36 -0700943 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
944 hci_result = hci_write1(dev, HCI_LCD_BRIGHTNESS, value);
945 return hci_result == TOS_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -0700946}
947
948static int set_lcd_status(struct backlight_device *bd)
949{
Seth Forshee135740d2011-09-20 16:55:49 -0500950 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Seth Forshee62cce752012-04-19 11:23:50 -0500951 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -0700952}
953
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800954static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
955 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Al Virod9dda782013-03-31 18:16:14 -0400957 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800958 char cmd[42];
959 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 int value;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800961 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +0900962 int levels = dev->backlight_dev->props.max_brightness + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800964 len = min(count, sizeof(cmd) - 1);
965 if (copy_from_user(cmd, buf, len))
966 return -EFAULT;
967 cmd[len] = '\0';
968
969 if (sscanf(cmd, " brightness : %i", &value) == 1 &&
Akio Idehara121b7b02012-04-06 01:46:43 +0900970 value >= 0 && value < levels) {
Seth Forshee62cce752012-04-19 11:23:50 -0500971 ret = set_lcd_brightness(dev, value);
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800972 if (ret == 0)
973 ret = count;
974 } else {
Holger Machtc9263552006-10-20 14:30:29 -0700975 ret = -EINVAL;
Matthijs van Otterdijkc8af57e2007-01-05 16:37:03 -0800976 }
Holger Machtc9263552006-10-20 14:30:29 -0700977 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800980static const struct file_operations lcd_proc_fops = {
981 .owner = THIS_MODULE,
982 .open = lcd_proc_open,
983 .read = seq_read,
984 .llseek = seq_lseek,
985 .release = single_release,
986 .write = lcd_proc_write,
987};
988
Seth Forshee36d03f92011-09-20 16:55:53 -0500989static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
990{
991 u32 hci_result;
992
Azael Avalos893f3f62014-09-29 20:40:09 -0600993 hci_result = hci_read1(dev, HCI_VIDEO_OUT, status);
Azael Avalos1864bbc2014-09-29 20:40:08 -0600994 return hci_result == TOS_SUCCESS ? 0 : -EIO;
Seth Forshee36d03f92011-09-20 16:55:53 -0500995}
996
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -0800997static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Seth Forshee135740d2011-09-20 16:55:49 -0500999 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 u32 value;
Seth Forshee36d03f92011-09-20 16:55:53 -05001001 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Seth Forshee36d03f92011-09-20 16:55:53 -05001003 ret = get_video_status(dev, &value);
1004 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
1006 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001007 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001008 seq_printf(m, "lcd_out: %d\n", is_lcd);
1009 seq_printf(m, "crt_out: %d\n", is_crt);
1010 seq_printf(m, "tv_out: %d\n", is_tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
1012
Seth Forshee36d03f92011-09-20 16:55:53 -05001013 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001016static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Al Virod9dda782013-03-31 18:16:14 -04001018 return single_open(file, video_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001019}
1020
1021static ssize_t video_proc_write(struct file *file, const char __user *buf,
1022 size_t count, loff_t *pos)
1023{
Al Virod9dda782013-03-31 18:16:14 -04001024 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001025 char *cmd, *buffer;
Seth Forshee36d03f92011-09-20 16:55:53 -05001026 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 int value;
1028 int remain = count;
1029 int lcd_out = -1;
1030 int crt_out = -1;
1031 int tv_out = -1;
Al Virob4482a42007-10-14 19:35:40 +01001032 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001034 cmd = kmalloc(count + 1, GFP_KERNEL);
1035 if (!cmd)
1036 return -ENOMEM;
1037 if (copy_from_user(cmd, buf, count)) {
1038 kfree(cmd);
1039 return -EFAULT;
1040 }
1041 cmd[count] = '\0';
1042
1043 buffer = cmd;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* scan expression. Multiple expressions may be delimited with ;
1046 *
1047 * NOTE: to keep scanning simple, invalid fields are ignored
1048 */
1049 while (remain) {
1050 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
1051 lcd_out = value & 1;
1052 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
1053 crt_out = value & 1;
1054 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
1055 tv_out = value & 1;
1056 /* advance to one character past the next ; */
1057 do {
1058 ++buffer;
1059 --remain;
1060 }
Len Brown4be44fc2005-08-05 00:44:28 -04001061 while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001064 kfree(cmd);
1065
Seth Forshee36d03f92011-09-20 16:55:53 -05001066 ret = get_video_status(dev, &video_out);
1067 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -07001068 unsigned int new_video_out = video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (lcd_out != -1)
1070 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
1071 if (crt_out != -1)
1072 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
1073 if (tv_out != -1)
1074 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
1075 /* To avoid unnecessary video disruption, only write the new
1076 * video setting if something changed. */
1077 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001078 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
1080
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001081 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001084static const struct file_operations video_proc_fops = {
1085 .owner = THIS_MODULE,
1086 .open = video_proc_open,
1087 .read = seq_read,
1088 .llseek = seq_lseek,
1089 .release = single_release,
1090 .write = video_proc_write,
1091};
1092
Seth Forshee36d03f92011-09-20 16:55:53 -05001093static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
1094{
1095 u32 hci_result;
1096
Azael Avalos893f3f62014-09-29 20:40:09 -06001097 hci_result = hci_read1(dev, HCI_FAN, status);
Azael Avalos1864bbc2014-09-29 20:40:08 -06001098 return hci_result == TOS_SUCCESS ? 0 : -EIO;
Seth Forshee36d03f92011-09-20 16:55:53 -05001099}
1100
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001101static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Seth Forshee135740d2011-09-20 16:55:49 -05001103 struct toshiba_acpi_dev *dev = m->private;
Seth Forshee36d03f92011-09-20 16:55:53 -05001104 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 u32 value;
1106
Seth Forshee36d03f92011-09-20 16:55:53 -05001107 ret = get_fan_status(dev, &value);
1108 if (!ret) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001109 seq_printf(m, "running: %d\n", (value > 0));
Seth Forshee135740d2011-09-20 16:55:49 -05001110 seq_printf(m, "force_on: %d\n", dev->force_fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112
Seth Forshee36d03f92011-09-20 16:55:53 -05001113 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001116static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Al Virod9dda782013-03-31 18:16:14 -04001118 return single_open(file, fan_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001119}
1120
1121static ssize_t fan_proc_write(struct file *file, const char __user *buf,
1122 size_t count, loff_t *pos)
1123{
Al Virod9dda782013-03-31 18:16:14 -04001124 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001125 char cmd[42];
1126 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 int value;
1128 u32 hci_result;
1129
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001130 len = min(count, sizeof(cmd) - 1);
1131 if (copy_from_user(cmd, buf, len))
1132 return -EFAULT;
1133 cmd[len] = '\0';
1134
1135 if (sscanf(cmd, " force_on : %i", &value) == 1 &&
Len Brown4be44fc2005-08-05 00:44:28 -04001136 value >= 0 && value <= 1) {
Azael Avalos893f3f62014-09-29 20:40:09 -06001137 hci_result = hci_write1(dev, HCI_FAN, value);
Azael Avalos1864bbc2014-09-29 20:40:08 -06001138 if (hci_result != TOS_SUCCESS)
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001139 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 else
Seth Forshee135740d2011-09-20 16:55:49 -05001141 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 } else {
1143 return -EINVAL;
1144 }
1145
1146 return count;
1147}
1148
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001149static const struct file_operations fan_proc_fops = {
1150 .owner = THIS_MODULE,
1151 .open = fan_proc_open,
1152 .read = seq_read,
1153 .llseek = seq_lseek,
1154 .release = single_release,
1155 .write = fan_proc_write,
1156};
1157
1158static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Seth Forshee135740d2011-09-20 16:55:49 -05001160 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 u32 hci_result;
1162 u32 value;
1163
Seth Forshee11948b92011-11-16 17:37:45 -06001164 if (!dev->key_event_valid && dev->system_event_supported) {
Azael Avalos893f3f62014-09-29 20:40:09 -06001165 hci_result = hci_read1(dev, HCI_SYSTEM_EVENT, &value);
Azael Avalos1864bbc2014-09-29 20:40:08 -06001166 if (hci_result == TOS_SUCCESS) {
Seth Forshee135740d2011-09-20 16:55:49 -05001167 dev->key_event_valid = 1;
1168 dev->last_key_event = value;
Azael Avalos1864bbc2014-09-29 20:40:08 -06001169 } else if (hci_result == TOS_FIFO_EMPTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /* better luck next time */
Azael Avalos1864bbc2014-09-29 20:40:08 -06001171 } else if (hci_result == TOS_NOT_SUPPORTED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /* This is a workaround for an unresolved issue on
1173 * some machines where system events sporadically
1174 * become disabled. */
Azael Avalos893f3f62014-09-29 20:40:09 -06001175 hci_result = hci_write1(dev, HCI_SYSTEM_EVENT, 1);
Joe Perches7e334602011-03-29 15:21:52 -07001176 pr_notice("Re-enabled hotkeys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 } else {
Joe Perches7e334602011-03-29 15:21:52 -07001178 pr_err("Error reading hotkey status\n");
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001179 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181 }
1182
Seth Forshee135740d2011-09-20 16:55:49 -05001183 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
1184 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001185 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001188static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Al Virod9dda782013-03-31 18:16:14 -04001190 return single_open(file, keys_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001191}
1192
1193static ssize_t keys_proc_write(struct file *file, const char __user *buf,
1194 size_t count, loff_t *pos)
1195{
Al Virod9dda782013-03-31 18:16:14 -04001196 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001197 char cmd[42];
1198 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 int value;
1200
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001201 len = min(count, sizeof(cmd) - 1);
1202 if (copy_from_user(cmd, buf, len))
1203 return -EFAULT;
1204 cmd[len] = '\0';
1205
1206 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) {
Seth Forshee135740d2011-09-20 16:55:49 -05001207 dev->key_event_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 } else {
1209 return -EINVAL;
1210 }
1211
1212 return count;
1213}
1214
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001215static const struct file_operations keys_proc_fops = {
1216 .owner = THIS_MODULE,
1217 .open = keys_proc_open,
1218 .read = seq_read,
1219 .llseek = seq_lseek,
1220 .release = single_release,
1221 .write = keys_proc_write,
1222};
1223
1224static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001226 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
1227 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
1228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001231static int version_proc_open(struct inode *inode, struct file *file)
1232{
Al Virod9dda782013-03-31 18:16:14 -04001233 return single_open(file, version_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001234}
1235
1236static const struct file_operations version_proc_fops = {
1237 .owner = THIS_MODULE,
1238 .open = version_proc_open,
1239 .read = seq_read,
1240 .llseek = seq_lseek,
1241 .release = single_release,
1242};
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/* proc and module init
1245 */
1246
1247#define PROC_TOSHIBA "toshiba"
1248
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001249static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Seth Forshee36d03f92011-09-20 16:55:53 -05001251 if (dev->backlight_dev)
1252 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1253 &lcd_proc_fops, dev);
1254 if (dev->video_supported)
1255 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1256 &video_proc_fops, dev);
1257 if (dev->fan_supported)
1258 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1259 &fan_proc_fops, dev);
1260 if (dev->hotkey_dev)
1261 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1262 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001263 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
1264 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Seth Forshee36d03f92011-09-20 16:55:53 -05001267static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Seth Forshee36d03f92011-09-20 16:55:53 -05001269 if (dev->backlight_dev)
1270 remove_proc_entry("lcd", toshiba_proc_dir);
1271 if (dev->video_supported)
1272 remove_proc_entry("video", toshiba_proc_dir);
1273 if (dev->fan_supported)
1274 remove_proc_entry("fan", toshiba_proc_dir);
1275 if (dev->hotkey_dev)
1276 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001277 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Lionel Debrouxacc24722010-11-16 14:14:02 +01001280static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +09001281 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -05001282 .get_brightness = get_lcd_brightness,
1283 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -07001284};
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001285
Azael Avalos360f0f32014-03-25 20:38:31 -06001286/*
1287 * Sysfs files
1288 */
Azael Avalos93f8c162014-09-12 18:50:36 -06001289static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
1290 struct device_attribute *attr,
1291 const char *buf, size_t count);
1292static ssize_t toshiba_kbd_bl_mode_show(struct device *dev,
1293 struct device_attribute *attr,
1294 char *buf);
1295static ssize_t toshiba_kbd_type_show(struct device *dev,
1296 struct device_attribute *attr,
1297 char *buf);
1298static ssize_t toshiba_available_kbd_modes_show(struct device *dev,
1299 struct device_attribute *attr,
1300 char *buf);
1301static ssize_t toshiba_kbd_bl_timeout_store(struct device *dev,
1302 struct device_attribute *attr,
1303 const char *buf, size_t count);
1304static ssize_t toshiba_kbd_bl_timeout_show(struct device *dev,
1305 struct device_attribute *attr,
1306 char *buf);
1307static ssize_t toshiba_touchpad_store(struct device *dev,
1308 struct device_attribute *attr,
1309 const char *buf, size_t count);
1310static ssize_t toshiba_touchpad_show(struct device *dev,
1311 struct device_attribute *attr,
1312 char *buf);
1313static ssize_t toshiba_position_show(struct device *dev,
1314 struct device_attribute *attr,
1315 char *buf);
1316
1317static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR,
1318 toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store);
1319static DEVICE_ATTR(kbd_type, S_IRUGO, toshiba_kbd_type_show, NULL);
1320static DEVICE_ATTR(available_kbd_modes, S_IRUGO,
1321 toshiba_available_kbd_modes_show, NULL);
1322static DEVICE_ATTR(kbd_backlight_timeout, S_IRUGO | S_IWUSR,
1323 toshiba_kbd_bl_timeout_show, toshiba_kbd_bl_timeout_store);
1324static DEVICE_ATTR(touchpad, S_IRUGO | S_IWUSR,
1325 toshiba_touchpad_show, toshiba_touchpad_store);
1326static DEVICE_ATTR(position, S_IRUGO, toshiba_position_show, NULL);
1327
1328static struct attribute *toshiba_attributes[] = {
1329 &dev_attr_kbd_backlight_mode.attr,
1330 &dev_attr_kbd_type.attr,
1331 &dev_attr_available_kbd_modes.attr,
1332 &dev_attr_kbd_backlight_timeout.attr,
1333 &dev_attr_touchpad.attr,
1334 &dev_attr_position.attr,
1335 NULL,
1336};
1337
1338static umode_t toshiba_sysfs_is_visible(struct kobject *,
1339 struct attribute *, int);
1340
1341static struct attribute_group toshiba_attr_group = {
1342 .is_visible = toshiba_sysfs_is_visible,
1343 .attrs = toshiba_attributes,
1344};
Azael Avalos360f0f32014-03-25 20:38:31 -06001345
1346static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
1347 struct device_attribute *attr,
1348 const char *buf, size_t count)
1349{
1350 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
Dan Carpenteraeaac092014-09-03 14:44:37 +03001351 int mode;
1352 int time;
1353 int ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001354
Dan Carpenteraeaac092014-09-03 14:44:37 +03001355
1356 ret = kstrtoint(buf, 0, &mode);
1357 if (ret)
1358 return ret;
Azael Avalos93f8c162014-09-12 18:50:36 -06001359
1360 /* Check for supported modes depending on keyboard backlight type */
1361 if (toshiba->kbd_type == 1) {
1362 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1363 if (mode != SCI_KBD_MODE_FNZ && mode != SCI_KBD_MODE_AUTO)
1364 return -EINVAL;
1365 } else if (toshiba->kbd_type == 2) {
1366 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1367 if (mode != SCI_KBD_MODE_AUTO && mode != SCI_KBD_MODE_ON &&
1368 mode != SCI_KBD_MODE_OFF)
1369 return -EINVAL;
1370 }
Azael Avalos360f0f32014-03-25 20:38:31 -06001371
1372 /* Set the Keyboard Backlight Mode where:
Azael Avalos360f0f32014-03-25 20:38:31 -06001373 * Auto - KBD backlight turns off automatically in given time
1374 * FN-Z - KBD backlight "toggles" when hotkey pressed
Azael Avalos93f8c162014-09-12 18:50:36 -06001375 * ON - KBD backlight is always on
1376 * OFF - KBD backlight is always off
Azael Avalos360f0f32014-03-25 20:38:31 -06001377 */
Azael Avalos93f8c162014-09-12 18:50:36 -06001378
1379 /* Only make a change if the actual mode has changed */
Dan Carpenteraeaac092014-09-03 14:44:37 +03001380 if (toshiba->kbd_mode != mode) {
Azael Avalos93f8c162014-09-12 18:50:36 -06001381 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
Azael Avalos360f0f32014-03-25 20:38:31 -06001382 time = toshiba->kbd_time << HCI_MISC_SHIFT;
Azael Avalos93f8c162014-09-12 18:50:36 -06001383
1384 /* OR the "base time" to the actual method format */
1385 if (toshiba->kbd_type == 1) {
1386 /* Type 1 requires the current mode */
1387 time |= toshiba->kbd_mode;
1388 } else if (toshiba->kbd_type == 2) {
1389 /* Type 2 requires the desired mode */
1390 time |= mode;
1391 }
1392
Dan Carpenteraeaac092014-09-03 14:44:37 +03001393 ret = toshiba_kbd_illum_status_set(toshiba, time);
1394 if (ret)
1395 return ret;
Azael Avalos93f8c162014-09-12 18:50:36 -06001396
1397 /* Update sysfs entries on successful mode change*/
1398 ret = sysfs_update_group(&toshiba->acpi_dev->dev.kobj,
1399 &toshiba_attr_group);
1400 if (ret)
1401 return ret;
1402
Azael Avalos360f0f32014-03-25 20:38:31 -06001403 toshiba->kbd_mode = mode;
1404 }
1405
1406 return count;
1407}
1408
1409static ssize_t toshiba_kbd_bl_mode_show(struct device *dev,
1410 struct device_attribute *attr,
1411 char *buf)
1412{
1413 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1414 u32 time;
1415
1416 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1417 return -EIO;
1418
Azael Avalos93f8c162014-09-12 18:50:36 -06001419 return sprintf(buf, "%i\n", time & SCI_KBD_MODE_MASK);
1420}
1421
1422static ssize_t toshiba_kbd_type_show(struct device *dev,
1423 struct device_attribute *attr,
1424 char *buf)
1425{
1426 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1427
1428 return sprintf(buf, "%d\n", toshiba->kbd_type);
1429}
1430
1431static ssize_t toshiba_available_kbd_modes_show(struct device *dev,
1432 struct device_attribute *attr,
1433 char *buf)
1434{
1435 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1436
1437 if (toshiba->kbd_type == 1)
1438 return sprintf(buf, "%x %x\n",
1439 SCI_KBD_MODE_FNZ, SCI_KBD_MODE_AUTO);
1440
1441 return sprintf(buf, "%x %x %x\n",
1442 SCI_KBD_MODE_AUTO, SCI_KBD_MODE_ON, SCI_KBD_MODE_OFF);
Azael Avalos360f0f32014-03-25 20:38:31 -06001443}
1444
1445static ssize_t toshiba_kbd_bl_timeout_store(struct device *dev,
1446 struct device_attribute *attr,
1447 const char *buf, size_t count)
1448{
1449 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
Azael Avaloseabde0f2014-10-04 12:02:21 -06001450 int time;
1451 int ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001452
Azael Avaloseabde0f2014-10-04 12:02:21 -06001453 ret = kstrtoint(buf, 0, &time);
1454 if (ret)
1455 return ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001456
Azael Avaloseabde0f2014-10-04 12:02:21 -06001457 /* Check for supported values depending on kbd_type */
1458 if (toshiba->kbd_type == 1) {
1459 if (time < 0 || time > 60)
1460 return -EINVAL;
1461 } else if (toshiba->kbd_type == 2) {
1462 if (time < 1 || time > 60)
1463 return -EINVAL;
1464 }
1465
1466 /* Set the Keyboard Backlight Timeout */
1467
1468 /* Only make a change if the actual timeout has changed */
1469 if (toshiba->kbd_time != time) {
1470 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
Azael Avalos360f0f32014-03-25 20:38:31 -06001471 time = time << HCI_MISC_SHIFT;
Azael Avaloseabde0f2014-10-04 12:02:21 -06001472 /* OR the "base time" to the actual method format */
1473 if (toshiba->kbd_type == 1)
1474 time |= SCI_KBD_MODE_FNZ;
1475 else if (toshiba->kbd_type == 2)
1476 time |= SCI_KBD_MODE_AUTO;
1477
1478 ret = toshiba_kbd_illum_status_set(toshiba, time);
1479 if (ret)
1480 return ret;
1481
Azael Avalos360f0f32014-03-25 20:38:31 -06001482 toshiba->kbd_time = time >> HCI_MISC_SHIFT;
1483 }
1484
1485 return count;
1486}
1487
1488static ssize_t toshiba_kbd_bl_timeout_show(struct device *dev,
1489 struct device_attribute *attr,
1490 char *buf)
1491{
1492 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1493 u32 time;
1494
1495 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1496 return -EIO;
1497
1498 return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT);
1499}
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001500
Azael Avalos9d8658a2014-03-25 20:38:32 -06001501static ssize_t toshiba_touchpad_store(struct device *dev,
1502 struct device_attribute *attr,
1503 const char *buf, size_t count)
1504{
1505 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1506 int state;
Azael Avalosc8a41662014-09-10 21:01:57 -06001507 int ret;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001508
1509 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
Azael Avalosc8a41662014-09-10 21:01:57 -06001510 ret = kstrtoint(buf, 0, &state);
1511 if (ret)
1512 return ret;
1513 if (state != 0 && state != 1)
1514 return -EINVAL;
1515
1516 ret = toshiba_touchpad_set(toshiba, state);
1517 if (ret)
1518 return ret;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001519
1520 return count;
1521}
1522
1523static ssize_t toshiba_touchpad_show(struct device *dev,
1524 struct device_attribute *attr, char *buf)
1525{
1526 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1527 u32 state;
1528 int ret;
1529
1530 ret = toshiba_touchpad_get(toshiba, &state);
1531 if (ret < 0)
1532 return ret;
1533
1534 return sprintf(buf, "%i\n", state);
1535}
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001536
Azael Avalos5a2813e2014-03-25 20:38:34 -06001537static ssize_t toshiba_position_show(struct device *dev,
1538 struct device_attribute *attr, char *buf)
1539{
1540 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1541 u32 xyval, zval, tmp;
1542 u16 x, y, z;
1543 int ret;
1544
1545 xyval = zval = 0;
1546 ret = toshiba_accelerometer_get(toshiba, &xyval, &zval);
1547 if (ret < 0)
1548 return ret;
1549
1550 x = xyval & HCI_ACCEL_MASK;
1551 tmp = xyval >> HCI_MISC_SHIFT;
1552 y = tmp & HCI_ACCEL_MASK;
1553 z = zval & HCI_ACCEL_MASK;
1554
1555 return sprintf(buf, "%d %d %d\n", x, y, z);
1556}
Azael Avalos360f0f32014-03-25 20:38:31 -06001557
Azael Avalos360f0f32014-03-25 20:38:31 -06001558static umode_t toshiba_sysfs_is_visible(struct kobject *kobj,
1559 struct attribute *attr, int idx)
1560{
1561 struct device *dev = container_of(kobj, struct device, kobj);
1562 struct toshiba_acpi_dev *drv = dev_get_drvdata(dev);
1563 bool exists = true;
1564
1565 if (attr == &dev_attr_kbd_backlight_mode.attr)
1566 exists = (drv->kbd_illum_supported) ? true : false;
1567 else if (attr == &dev_attr_kbd_backlight_timeout.attr)
1568 exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001569 else if (attr == &dev_attr_touchpad.attr)
1570 exists = (drv->touchpad_supported) ? true : false;
Azael Avalos5a2813e2014-03-25 20:38:34 -06001571 else if (attr == &dev_attr_position.attr)
1572 exists = (drv->accelerometer_supported) ? true : false;
Azael Avalos360f0f32014-03-25 20:38:31 -06001573
1574 return exists ? attr->mode : 0;
1575}
1576
Azael Avalos1f28f292014-12-04 20:22:45 -07001577/*
1578 * Hotkeys
1579 */
1580static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev *dev)
1581{
1582 acpi_status status;
1583 u32 result;
1584
1585 status = acpi_evaluate_object(dev->acpi_dev->handle,
1586 "ENAB", NULL, NULL);
1587 if (ACPI_FAILURE(status))
1588 return -ENODEV;
1589
1590 result = hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE);
1591 if (result == TOS_FAILURE)
1592 return -EIO;
1593 else if (result == TOS_NOT_SUPPORTED)
1594 return -ENODEV;
1595
1596 return 0;
1597}
1598
Seth Forshee29cd2932012-01-18 13:44:09 -06001599static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
1600 struct serio *port)
1601{
Giedrius Statkevičius98280372014-10-18 02:57:20 +03001602 if (str & I8042_STR_AUXDATA)
Seth Forshee29cd2932012-01-18 13:44:09 -06001603 return false;
1604
1605 if (unlikely(data == 0xe0))
1606 return false;
1607
1608 if ((data & 0x7f) == TOS1900_FN_SCAN) {
1609 schedule_work(&toshiba_acpi->hotkey_work);
1610 return true;
1611 }
1612
1613 return false;
1614}
1615
1616static void toshiba_acpi_hotkey_work(struct work_struct *work)
1617{
1618 acpi_handle ec_handle = ec_get_handle();
1619 acpi_status status;
1620
1621 if (!ec_handle)
1622 return;
1623
1624 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
1625 if (ACPI_FAILURE(status))
1626 pr_err("ACPI NTFY method execution failed\n");
1627}
1628
1629/*
1630 * Returns hotkey scancode, or < 0 on failure.
1631 */
1632static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
1633{
Zhang Rui74facaf2013-09-03 08:32:15 +08001634 unsigned long long value;
Seth Forshee29cd2932012-01-18 13:44:09 -06001635 acpi_status status;
1636
Zhang Rui74facaf2013-09-03 08:32:15 +08001637 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
1638 NULL, &value);
1639 if (ACPI_FAILURE(status)) {
Seth Forshee29cd2932012-01-18 13:44:09 -06001640 pr_err("ACPI INFO method execution failed\n");
1641 return -EIO;
1642 }
1643
Zhang Rui74facaf2013-09-03 08:32:15 +08001644 return value;
Seth Forshee29cd2932012-01-18 13:44:09 -06001645}
1646
1647static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
1648 int scancode)
1649{
1650 if (scancode == 0x100)
1651 return;
1652
1653 /* act on key press; ignore key release */
1654 if (scancode & 0x80)
1655 return;
1656
1657 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
1658 pr_info("Unknown key %x\n", scancode);
1659}
1660
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001661static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001662{
Zhang Ruie2e19602013-09-03 08:32:06 +08001663 acpi_handle ec_handle;
Seth Forshee135740d2011-09-20 16:55:49 -05001664 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -06001665 u32 hci_result;
Takashi Iwaife808bfb2014-04-29 15:15:38 +02001666 const struct key_entry *keymap = toshiba_acpi_keymap;
Seth Forshee135740d2011-09-20 16:55:49 -05001667
Seth Forshee135740d2011-09-20 16:55:49 -05001668 dev->hotkey_dev = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -07001669 if (!dev->hotkey_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001670 return -ENOMEM;
Seth Forshee135740d2011-09-20 16:55:49 -05001671
1672 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -05001673 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -05001674 dev->hotkey_dev->id.bustype = BUS_HOST;
1675
Takashi Iwaife808bfb2014-04-29 15:15:38 +02001676 if (dmi_check_system(toshiba_alt_keymap_dmi))
1677 keymap = toshiba_acpi_alt_keymap;
1678 error = sparse_keymap_setup(dev->hotkey_dev, keymap, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05001679 if (error)
1680 goto err_free_dev;
1681
Seth Forshee29cd2932012-01-18 13:44:09 -06001682 /*
1683 * For some machines the SCI responsible for providing hotkey
1684 * notification doesn't fire. We can trigger the notification
1685 * whenever the Fn key is pressed using the NTFY method, if
1686 * supported, so if it's present set up an i8042 key filter
1687 * for this purpose.
1688 */
Seth Forshee29cd2932012-01-18 13:44:09 -06001689 ec_handle = ec_get_handle();
Zhang Ruie2e19602013-09-03 08:32:06 +08001690 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
Seth Forshee29cd2932012-01-18 13:44:09 -06001691 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
1692
1693 error = i8042_install_filter(toshiba_acpi_i8042_filter);
1694 if (error) {
1695 pr_err("Error installing key filter\n");
1696 goto err_free_keymap;
1697 }
1698
1699 dev->ntfy_supported = 1;
1700 }
1701
1702 /*
1703 * Determine hotkey query interface. Prefer using the INFO
1704 * method when it is available.
1705 */
Zhang Ruie2e19602013-09-03 08:32:06 +08001706 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
Seth Forshee29cd2932012-01-18 13:44:09 -06001707 dev->info_supported = 1;
Zhang Ruie2e19602013-09-03 08:32:06 +08001708 else {
Azael Avalos893f3f62014-09-29 20:40:09 -06001709 hci_result = hci_write1(dev, HCI_SYSTEM_EVENT, 1);
Azael Avalos1864bbc2014-09-29 20:40:08 -06001710 if (hci_result == TOS_SUCCESS)
Seth Forshee29cd2932012-01-18 13:44:09 -06001711 dev->system_event_supported = 1;
1712 }
1713
1714 if (!dev->info_supported && !dev->system_event_supported) {
1715 pr_warn("No hotkey query interface found\n");
1716 goto err_remove_filter;
1717 }
1718
Azael Avalos1f28f292014-12-04 20:22:45 -07001719 error = toshiba_acpi_enable_hotkeys(dev);
1720 if (error) {
Seth Forshee135740d2011-09-20 16:55:49 -05001721 pr_info("Unable to enable hotkeys\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001722 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001723 }
1724
1725 error = input_register_device(dev->hotkey_dev);
1726 if (error) {
1727 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06001728 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05001729 }
1730
1731 return 0;
1732
Seth Forshee29cd2932012-01-18 13:44:09 -06001733 err_remove_filter:
1734 if (dev->ntfy_supported)
1735 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05001736 err_free_keymap:
1737 sparse_keymap_free(dev->hotkey_dev);
1738 err_free_dev:
1739 input_free_device(dev->hotkey_dev);
1740 dev->hotkey_dev = NULL;
1741 return error;
1742}
1743
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001744static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
Seth Forshee62cce752012-04-19 11:23:50 -05001745{
1746 struct backlight_properties props;
1747 int brightness;
1748 int ret;
Akio Idehara121b7b02012-04-06 01:46:43 +09001749 bool enabled;
Seth Forshee62cce752012-04-19 11:23:50 -05001750
1751 /*
1752 * Some machines don't support the backlight methods at all, and
1753 * others support it read-only. Either of these is pretty useless,
1754 * so only register the backlight device if the backlight method
1755 * supports both reads and writes.
1756 */
1757 brightness = __get_lcd_brightness(dev);
1758 if (brightness < 0)
1759 return 0;
1760 ret = set_lcd_brightness(dev, brightness);
1761 if (ret) {
1762 pr_debug("Backlight method is read-only, disabling backlight support\n");
1763 return 0;
1764 }
1765
Akio Idehara121b7b02012-04-06 01:46:43 +09001766 /* Determine whether or not BIOS supports transflective backlight */
1767 ret = get_tr_backlight_status(dev, &enabled);
1768 dev->tr_backlight_supported = !ret;
1769
Matthew Garrett53039f22012-06-01 11:02:36 -04001770 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05001771 props.type = BACKLIGHT_PLATFORM;
1772 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001773
Akio Idehara121b7b02012-04-06 01:46:43 +09001774 /* adding an extra level and having 0 change to transflective mode */
1775 if (dev->tr_backlight_supported)
1776 props.max_brightness++;
1777
Seth Forshee62cce752012-04-19 11:23:50 -05001778 dev->backlight_dev = backlight_device_register("toshiba",
1779 &dev->acpi_dev->dev,
1780 dev,
1781 &toshiba_backlight_data,
1782 &props);
1783 if (IS_ERR(dev->backlight_dev)) {
1784 ret = PTR_ERR(dev->backlight_dev);
1785 pr_err("Could not register toshiba backlight device\n");
1786 dev->backlight_dev = NULL;
1787 return ret;
1788 }
1789
1790 dev->backlight_dev->props.brightness = brightness;
1791 return 0;
1792}
1793
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001794static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001795{
1796 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
1797
Seth Forshee36d03f92011-09-20 16:55:53 -05001798 remove_toshiba_proc_entries(dev);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001799
Azael Avalos360f0f32014-03-25 20:38:31 -06001800 if (dev->sysfs_created)
1801 sysfs_remove_group(&dev->acpi_dev->dev.kobj,
1802 &toshiba_attr_group);
Seth Forshee135740d2011-09-20 16:55:49 -05001803
Seth Forshee29cd2932012-01-18 13:44:09 -06001804 if (dev->ntfy_supported) {
1805 i8042_remove_filter(toshiba_acpi_i8042_filter);
1806 cancel_work_sync(&dev->hotkey_work);
1807 }
1808
Seth Forshee135740d2011-09-20 16:55:49 -05001809 if (dev->hotkey_dev) {
1810 input_unregister_device(dev->hotkey_dev);
1811 sparse_keymap_free(dev->hotkey_dev);
1812 }
1813
1814 if (dev->bt_rfk) {
1815 rfkill_unregister(dev->bt_rfk);
1816 rfkill_destroy(dev->bt_rfk);
1817 }
1818
Markus Elfring00981812014-11-24 20:30:29 +01001819 backlight_device_unregister(dev->backlight_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001820
Seth Forshee36d03f92011-09-20 16:55:53 -05001821 if (dev->illumination_supported)
Seth Forshee135740d2011-09-20 16:55:49 -05001822 led_classdev_unregister(&dev->led_dev);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001823
Azael Avalos360f0f32014-03-25 20:38:31 -06001824 if (dev->kbd_led_registered)
1825 led_classdev_unregister(&dev->kbd_led);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001826
Azael Avalosdef6c4e2014-03-25 20:38:33 -06001827 if (dev->eco_supported)
1828 led_classdev_unregister(&dev->eco_led);
Seth Forshee135740d2011-09-20 16:55:49 -05001829
Seth Forshee29cd2932012-01-18 13:44:09 -06001830 if (toshiba_acpi)
1831 toshiba_acpi = NULL;
1832
Seth Forshee135740d2011-09-20 16:55:49 -05001833 kfree(dev);
1834
1835 return 0;
1836}
1837
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001838static const char *find_hci_method(acpi_handle handle)
Seth Forsheea540d6b2011-09-20 16:55:52 -05001839{
Zhang Ruie2e19602013-09-03 08:32:06 +08001840 if (acpi_has_method(handle, "GHCI"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001841 return "GHCI";
1842
Zhang Ruie2e19602013-09-03 08:32:06 +08001843 if (acpi_has_method(handle, "SPFC"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05001844 return "SPFC";
1845
1846 return NULL;
1847}
1848
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001849static int toshiba_acpi_add(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05001850{
1851 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001852 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05001853 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05001854 bool bt_present;
1855 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05001856
Seth Forshee29cd2932012-01-18 13:44:09 -06001857 if (toshiba_acpi)
1858 return -EBUSY;
1859
Seth Forshee135740d2011-09-20 16:55:49 -05001860 pr_info("Toshiba Laptop ACPI Extras version %s\n",
1861 TOSHIBA_ACPI_VERSION);
1862
Seth Forsheea540d6b2011-09-20 16:55:52 -05001863 hci_method = find_hci_method(acpi_dev->handle);
1864 if (!hci_method) {
1865 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05001866 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001867 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05001868
Seth Forshee135740d2011-09-20 16:55:49 -05001869 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1870 if (!dev)
1871 return -ENOMEM;
1872 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05001873 dev->method_hci = hci_method;
Seth Forshee135740d2011-09-20 16:55:49 -05001874 acpi_dev->driver_data = dev;
Azael Avalos360f0f32014-03-25 20:38:31 -06001875 dev_set_drvdata(&acpi_dev->dev, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001876
Seth Forshee6e02cc72011-09-20 16:55:51 -05001877 if (toshiba_acpi_setup_keyboard(dev))
1878 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05001879
1880 mutex_init(&dev->mutex);
1881
Seth Forshee62cce752012-04-19 11:23:50 -05001882 ret = toshiba_acpi_setup_backlight(dev);
1883 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05001884 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05001885
1886 /* Register rfkill switch for Bluetooth */
Azael Avalos1864bbc2014-09-29 20:40:08 -06001887 if (hci_get_bt_present(dev, &bt_present) == TOS_SUCCESS && bt_present) {
Seth Forshee135740d2011-09-20 16:55:49 -05001888 dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth",
1889 &acpi_dev->dev,
1890 RFKILL_TYPE_BLUETOOTH,
1891 &toshiba_rfk_ops,
1892 dev);
1893 if (!dev->bt_rfk) {
1894 pr_err("unable to allocate rfkill device\n");
1895 ret = -ENOMEM;
1896 goto error;
1897 }
1898
1899 ret = rfkill_register(dev->bt_rfk);
1900 if (ret) {
1901 pr_err("unable to register rfkill device\n");
1902 rfkill_destroy(dev->bt_rfk);
1903 goto error;
1904 }
1905 }
1906
1907 if (toshiba_illumination_available(dev)) {
1908 dev->led_dev.name = "toshiba::illumination";
1909 dev->led_dev.max_brightness = 1;
1910 dev->led_dev.brightness_set = toshiba_illumination_set;
1911 dev->led_dev.brightness_get = toshiba_illumination_get;
1912 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Seth Forshee36d03f92011-09-20 16:55:53 -05001913 dev->illumination_supported = 1;
Seth Forshee135740d2011-09-20 16:55:49 -05001914 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001915
Azael Avalosdef6c4e2014-03-25 20:38:33 -06001916 if (toshiba_eco_mode_available(dev)) {
1917 dev->eco_led.name = "toshiba::eco_mode";
1918 dev->eco_led.max_brightness = 1;
1919 dev->eco_led.brightness_set = toshiba_eco_mode_set_status;
1920 dev->eco_led.brightness_get = toshiba_eco_mode_get_status;
1921 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->eco_led))
1922 dev->eco_supported = 1;
1923 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001924
Azael Avalos93f8c162014-09-12 18:50:36 -06001925 dev->kbd_illum_supported = toshiba_kbd_illum_available(dev);
Azael Avalos360f0f32014-03-25 20:38:31 -06001926 /*
1927 * Only register the LED if KBD illumination is supported
1928 * and the keyboard backlight operation mode is set to FN-Z
1929 */
1930 if (dev->kbd_illum_supported && dev->kbd_mode == SCI_KBD_MODE_FNZ) {
1931 dev->kbd_led.name = "toshiba::kbd_backlight";
1932 dev->kbd_led.max_brightness = 1;
1933 dev->kbd_led.brightness_set = toshiba_kbd_backlight_set;
1934 dev->kbd_led.brightness_get = toshiba_kbd_backlight_get;
1935 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->kbd_led))
1936 dev->kbd_led_registered = 1;
1937 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001938
Azael Avalos9d8658a2014-03-25 20:38:32 -06001939 ret = toshiba_touchpad_get(dev, &dummy);
1940 dev->touchpad_supported = !ret;
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001941
Azael Avalos5a2813e2014-03-25 20:38:34 -06001942 ret = toshiba_accelerometer_supported(dev);
1943 dev->accelerometer_supported = !ret;
Seth Forshee135740d2011-09-20 16:55:49 -05001944
Seth Forshee36d03f92011-09-20 16:55:53 -05001945 /* Determine whether or not BIOS supports fan and video interfaces */
1946
1947 ret = get_video_status(dev, &dummy);
1948 dev->video_supported = !ret;
1949
1950 ret = get_fan_status(dev, &dummy);
1951 dev->fan_supported = !ret;
1952
Azael Avalos360f0f32014-03-25 20:38:31 -06001953 ret = sysfs_create_group(&dev->acpi_dev->dev.kobj,
1954 &toshiba_attr_group);
1955 if (ret) {
1956 dev->sysfs_created = 0;
1957 goto error;
1958 }
1959 dev->sysfs_created = !ret;
1960
Seth Forshee36d03f92011-09-20 16:55:53 -05001961 create_toshiba_proc_entries(dev);
1962
Seth Forshee29cd2932012-01-18 13:44:09 -06001963 toshiba_acpi = dev;
1964
Seth Forshee135740d2011-09-20 16:55:49 -05001965 return 0;
1966
1967error:
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001968 toshiba_acpi_remove(acpi_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001969 return ret;
1970}
1971
1972static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
1973{
1974 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001975 u32 hci_result, value;
Seth Forshee11948b92011-11-16 17:37:45 -06001976 int retries = 3;
Seth Forshee29cd2932012-01-18 13:44:09 -06001977 int scancode;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001978
Seth Forshee29cd2932012-01-18 13:44:09 -06001979 if (event != 0x80)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05001980 return;
Seth Forshee11948b92011-11-16 17:37:45 -06001981
Seth Forshee29cd2932012-01-18 13:44:09 -06001982 if (dev->info_supported) {
1983 scancode = toshiba_acpi_query_hotkey(dev);
1984 if (scancode < 0)
1985 pr_err("Failed to query hotkey event\n");
1986 else if (scancode != 0)
1987 toshiba_acpi_report_hotkey(dev, scancode);
1988 } else if (dev->system_event_supported) {
1989 do {
Azael Avalos893f3f62014-09-29 20:40:09 -06001990 hci_result = hci_read1(dev, HCI_SYSTEM_EVENT, &value);
Seth Forshee29cd2932012-01-18 13:44:09 -06001991 switch (hci_result) {
Azael Avalos1864bbc2014-09-29 20:40:08 -06001992 case TOS_SUCCESS:
Seth Forshee29cd2932012-01-18 13:44:09 -06001993 toshiba_acpi_report_hotkey(dev, (int)value);
1994 break;
Azael Avalos1864bbc2014-09-29 20:40:08 -06001995 case TOS_NOT_SUPPORTED:
Seth Forshee29cd2932012-01-18 13:44:09 -06001996 /*
1997 * This is a workaround for an unresolved
1998 * issue on some machines where system events
1999 * sporadically become disabled.
2000 */
Azael Avalos893f3f62014-09-29 20:40:09 -06002001 hci_result =
2002 hci_write1(dev, HCI_SYSTEM_EVENT, 1);
Seth Forshee29cd2932012-01-18 13:44:09 -06002003 pr_notice("Re-enabled hotkeys\n");
2004 /* fall through */
2005 default:
2006 retries--;
2007 break;
Matthew Garrett6335e4d2010-02-25 15:20:54 -05002008 }
Azael Avalos1864bbc2014-09-29 20:40:08 -06002009 } while (retries && hci_result != TOS_FIFO_EMPTY);
Seth Forshee29cd2932012-01-18 13:44:09 -06002010 }
Matthew Garrett6335e4d2010-02-25 15:20:54 -05002011}
2012
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02002013#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002014static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06002015{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002016 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06002017 u32 result;
2018
2019 if (dev->hotkey_dev)
Azael Avalos893f3f62014-09-29 20:40:09 -06002020 result = hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE);
Seth Forshee29cd2932012-01-18 13:44:09 -06002021
2022 return 0;
2023}
2024
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002025static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06002026{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002027 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Azael Avalos1f28f292014-12-04 20:22:45 -07002028 int error;
Seth Forshee29cd2932012-01-18 13:44:09 -06002029
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04002030 if (dev->hotkey_dev) {
Azael Avalos1f28f292014-12-04 20:22:45 -07002031 error = toshiba_acpi_enable_hotkeys(dev);
2032 if (error)
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04002033 pr_info("Unable to re-enable hotkeys\n");
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04002034 }
Seth Forshee29cd2932012-01-18 13:44:09 -06002035
2036 return 0;
2037}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02002038#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05002039
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002040static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
2041 toshiba_acpi_suspend, toshiba_acpi_resume);
2042
Seth Forshee135740d2011-09-20 16:55:49 -05002043static struct acpi_driver toshiba_acpi_driver = {
2044 .name = "Toshiba ACPI driver",
2045 .owner = THIS_MODULE,
2046 .ids = toshiba_device_ids,
2047 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
2048 .ops = {
2049 .add = toshiba_acpi_add,
2050 .remove = toshiba_acpi_remove,
2051 .notify = toshiba_acpi_notify,
2052 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02002053 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05002054};
Holger Machtc9263552006-10-20 14:30:29 -07002055
Len Brown4be44fc2005-08-05 00:44:28 -04002056static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Seth Forshee135740d2011-09-20 16:55:49 -05002058 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Seth Forsheef11f9992012-01-18 13:44:11 -06002060 /*
2061 * Machines with this WMI guid aren't supported due to bugs in
2062 * their AML. This check relies on wmi initializing before
2063 * toshiba_acpi to guarantee guids have been identified.
2064 */
2065 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
2066 return -ENODEV;
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
2069 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05002070 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04002071 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073
Seth Forshee135740d2011-09-20 16:55:49 -05002074 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
2075 if (ret) {
2076 pr_err("Failed to register ACPI driver: %d\n", ret);
2077 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07002078 }
2079
Seth Forshee135740d2011-09-20 16:55:49 -05002080 return ret;
2081}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04002082
Seth Forshee135740d2011-09-20 16:55:49 -05002083static void __exit toshiba_acpi_exit(void)
2084{
2085 acpi_bus_unregister_driver(&toshiba_acpi_driver);
2086 if (toshiba_proc_dir)
2087 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090module_init(toshiba_acpi_init);
2091module_exit(toshiba_acpi_exit);