blob: df1f1a76a8629fdf4c1b709ff519040ffad18552 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 2002-2004 John Belmonte
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04005 * Copyright (C) 2008 Philip Langdale
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +02006 * Copyright (C) 2010 Pierre Ducroquet
Azael Avalos7216d702015-02-10 21:09:21 -07007 * Copyright (C) 2014-2015 Azael Avalos
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
Darren Hartc57c0fa2015-02-11 21:25:22 -080019 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * The devolpment page for this driver is located at
23 * http://memebeam.org/toys/ToshibaAcpiDriver.
24 *
25 * Credits:
26 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
27 * engineering the Windows drivers
28 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
29 * Rob Miller - TV out and hotkeys help
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Joe Perches7e334602011-03-29 15:21:52 -070032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
Azael Avalos495078f2015-07-31 21:58:16 -060034#define TOSHIBA_ACPI_VERSION "0.23"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define PROC_INTERFACE_VERSION 1
36
37#include <linux/kernel.h>
38#include <linux/module.h>
Azael Avalos7faa6a32016-01-25 12:52:18 -070039#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/init.h>
41#include <linux/types.h>
42#include <linux/proc_fs.h>
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -080043#include <linux/seq_file.h>
Holger Machtc9263552006-10-20 14:30:29 -070044#include <linux/backlight.h>
Matthew Garrett6335e4d2010-02-25 15:20:54 -050045#include <linux/input.h>
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -070046#include <linux/input/sparse-keymap.h>
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +020047#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Seth Forshee29cd2932012-01-18 13:44:09 -060049#include <linux/workqueue.h>
50#include <linux/i8042.h>
Lv Zheng8b484632013-12-03 08:49:16 +080051#include <linux/acpi.h>
Hans de Goede358d6a22015-04-21 12:01:32 +020052#include <linux/dmi.h>
Azael Avalosb5163992015-02-10 23:43:56 -070053#include <linux/uaccess.h>
Azael Avalosfc5462f2015-07-22 18:09:11 -060054#include <linux/miscdevice.h>
Azael Avalos2fdde832015-11-23 10:49:11 -070055#include <linux/rfkill.h>
Azael Avalosfc5462f2015-07-22 18:09:11 -060056#include <linux/toshiba.h>
Hans de Goede358d6a22015-04-21 12:01:32 +020057#include <acpi/video.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_AUTHOR("John Belmonte");
60MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
61MODULE_LICENSE("GPL");
62
Seth Forsheef11f9992012-01-18 13:44:11 -060063#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
64
Seth Forshee29cd2932012-01-18 13:44:09 -060065/* Scan code for Fn key on TOS1900 models */
66#define TOS1900_FN_SCAN 0x6e
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Toshiba ACPI method paths */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
70
Darren Harte0769fe2015-02-11 20:50:08 -080071/*
72 * The Toshiba configuration interface is composed of the HCI and the SCI,
Azael Avalos258c5902014-09-29 20:40:07 -060073 * which are defined as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
75 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
76 * be uniform across all their models. Ideally we would just call
77 * dedicated ACPI methods instead of using this primitive interface.
78 * However the ACPI methods seem to be incomplete in some areas (for
79 * example they allow setting, but not reading, the LCD brightness value),
80 * so this is still useful.
Matthew Garrettea6b31f2014-04-04 14:22:34 -040081 *
Azael Avalos84a62732014-03-25 20:38:29 -060082 * SCI stands for "System Configuration Interface" which aim is to
83 * conceal differences in hardware between different models.
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
85
Azael Avalos258c5902014-09-29 20:40:07 -060086#define TCI_WORDS 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Azael Avalos3f75bbe2015-05-06 09:35:11 -060088/* Operations */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#define HCI_SET 0xff00
90#define HCI_GET 0xfe00
Azael Avalos84a62732014-03-25 20:38:29 -060091#define SCI_OPEN 0xf100
92#define SCI_CLOSE 0xf200
93#define SCI_GET 0xf300
94#define SCI_SET 0xf400
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Azael Avalos3f75bbe2015-05-06 09:35:11 -060096/* Return codes */
Azael Avalos1864bbc2014-09-29 20:40:08 -060097#define TOS_SUCCESS 0x0000
Azael Avalose1a949c2015-07-31 21:58:14 -060098#define TOS_SUCCESS2 0x0001
Azael Avalos1864bbc2014-09-29 20:40:08 -060099#define TOS_OPEN_CLOSE_OK 0x0044
100#define TOS_FAILURE 0x1000
101#define TOS_NOT_SUPPORTED 0x8000
102#define TOS_ALREADY_OPEN 0x8100
103#define TOS_NOT_OPENED 0x8200
104#define TOS_INPUT_DATA_ERROR 0x8300
105#define TOS_WRITE_PROTECTED 0x8400
106#define TOS_NOT_PRESENT 0x8600
107#define TOS_FIFO_EMPTY 0x8c00
108#define TOS_DATA_NOT_AVAILABLE 0x8d20
109#define TOS_NOT_INITIALIZED 0x8d50
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700110#define TOS_NOT_INSTALLED 0x8e00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Azael Avalos3f75bbe2015-05-06 09:35:11 -0600112/* Registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#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
Azael Avalos6873f462015-11-23 10:49:10 -0700119#define HCI_WIRELESS 0x0056
Azael Avalos5a2813e2014-03-25 20:38:34 -0600120#define HCI_ACCELEROMETER 0x006d
Azael Avalos763ff322016-01-25 11:29:10 -0700121#define HCI_COOLING_METHOD 0x007f
Azael Avalos360f0f32014-03-25 20:38:31 -0600122#define HCI_KBD_ILLUMINATION 0x0095
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600123#define HCI_ECO_MODE 0x0097
Azael Avalos5a2813e2014-03-25 20:38:34 -0600124#define HCI_ACCELEROMETER2 0x00a6
Azael Avalos56e6b352015-03-20 16:55:16 -0600125#define HCI_SYSTEM_INFO 0xc000
Azael Avalos35d53ce2015-02-10 21:09:19 -0700126#define SCI_PANEL_POWER_ON 0x010d
Azael Avalosfdb79082014-03-25 20:38:30 -0600127#define SCI_ILLUMINATION 0x014e
Azael Avalose26ffe52015-01-18 18:30:22 -0700128#define SCI_USB_SLEEP_CHARGE 0x0150
Azael Avalos360f0f32014-03-25 20:38:31 -0600129#define SCI_KBD_ILLUM_STATUS 0x015c
Azael Avalos172ce0a2015-01-18 18:30:25 -0700130#define SCI_USB_SLEEP_MUSIC 0x015e
Azael Avalos17fe4b32015-02-10 21:09:20 -0700131#define SCI_USB_THREE 0x0169
Azael Avalos9d8658a2014-03-25 20:38:32 -0600132#define SCI_TOUCHPAD 0x050e
Azael Avalosbae84192015-02-10 21:09:18 -0700133#define SCI_KBD_FUNCTION_KEYS 0x0522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Azael Avalos3f75bbe2015-05-06 09:35:11 -0600135/* Field definitions */
Azael Avalos5a2813e2014-03-25 20:38:34 -0600136#define HCI_ACCEL_MASK 0x7fff
Seth Forshee29cd2932012-01-18 13:44:09 -0600137#define HCI_HOTKEY_DISABLE 0x0b
Azael Avalos52cbae02015-09-09 11:28:20 -0600138#define HCI_HOTKEY_ENABLE 0x01
Azael Avalosfb42d1f2015-03-20 16:55:18 -0600139#define HCI_HOTKEY_SPECIAL_FUNCTIONS 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define HCI_LCD_BRIGHTNESS_BITS 3
141#define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
142#define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
Azael Avalos360f0f32014-03-25 20:38:31 -0600143#define HCI_MISC_SHIFT 0x10
Azael Avalos56e6b352015-03-20 16:55:16 -0600144#define HCI_SYSTEM_TYPE1 0x10
145#define HCI_SYSTEM_TYPE2 0x11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define HCI_VIDEO_OUT_LCD 0x1
147#define HCI_VIDEO_OUT_CRT 0x2
148#define HCI_VIDEO_OUT_TV 0x4
Azael Avalos93f8c162014-09-12 18:50:36 -0600149#define SCI_KBD_MODE_MASK 0x1f
Azael Avalos360f0f32014-03-25 20:38:31 -0600150#define SCI_KBD_MODE_FNZ 0x1
151#define SCI_KBD_MODE_AUTO 0x2
Azael Avalos93f8c162014-09-12 18:50:36 -0600152#define SCI_KBD_MODE_ON 0x8
153#define SCI_KBD_MODE_OFF 0x10
154#define SCI_KBD_TIME_MAX 0x3c001a
Azael Avalos6873f462015-11-23 10:49:10 -0700155#define HCI_WIRELESS_STATUS 0x1
156#define HCI_WIRELESS_WWAN 0x3
157#define HCI_WIRELESS_WWAN_STATUS 0x2000
158#define HCI_WIRELESS_WWAN_POWER 0x4000
Azael Avalose26ffe52015-01-18 18:30:22 -0700159#define SCI_USB_CHARGE_MODE_MASK 0xff
Azael Avalosc8c91842015-04-02 19:26:20 -0600160#define SCI_USB_CHARGE_DISABLED 0x00
161#define SCI_USB_CHARGE_ALTERNATE 0x09
162#define SCI_USB_CHARGE_TYPICAL 0x11
163#define SCI_USB_CHARGE_AUTO 0x21
Azael Avalos182bcaa2015-01-18 18:30:23 -0700164#define SCI_USB_CHARGE_BAT_MASK 0x7
165#define SCI_USB_CHARGE_BAT_LVL_OFF 0x1
166#define SCI_USB_CHARGE_BAT_LVL_ON 0x4
167#define SCI_USB_CHARGE_BAT_LVL 0x0200
Azael Avalosbb3fe012015-01-18 18:30:24 -0700168#define SCI_USB_CHARGE_RAPID_DSP 0x0300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Seth Forshee135740d2011-09-20 16:55:49 -0500170struct toshiba_acpi_dev {
171 struct acpi_device *acpi_dev;
172 const char *method_hci;
Seth Forshee135740d2011-09-20 16:55:49 -0500173 struct input_dev *hotkey_dev;
Seth Forshee29cd2932012-01-18 13:44:09 -0600174 struct work_struct hotkey_work;
Seth Forshee135740d2011-09-20 16:55:49 -0500175 struct backlight_device *backlight_dev;
176 struct led_classdev led_dev;
Azael Avalos360f0f32014-03-25 20:38:31 -0600177 struct led_classdev kbd_led;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600178 struct led_classdev eco_led;
Azael Avalosfc5462f2015-07-22 18:09:11 -0600179 struct miscdevice miscdev;
Azael Avalos2fdde832015-11-23 10:49:11 -0700180 struct rfkill *wwan_rfk;
Seth Forshee36d03f92011-09-20 16:55:53 -0500181
Seth Forshee135740d2011-09-20 16:55:49 -0500182 int force_fan;
183 int last_key_event;
184 int key_event_valid;
Azael Avalos93f8c162014-09-12 18:50:36 -0600185 int kbd_type;
Azael Avalos360f0f32014-03-25 20:38:31 -0600186 int kbd_mode;
187 int kbd_time;
Azael Avalos182bcaa2015-01-18 18:30:23 -0700188 int usbsc_bat_level;
Azael Avalosc8c91842015-04-02 19:26:20 -0600189 int usbsc_mode_base;
Azael Avalosa2b34712015-03-20 16:55:17 -0600190 int hotkey_event_type;
Azael Avalos763ff322016-01-25 11:29:10 -0700191 int max_cooling_method;
Seth Forshee135740d2011-09-20 16:55:49 -0500192
Dan Carpenter592b7462012-01-15 14:28:20 +0300193 unsigned int illumination_supported:1;
194 unsigned int video_supported:1;
195 unsigned int fan_supported:1;
196 unsigned int system_event_supported:1;
Seth Forshee29cd2932012-01-18 13:44:09 -0600197 unsigned int ntfy_supported:1;
198 unsigned int info_supported:1;
Akio Idehara121b7b02012-04-06 01:46:43 +0900199 unsigned int tr_backlight_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600200 unsigned int kbd_illum_supported:1;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600201 unsigned int touchpad_supported:1;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600202 unsigned int eco_supported:1;
Azael Avalos5a2813e2014-03-25 20:38:34 -0600203 unsigned int accelerometer_supported:1;
Azael Avalose26ffe52015-01-18 18:30:22 -0700204 unsigned int usb_sleep_charge_supported:1;
Azael Avalosbb3fe012015-01-18 18:30:24 -0700205 unsigned int usb_rapid_charge_supported:1;
Azael Avalos172ce0a2015-01-18 18:30:25 -0700206 unsigned int usb_sleep_music_supported:1;
Azael Avalosbae84192015-02-10 21:09:18 -0700207 unsigned int kbd_function_keys_supported:1;
Azael Avalos35d53ce2015-02-10 21:09:19 -0700208 unsigned int panel_power_on_supported:1;
Azael Avalos17fe4b32015-02-10 21:09:20 -0700209 unsigned int usb_three_supported:1;
Azael Avalos6873f462015-11-23 10:49:10 -0700210 unsigned int wwan_supported:1;
Azael Avalos763ff322016-01-25 11:29:10 -0700211 unsigned int cooling_method_supported:1;
Azael Avalos360f0f32014-03-25 20:38:31 -0600212 unsigned int sysfs_created:1;
Azael Avalosb116fd002015-09-09 11:28:19 -0600213 unsigned int special_functions;
Azael Avalosea215a3f2015-07-31 21:58:12 -0600214
Azael Avalos65e3cf92015-11-23 10:51:30 -0700215 bool kbd_event_generated;
Azael Avalosea215a3f2015-07-31 21:58:12 -0600216 bool kbd_led_registered;
217 bool illumination_led_registered;
218 bool eco_led_registered;
Azael Avalos6873f462015-11-23 10:49:10 -0700219 bool killswitch;
Seth Forshee135740d2011-09-20 16:55:49 -0500220};
221
Seth Forshee29cd2932012-01-18 13:44:09 -0600222static struct toshiba_acpi_dev *toshiba_acpi;
223
Azael Avalos7faa6a32016-01-25 12:52:18 -0700224static bool disable_hotkeys;
225module_param(disable_hotkeys, bool, 0444);
226MODULE_PARM_DESC(disable_hotkeys, "Disables the hotkeys activation");
227
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800228static const struct acpi_device_id toshiba_device_ids[] = {
229 {"TOS6200", 0},
Ondrej Zary63a9e012014-11-10 00:11:54 +0100230 {"TOS6207", 0},
philipl@overt.orgc41a40c2008-08-30 11:57:39 -0400231 {"TOS6208", 0},
arvidjaar@mail.ru4db42c52008-03-04 15:06:34 -0800232 {"TOS1900", 0},
233 {"", 0},
234};
235MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
236
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -0800237static const struct key_entry toshiba_acpi_keymap[] = {
Unai Uribarrifec278a2014-01-14 11:06:47 +0100238 { KE_KEY, 0x9e, { KEY_RFKILL } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700239 { KE_KEY, 0x101, { KEY_MUTE } },
240 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
241 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalos408a5d12014-09-05 11:14:03 -0600242 { KE_KEY, 0x10f, { KEY_TAB } },
Azael Avalosaf502832012-01-18 13:44:10 -0600243 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
244 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700245 { KE_KEY, 0x13b, { KEY_COFFEE } },
246 { KE_KEY, 0x13c, { KEY_BATTERY } },
247 { KE_KEY, 0x13d, { KEY_SLEEP } },
248 { KE_KEY, 0x13e, { KEY_SUSPEND } },
249 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
250 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
251 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
252 { KE_KEY, 0x142, { KEY_WLAN } },
Azael Avalosaf502832012-01-18 13:44:10 -0600253 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
Jon Dowlanda49010f2010-10-27 00:24:59 +0100254 { KE_KEY, 0x17f, { KEY_FN } },
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700255 { KE_KEY, 0xb05, { KEY_PROG2 } },
256 { KE_KEY, 0xb06, { KEY_WWW } },
257 { KE_KEY, 0xb07, { KEY_MAIL } },
258 { KE_KEY, 0xb30, { KEY_STOP } },
259 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
260 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
261 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
262 { KE_KEY, 0xb5a, { KEY_MEDIA } },
Azael Avalos408a5d12014-09-05 11:14:03 -0600263 { KE_IGNORE, 0x1430, { KEY_RESERVED } }, /* Wake from sleep */
264 { KE_IGNORE, 0x1501, { KEY_RESERVED } }, /* Output changed */
265 { KE_IGNORE, 0x1502, { KEY_RESERVED } }, /* HDMI plugged/unplugged */
266 { KE_IGNORE, 0x1ABE, { KEY_RESERVED } }, /* Protection level set */
267 { KE_IGNORE, 0x1ABF, { KEY_RESERVED } }, /* Protection level off */
Dmitry Torokhov384a7cd2010-08-04 22:30:19 -0700268 { KE_END, 0 },
Matthew Garrett6335e4d2010-02-25 15:20:54 -0500269};
270
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200271static const struct key_entry toshiba_acpi_alt_keymap[] = {
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200272 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
273 { KE_KEY, 0x103, { KEY_ZOOMIN } },
Azael Avalose6efad72014-08-04 09:21:02 -0600274 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200275 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200276 { KE_KEY, 0x13c, { KEY_BRIGHTNESSDOWN } },
277 { KE_KEY, 0x13d, { KEY_BRIGHTNESSUP } },
Azael Avalosd50c9002015-07-22 19:37:46 -0600278 { KE_KEY, 0x13e, { KEY_SWITCHVIDEOMODE } },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200279 { KE_KEY, 0x13f, { KEY_TOUCHPAD_TOGGLE } },
Azael Avalosd50c9002015-07-22 19:37:46 -0600280 { KE_KEY, 0x157, { KEY_MUTE } },
281 { KE_KEY, 0x158, { KEY_WLAN } },
Takashi Iwaife808bfb2014-04-29 15:15:38 +0200282 { KE_END, 0 },
283};
284
Darren Harte0769fe2015-02-11 20:50:08 -0800285/*
Hans de Goede358d6a22015-04-21 12:01:32 +0200286 * List of models which have a broken acpi-video backlight interface and thus
287 * need to use the toshiba (vendor) interface instead.
288 */
289static const struct dmi_system_id toshiba_vendor_backlight_dmi[] = {
290 {}
291};
292
293/*
Darren Harte0769fe2015-02-11 20:50:08 -0800294 * Utility
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
296
Azael Avalosb5163992015-02-10 23:43:56 -0700297static inline void _set_bit(u32 *word, u32 mask, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 *word = (*word & ~mask) | (mask * value);
300}
301
Darren Harte0769fe2015-02-11 20:50:08 -0800302/*
303 * ACPI interface wrappers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
305
Len Brown4be44fc2005-08-05 00:44:28 -0400306static int write_acpi_int(const char *methodName, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 acpi_status status;
309
Zhang Rui619400d2013-09-03 08:31:56 +0800310 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
Seth Forshee32bcd5c2011-09-20 16:55:50 -0500311 return (status == AE_OK) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Darren Harte0769fe2015-02-11 20:50:08 -0800314/*
315 * Perform a raw configuration call. Here we don't care about input or output
Azael Avalos258c5902014-09-29 20:40:07 -0600316 * buffer format.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
Azael Avalos258c5902014-09-29 20:40:07 -0600318static acpi_status tci_raw(struct toshiba_acpi_dev *dev,
319 const u32 in[TCI_WORDS], u32 out[TCI_WORDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 struct acpi_object_list params;
Azael Avalos258c5902014-09-29 20:40:07 -0600322 union acpi_object in_objs[TCI_WORDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct acpi_buffer results;
Azael Avalos258c5902014-09-29 20:40:07 -0600324 union acpi_object out_objs[TCI_WORDS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 acpi_status status;
326 int i;
327
Azael Avalos258c5902014-09-29 20:40:07 -0600328 params.count = TCI_WORDS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 params.pointer = in_objs;
Azael Avalos258c5902014-09-29 20:40:07 -0600330 for (i = 0; i < TCI_WORDS; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 in_objs[i].type = ACPI_TYPE_INTEGER;
332 in_objs[i].integer.value = in[i];
333 }
334
335 results.length = sizeof(out_objs);
336 results.pointer = out_objs;
337
Seth Forshee6e02cc72011-09-20 16:55:51 -0500338 status = acpi_evaluate_object(dev->acpi_dev->handle,
339 (char *)dev->method_hci, &params,
Len Brown4be44fc2005-08-05 00:44:28 -0400340 &results);
Azael Avalos258c5902014-09-29 20:40:07 -0600341 if ((status == AE_OK) && (out_objs->package.count <= TCI_WORDS)) {
Azael Avalosb5163992015-02-10 23:43:56 -0700342 for (i = 0; i < out_objs->package.count; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 out[i] = out_objs->package.elements[i].integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 return status;
347}
348
Darren Harte0769fe2015-02-11 20:50:08 -0800349/*
Azael Avalosd37782b2015-05-06 09:35:10 -0600350 * Common hci tasks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *
352 * In addition to the ACPI status, the HCI system returns a result which
353 * may be useful (such as "not supported").
354 */
355
Azael Avalosd37782b2015-05-06 09:35:10 -0600356static u32 hci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Azael Avalos258c5902014-09-29 20:40:07 -0600358 u32 in[TCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
359 u32 out[TCI_WORDS];
360 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600361
362 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Azael Avalosd37782b2015-05-06 09:35:10 -0600365static u32 hci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Azael Avalos258c5902014-09-29 20:40:07 -0600367 u32 in[TCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
368 u32 out[TCI_WORDS];
369 acpi_status status = tci_raw(dev, in, out);
Azael Avalosb5163992015-02-10 23:43:56 -0700370
Azael Avalos893f3f62014-09-29 20:40:09 -0600371 if (ACPI_FAILURE(status))
372 return TOS_FAILURE;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *out1 = out[2];
Azael Avalos893f3f62014-09-29 20:40:09 -0600375
376 return out[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Darren Harte0769fe2015-02-11 20:50:08 -0800379/*
380 * Common sci tasks
Azael Avalos84a62732014-03-25 20:38:29 -0600381 */
382
383static int sci_open(struct toshiba_acpi_dev *dev)
384{
Azael Avalos258c5902014-09-29 20:40:07 -0600385 u32 in[TCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 };
386 u32 out[TCI_WORDS];
Azael Avalos84a62732014-03-25 20:38:29 -0600387 acpi_status status;
388
Azael Avalos258c5902014-09-29 20:40:07 -0600389 status = tci_raw(dev, in, out);
Azael Avalos8baec452015-05-06 09:35:12 -0600390 if (ACPI_FAILURE(status)) {
Azael Avalos84a62732014-03-25 20:38:29 -0600391 pr_err("ACPI call to open SCI failed\n");
392 return 0;
393 }
394
Azael Avalos1864bbc2014-09-29 20:40:08 -0600395 if (out[0] == TOS_OPEN_CLOSE_OK) {
Azael Avalos84a62732014-03-25 20:38:29 -0600396 return 1;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600397 } else if (out[0] == TOS_ALREADY_OPEN) {
Azael Avalos84a62732014-03-25 20:38:29 -0600398 pr_info("Toshiba SCI already opened\n");
399 return 1;
Azael Avalosfa465732015-01-18 19:17:12 -0700400 } else if (out[0] == TOS_NOT_SUPPORTED) {
Darren Harte0769fe2015-02-11 20:50:08 -0800401 /*
402 * Some BIOSes do not have the SCI open/close functions
Azael Avalosfa465732015-01-18 19:17:12 -0700403 * implemented and return 0x8000 (Not Supported), failing to
404 * register some supported features.
405 *
406 * Simply return 1 if we hit those affected laptops to make the
407 * supported features work.
408 *
409 * In the case that some laptops really do not support the SCI,
410 * all the SCI dependent functions check for TOS_NOT_SUPPORTED,
411 * and thus, not registering support for the queried feature.
412 */
413 return 1;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600414 } else if (out[0] == TOS_NOT_PRESENT) {
Azael Avalos84a62732014-03-25 20:38:29 -0600415 pr_info("Toshiba SCI is not present\n");
416 }
417
418 return 0;
419}
420
421static void sci_close(struct toshiba_acpi_dev *dev)
422{
Azael Avalos258c5902014-09-29 20:40:07 -0600423 u32 in[TCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 };
424 u32 out[TCI_WORDS];
Azael Avalos84a62732014-03-25 20:38:29 -0600425 acpi_status status;
426
Azael Avalos258c5902014-09-29 20:40:07 -0600427 status = tci_raw(dev, in, out);
Azael Avalos8baec452015-05-06 09:35:12 -0600428 if (ACPI_FAILURE(status)) {
Azael Avalos84a62732014-03-25 20:38:29 -0600429 pr_err("ACPI call to close SCI failed\n");
430 return;
431 }
432
Azael Avalos1864bbc2014-09-29 20:40:08 -0600433 if (out[0] == TOS_OPEN_CLOSE_OK)
Azael Avalos84a62732014-03-25 20:38:29 -0600434 return;
Azael Avalos1864bbc2014-09-29 20:40:08 -0600435 else if (out[0] == TOS_NOT_OPENED)
Azael Avalos84a62732014-03-25 20:38:29 -0600436 pr_info("Toshiba SCI not opened\n");
Azael Avalos1864bbc2014-09-29 20:40:08 -0600437 else if (out[0] == TOS_NOT_PRESENT)
Azael Avalos84a62732014-03-25 20:38:29 -0600438 pr_info("Toshiba SCI is not present\n");
439}
440
Azael Avalos893f3f62014-09-29 20:40:09 -0600441static u32 sci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
Azael Avalos84a62732014-03-25 20:38:29 -0600442{
Azael Avalos258c5902014-09-29 20:40:07 -0600443 u32 in[TCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 };
444 u32 out[TCI_WORDS];
445 acpi_status status = tci_raw(dev, in, out);
Azael Avalosb5163992015-02-10 23:43:56 -0700446
Azael Avalos893f3f62014-09-29 20:40:09 -0600447 if (ACPI_FAILURE(status))
448 return TOS_FAILURE;
449
Azael Avalos84a62732014-03-25 20:38:29 -0600450 *out1 = out[2];
Azael Avalos893f3f62014-09-29 20:40:09 -0600451
452 return out[0];
Azael Avalos84a62732014-03-25 20:38:29 -0600453}
454
Azael Avalos893f3f62014-09-29 20:40:09 -0600455static u32 sci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
Azael Avalos84a62732014-03-25 20:38:29 -0600456{
Azael Avalos258c5902014-09-29 20:40:07 -0600457 u32 in[TCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 };
458 u32 out[TCI_WORDS];
459 acpi_status status = tci_raw(dev, in, out);
Azael Avalos893f3f62014-09-29 20:40:09 -0600460
461 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
Azael Avalos84a62732014-03-25 20:38:29 -0600462}
463
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200464/* Illumination support */
Azael Avalosea215a3f2015-07-31 21:58:12 -0600465static void toshiba_illumination_available(struct toshiba_acpi_dev *dev)
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200466{
Azael Avalos258c5902014-09-29 20:40:07 -0600467 u32 in[TCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 };
468 u32 out[TCI_WORDS];
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200469 acpi_status status;
470
Azael Avalosea215a3f2015-07-31 21:58:12 -0600471 dev->illumination_supported = 0;
472 dev->illumination_led_registered = false;
473
Azael Avalosfdb79082014-03-25 20:38:30 -0600474 if (!sci_open(dev))
Azael Avalosea215a3f2015-07-31 21:58:12 -0600475 return;
Azael Avalosfdb79082014-03-25 20:38:30 -0600476
Azael Avalos258c5902014-09-29 20:40:07 -0600477 status = tci_raw(dev, in, out);
Azael Avalosfdb79082014-03-25 20:38:30 -0600478 sci_close(dev);
Azael Avalosea215a3f2015-07-31 21:58:12 -0600479 if (ACPI_FAILURE(status))
Azael Avalosfdb79082014-03-25 20:38:30 -0600480 pr_err("ACPI call to query Illumination support failed\n");
Azael Avalosea215a3f2015-07-31 21:58:12 -0600481 else if (out[0] == TOS_SUCCESS)
482 dev->illumination_supported = 1;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200483}
484
485static void toshiba_illumination_set(struct led_classdev *cdev,
486 enum led_brightness brightness)
487{
Seth Forshee135740d2011-09-20 16:55:49 -0500488 struct toshiba_acpi_dev *dev = container_of(cdev,
489 struct toshiba_acpi_dev, led_dev);
Azael Avalose1a949c2015-07-31 21:58:14 -0600490 u32 result;
491 u32 state;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200492
493 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600494 if (!sci_open(dev))
495 return;
496
497 /* Switch the illumination on/off */
498 state = brightness ? 1 : 0;
Azael Avalos893f3f62014-09-29 20:40:09 -0600499 result = sci_write(dev, SCI_ILLUMINATION, state);
Azael Avalosfdb79082014-03-25 20:38:30 -0600500 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600501 if (result == TOS_FAILURE)
Azael Avalosfdb79082014-03-25 20:38:30 -0600502 pr_err("ACPI call for illumination failed\n");
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200503}
504
505static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
506{
Seth Forshee135740d2011-09-20 16:55:49 -0500507 struct toshiba_acpi_dev *dev = container_of(cdev,
508 struct toshiba_acpi_dev, led_dev);
Azael Avalosfdb79082014-03-25 20:38:30 -0600509 u32 state, result;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200510
Azael Avalos3f75bbe2015-05-06 09:35:11 -0600511 /* First request : initialize communication. */
Azael Avalosfdb79082014-03-25 20:38:30 -0600512 if (!sci_open(dev))
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200513 return LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200514
515 /* Check the illumination */
Azael Avalos893f3f62014-09-29 20:40:09 -0600516 result = sci_read(dev, SCI_ILLUMINATION, &state);
Azael Avalosfdb79082014-03-25 20:38:30 -0600517 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600518 if (result == TOS_FAILURE) {
Azael Avalosfdb79082014-03-25 20:38:30 -0600519 pr_err("ACPI call for illumination failed\n");
520 return LED_OFF;
Azael Avalose1a949c2015-07-31 21:58:14 -0600521 } else if (result != TOS_SUCCESS) {
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200522 return LED_OFF;
523 }
524
Azael Avalosfdb79082014-03-25 20:38:30 -0600525 return state ? LED_FULL : LED_OFF;
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200526}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400527
Azael Avalos360f0f32014-03-25 20:38:31 -0600528/* KBD Illumination */
Azael Avalosea215a3f2015-07-31 21:58:12 -0600529static void toshiba_kbd_illum_available(struct toshiba_acpi_dev *dev)
Azael Avalos93f8c162014-09-12 18:50:36 -0600530{
Azael Avalos258c5902014-09-29 20:40:07 -0600531 u32 in[TCI_WORDS] = { SCI_GET, SCI_KBD_ILLUM_STATUS, 0, 0, 0, 0 };
532 u32 out[TCI_WORDS];
Azael Avalos93f8c162014-09-12 18:50:36 -0600533 acpi_status status;
534
Azael Avalosea215a3f2015-07-31 21:58:12 -0600535 dev->kbd_illum_supported = 0;
536 dev->kbd_led_registered = false;
Azael Avalos65e3cf92015-11-23 10:51:30 -0700537 dev->kbd_event_generated = false;
Azael Avalosea215a3f2015-07-31 21:58:12 -0600538
Azael Avalos93f8c162014-09-12 18:50:36 -0600539 if (!sci_open(dev))
Azael Avalosea215a3f2015-07-31 21:58:12 -0600540 return;
Azael Avalos93f8c162014-09-12 18:50:36 -0600541
Azael Avalos258c5902014-09-29 20:40:07 -0600542 status = tci_raw(dev, in, out);
Azael Avalos93f8c162014-09-12 18:50:36 -0600543 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600544 if (ACPI_FAILURE(status)) {
Azael Avalos93f8c162014-09-12 18:50:36 -0600545 pr_err("ACPI call to query kbd illumination support failed\n");
Azael Avalosea215a3f2015-07-31 21:58:12 -0600546 } else if (out[0] == TOS_SUCCESS) {
547 /*
548 * Check for keyboard backlight timeout max value,
549 * previous kbd backlight implementation set this to
550 * 0x3c0003, and now the new implementation set this
551 * to 0x3c001a, use this to distinguish between them.
552 */
553 if (out[3] == SCI_KBD_TIME_MAX)
554 dev->kbd_type = 2;
555 else
556 dev->kbd_type = 1;
557 /* Get the current keyboard backlight mode */
558 dev->kbd_mode = out[2] & SCI_KBD_MODE_MASK;
559 /* Get the current time (1-60 seconds) */
560 dev->kbd_time = out[2] >> HCI_MISC_SHIFT;
561 /* Flag as supported */
562 dev->kbd_illum_supported = 1;
Azael Avalos93f8c162014-09-12 18:50:36 -0600563 }
Azael Avalos93f8c162014-09-12 18:50:36 -0600564}
565
Azael Avalos360f0f32014-03-25 20:38:31 -0600566static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time)
567{
568 u32 result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600569
570 if (!sci_open(dev))
571 return -EIO;
572
Azael Avalos893f3f62014-09-29 20:40:09 -0600573 result = sci_write(dev, SCI_KBD_ILLUM_STATUS, time);
Azael Avalos360f0f32014-03-25 20:38:31 -0600574 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600575 if (result == TOS_FAILURE)
Azael Avalos360f0f32014-03-25 20:38:31 -0600576 pr_err("ACPI call to set KBD backlight status failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600577 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos360f0f32014-03-25 20:38:31 -0600578 return -ENODEV;
Azael Avalos360f0f32014-03-25 20:38:31 -0600579
Azael Avalose1a949c2015-07-31 21:58:14 -0600580 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos360f0f32014-03-25 20:38:31 -0600581}
582
583static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time)
584{
585 u32 result;
Azael Avalos360f0f32014-03-25 20:38:31 -0600586
587 if (!sci_open(dev))
588 return -EIO;
589
Azael Avalos893f3f62014-09-29 20:40:09 -0600590 result = sci_read(dev, SCI_KBD_ILLUM_STATUS, time);
Azael Avalos360f0f32014-03-25 20:38:31 -0600591 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600592 if (result == TOS_FAILURE)
Azael Avalos360f0f32014-03-25 20:38:31 -0600593 pr_err("ACPI call to get KBD backlight status failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600594 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos360f0f32014-03-25 20:38:31 -0600595 return -ENODEV;
Azael Avalos360f0f32014-03-25 20:38:31 -0600596
Azael Avalose1a949c2015-07-31 21:58:14 -0600597 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos360f0f32014-03-25 20:38:31 -0600598}
599
600static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev)
601{
602 struct toshiba_acpi_dev *dev = container_of(cdev,
603 struct toshiba_acpi_dev, kbd_led);
Azael Avalose1a949c2015-07-31 21:58:14 -0600604 u32 result;
605 u32 state;
Azael Avalos360f0f32014-03-25 20:38:31 -0600606
607 /* Check the keyboard backlight state */
Azael Avalosd37782b2015-05-06 09:35:10 -0600608 result = hci_read(dev, HCI_KBD_ILLUMINATION, &state);
Azael Avalosa6b53542015-07-31 21:58:15 -0600609 if (result == TOS_FAILURE) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600610 pr_err("ACPI call to get the keyboard backlight failed\n");
611 return LED_OFF;
Azael Avalose1a949c2015-07-31 21:58:14 -0600612 } else if (result != TOS_SUCCESS) {
Azael Avalos360f0f32014-03-25 20:38:31 -0600613 return LED_OFF;
614 }
615
616 return state ? LED_FULL : LED_OFF;
617}
618
619static void toshiba_kbd_backlight_set(struct led_classdev *cdev,
620 enum led_brightness brightness)
621{
622 struct toshiba_acpi_dev *dev = container_of(cdev,
623 struct toshiba_acpi_dev, kbd_led);
Azael Avalose1a949c2015-07-31 21:58:14 -0600624 u32 result;
625 u32 state;
Azael Avalos360f0f32014-03-25 20:38:31 -0600626
627 /* Set the keyboard backlight state */
628 state = brightness ? 1 : 0;
Azael Avalosd37782b2015-05-06 09:35:10 -0600629 result = hci_write(dev, HCI_KBD_ILLUMINATION, state);
Azael Avalosa6b53542015-07-31 21:58:15 -0600630 if (result == TOS_FAILURE)
Azael Avalos360f0f32014-03-25 20:38:31 -0600631 pr_err("ACPI call to set KBD Illumination mode failed\n");
Azael Avalos360f0f32014-03-25 20:38:31 -0600632}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400633
Azael Avalos9d8658a2014-03-25 20:38:32 -0600634/* TouchPad support */
635static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state)
636{
637 u32 result;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600638
639 if (!sci_open(dev))
640 return -EIO;
641
Azael Avalos893f3f62014-09-29 20:40:09 -0600642 result = sci_write(dev, SCI_TOUCHPAD, state);
Azael Avalos9d8658a2014-03-25 20:38:32 -0600643 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600644 if (result == TOS_FAILURE)
Azael Avalos9d8658a2014-03-25 20:38:32 -0600645 pr_err("ACPI call to set the touchpad failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600646 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos9d8658a2014-03-25 20:38:32 -0600647 return -ENODEV;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600648
Azael Avalose1a949c2015-07-31 21:58:14 -0600649 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600650}
651
652static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state)
653{
654 u32 result;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600655
656 if (!sci_open(dev))
657 return -EIO;
658
Azael Avalos893f3f62014-09-29 20:40:09 -0600659 result = sci_read(dev, SCI_TOUCHPAD, state);
Azael Avalos9d8658a2014-03-25 20:38:32 -0600660 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600661 if (result == TOS_FAILURE)
Azael Avalos9d8658a2014-03-25 20:38:32 -0600662 pr_err("ACPI call to query the touchpad failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600663 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos9d8658a2014-03-25 20:38:32 -0600664 return -ENODEV;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600665
Azael Avalose1a949c2015-07-31 21:58:14 -0600666 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos9d8658a2014-03-25 20:38:32 -0600667}
Pierre Ducroquet6c3f6e62010-07-29 11:56:59 +0200668
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600669/* Eco Mode support */
Azael Avalosea215a3f2015-07-31 21:58:12 -0600670static void toshiba_eco_mode_available(struct toshiba_acpi_dev *dev)
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600671{
672 acpi_status status;
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700673 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 0, 0, 0 };
Azael Avalos258c5902014-09-29 20:40:07 -0600674 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600675
Azael Avalosea215a3f2015-07-31 21:58:12 -0600676 dev->eco_supported = 0;
677 dev->eco_led_registered = false;
678
Azael Avalos258c5902014-09-29 20:40:07 -0600679 status = tci_raw(dev, in, out);
Azael Avalos8baec452015-05-06 09:35:12 -0600680 if (ACPI_FAILURE(status)) {
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700681 pr_err("ACPI call to get ECO led failed\n");
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700682 } else if (out[0] == TOS_INPUT_DATA_ERROR) {
Darren Harte0769fe2015-02-11 20:50:08 -0800683 /*
684 * If we receive 0x8300 (Input Data Error), it means that the
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700685 * LED device is present, but that we just screwed the input
686 * parameters.
687 *
688 * Let's query the status of the LED to see if we really have a
689 * success response, indicating the actual presense of the LED,
690 * bail out otherwise.
691 */
692 in[3] = 1;
693 status = tci_raw(dev, in, out);
Azael Avalosa6b53542015-07-31 21:58:15 -0600694 if (ACPI_FAILURE(status))
Azael Avalos98fc4ec2015-02-09 20:55:02 -0700695 pr_err("ACPI call to get ECO led failed\n");
696 else if (out[0] == TOS_SUCCESS)
Azael Avalosea215a3f2015-07-31 21:58:12 -0600697 dev->eco_supported = 1;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600698 }
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600699}
700
Azael Avalosb5163992015-02-10 23:43:56 -0700701static enum led_brightness
702toshiba_eco_mode_get_status(struct led_classdev *cdev)
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600703{
704 struct toshiba_acpi_dev *dev = container_of(cdev,
705 struct toshiba_acpi_dev, eco_led);
Azael Avalos258c5902014-09-29 20:40:07 -0600706 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
707 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600708 acpi_status status;
709
Azael Avalos258c5902014-09-29 20:40:07 -0600710 status = tci_raw(dev, in, out);
Azael Avalosa6b53542015-07-31 21:58:15 -0600711 if (ACPI_FAILURE(status)) {
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600712 pr_err("ACPI call to get ECO led failed\n");
713 return LED_OFF;
Azael Avalose1a949c2015-07-31 21:58:14 -0600714 } else if (out[0] != TOS_SUCCESS) {
715 return LED_OFF;
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600716 }
717
718 return out[2] ? LED_FULL : LED_OFF;
719}
720
721static void toshiba_eco_mode_set_status(struct led_classdev *cdev,
722 enum led_brightness brightness)
723{
724 struct toshiba_acpi_dev *dev = container_of(cdev,
725 struct toshiba_acpi_dev, eco_led);
Azael Avalos258c5902014-09-29 20:40:07 -0600726 u32 in[TCI_WORDS] = { HCI_SET, HCI_ECO_MODE, 0, 1, 0, 0 };
727 u32 out[TCI_WORDS];
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600728 acpi_status status;
729
730 /* Switch the Eco Mode led on/off */
731 in[2] = (brightness) ? 1 : 0;
Azael Avalos258c5902014-09-29 20:40:07 -0600732 status = tci_raw(dev, in, out);
Azael Avalosa6b53542015-07-31 21:58:15 -0600733 if (ACPI_FAILURE(status))
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600734 pr_err("ACPI call to set ECO led failed\n");
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600735}
Matthew Garrettea6b31f2014-04-04 14:22:34 -0400736
Azael Avalos5a2813e2014-03-25 20:38:34 -0600737/* Accelerometer support */
Azael Avalosea215a3f2015-07-31 21:58:12 -0600738static void toshiba_accelerometer_available(struct toshiba_acpi_dev *dev)
Azael Avalos5a2813e2014-03-25 20:38:34 -0600739{
Azael Avalos258c5902014-09-29 20:40:07 -0600740 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER2, 0, 0, 0, 0 };
741 u32 out[TCI_WORDS];
Azael Avalos5a2813e2014-03-25 20:38:34 -0600742 acpi_status status;
743
Azael Avalosea215a3f2015-07-31 21:58:12 -0600744 dev->accelerometer_supported = 0;
745
Darren Harte0769fe2015-02-11 20:50:08 -0800746 /*
747 * Check if the accelerometer call exists,
Azael Avalos5a2813e2014-03-25 20:38:34 -0600748 * this call also serves as initialization
749 */
Azael Avalos258c5902014-09-29 20:40:07 -0600750 status = tci_raw(dev, in, out);
Azael Avalosa6b53542015-07-31 21:58:15 -0600751 if (ACPI_FAILURE(status))
Azael Avalos5a2813e2014-03-25 20:38:34 -0600752 pr_err("ACPI call to query the accelerometer failed\n");
Azael Avalosea215a3f2015-07-31 21:58:12 -0600753 else if (out[0] == TOS_SUCCESS)
754 dev->accelerometer_supported = 1;
Azael Avalos5a2813e2014-03-25 20:38:34 -0600755}
756
757static int toshiba_accelerometer_get(struct toshiba_acpi_dev *dev,
Azael Avalosa6b53542015-07-31 21:58:15 -0600758 u32 *xy, u32 *z)
Azael Avalos5a2813e2014-03-25 20:38:34 -0600759{
Azael Avalos258c5902014-09-29 20:40:07 -0600760 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER, 0, 1, 0, 0 };
761 u32 out[TCI_WORDS];
Azael Avalos5a2813e2014-03-25 20:38:34 -0600762 acpi_status status;
763
764 /* Check the Accelerometer status */
Azael Avalos258c5902014-09-29 20:40:07 -0600765 status = tci_raw(dev, in, out);
Azael Avalosa6b53542015-07-31 21:58:15 -0600766 if (ACPI_FAILURE(status)) {
Azael Avalos5a2813e2014-03-25 20:38:34 -0600767 pr_err("ACPI call to query the accelerometer failed\n");
768 return -EIO;
Azael Avalose1a949c2015-07-31 21:58:14 -0600769 } else if (out[0] == TOS_NOT_SUPPORTED) {
770 return -ENODEV;
771 } else if (out[0] == TOS_SUCCESS) {
772 *xy = out[2];
773 *z = out[4];
774 return 0;
Azael Avalos5a2813e2014-03-25 20:38:34 -0600775 }
776
Azael Avalose1a949c2015-07-31 21:58:14 -0600777 return -EIO;
Azael Avalos5a2813e2014-03-25 20:38:34 -0600778}
Azael Avalosdef6c4e2014-03-25 20:38:33 -0600779
Azael Avalose26ffe52015-01-18 18:30:22 -0700780/* Sleep (Charge and Music) utilities support */
Azael Avalosc8c91842015-04-02 19:26:20 -0600781static void toshiba_usb_sleep_charge_available(struct toshiba_acpi_dev *dev)
782{
783 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
784 u32 out[TCI_WORDS];
785 acpi_status status;
786
Azael Avalosc8c91842015-04-02 19:26:20 -0600787 dev->usb_sleep_charge_supported = 0;
788
789 if (!sci_open(dev))
790 return;
791
792 status = tci_raw(dev, in, out);
Azael Avalos8baec452015-05-06 09:35:12 -0600793 if (ACPI_FAILURE(status)) {
Azael Avalosc8c91842015-04-02 19:26:20 -0600794 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
795 sci_close(dev);
796 return;
797 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalosc8c91842015-04-02 19:26:20 -0600798 sci_close(dev);
799 return;
800 } else if (out[0] == TOS_SUCCESS) {
801 dev->usbsc_mode_base = out[4];
802 }
803
804 in[5] = SCI_USB_CHARGE_BAT_LVL;
805 status = tci_raw(dev, in, out);
Azael Avalosea215a3f2015-07-31 21:58:12 -0600806 sci_close(dev);
Azael Avalos8baec452015-05-06 09:35:12 -0600807 if (ACPI_FAILURE(status)) {
Azael Avalosc8c91842015-04-02 19:26:20 -0600808 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
Azael Avalosc8c91842015-04-02 19:26:20 -0600809 } else if (out[0] == TOS_SUCCESS) {
810 dev->usbsc_bat_level = out[2];
Azael Avalosea215a3f2015-07-31 21:58:12 -0600811 /* Flag as supported */
Azael Avalosc8c91842015-04-02 19:26:20 -0600812 dev->usb_sleep_charge_supported = 1;
813 }
814
Azael Avalosc8c91842015-04-02 19:26:20 -0600815}
816
Azael Avalose26ffe52015-01-18 18:30:22 -0700817static int toshiba_usb_sleep_charge_get(struct toshiba_acpi_dev *dev,
818 u32 *mode)
819{
820 u32 result;
821
822 if (!sci_open(dev))
823 return -EIO;
824
825 result = sci_read(dev, SCI_USB_SLEEP_CHARGE, mode);
826 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600827 if (result == TOS_FAILURE)
Azael Avalose26ffe52015-01-18 18:30:22 -0700828 pr_err("ACPI call to set USB S&C mode failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600829 else if (result == TOS_NOT_SUPPORTED)
Azael Avalose26ffe52015-01-18 18:30:22 -0700830 return -ENODEV;
Azael Avalose26ffe52015-01-18 18:30:22 -0700831
Azael Avalose1a949c2015-07-31 21:58:14 -0600832 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalose26ffe52015-01-18 18:30:22 -0700833}
834
835static int toshiba_usb_sleep_charge_set(struct toshiba_acpi_dev *dev,
836 u32 mode)
837{
838 u32 result;
839
840 if (!sci_open(dev))
841 return -EIO;
842
843 result = sci_write(dev, SCI_USB_SLEEP_CHARGE, mode);
844 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600845 if (result == TOS_FAILURE)
Azael Avalose26ffe52015-01-18 18:30:22 -0700846 pr_err("ACPI call to set USB S&C mode failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600847 else if (result == TOS_NOT_SUPPORTED)
Azael Avalose26ffe52015-01-18 18:30:22 -0700848 return -ENODEV;
Azael Avalose26ffe52015-01-18 18:30:22 -0700849
Azael Avalose1a949c2015-07-31 21:58:14 -0600850 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalose26ffe52015-01-18 18:30:22 -0700851}
852
Azael Avalos182bcaa2015-01-18 18:30:23 -0700853static int toshiba_sleep_functions_status_get(struct toshiba_acpi_dev *dev,
854 u32 *mode)
855{
856 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
857 u32 out[TCI_WORDS];
858 acpi_status status;
859
860 if (!sci_open(dev))
861 return -EIO;
862
863 in[5] = SCI_USB_CHARGE_BAT_LVL;
864 status = tci_raw(dev, in, out);
865 sci_close(dev);
Azael Avalos8baec452015-05-06 09:35:12 -0600866 if (ACPI_FAILURE(status)) {
Azael Avalos182bcaa2015-01-18 18:30:23 -0700867 pr_err("ACPI call to get USB S&C battery level failed\n");
Azael Avalos182bcaa2015-01-18 18:30:23 -0700868 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalos182bcaa2015-01-18 18:30:23 -0700869 return -ENODEV;
Azael Avalose1a949c2015-07-31 21:58:14 -0600870 } else if (out[0] == TOS_SUCCESS) {
871 *mode = out[2];
872 return 0;
Azael Avalos182bcaa2015-01-18 18:30:23 -0700873 }
874
Azael Avalose1a949c2015-07-31 21:58:14 -0600875 return -EIO;
Azael Avalos182bcaa2015-01-18 18:30:23 -0700876}
877
878static int toshiba_sleep_functions_status_set(struct toshiba_acpi_dev *dev,
879 u32 mode)
880{
881 u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
882 u32 out[TCI_WORDS];
883 acpi_status status;
884
885 if (!sci_open(dev))
886 return -EIO;
887
888 in[2] = mode;
889 in[5] = SCI_USB_CHARGE_BAT_LVL;
890 status = tci_raw(dev, in, out);
891 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600892 if (ACPI_FAILURE(status))
Azael Avalos182bcaa2015-01-18 18:30:23 -0700893 pr_err("ACPI call to set USB S&C battery level failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600894 else if (out[0] == TOS_NOT_SUPPORTED)
Azael Avalos182bcaa2015-01-18 18:30:23 -0700895 return -ENODEV;
Azael Avalos182bcaa2015-01-18 18:30:23 -0700896
Azael Avalose1a949c2015-07-31 21:58:14 -0600897 return out[0] == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos182bcaa2015-01-18 18:30:23 -0700898}
899
Azael Avalosbb3fe012015-01-18 18:30:24 -0700900static int toshiba_usb_rapid_charge_get(struct toshiba_acpi_dev *dev,
901 u32 *state)
902{
903 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
904 u32 out[TCI_WORDS];
905 acpi_status status;
906
907 if (!sci_open(dev))
908 return -EIO;
909
910 in[5] = SCI_USB_CHARGE_RAPID_DSP;
911 status = tci_raw(dev, in, out);
912 sci_close(dev);
Azael Avalos8baec452015-05-06 09:35:12 -0600913 if (ACPI_FAILURE(status)) {
Azael Avalosbb26f182015-04-02 19:26:21 -0600914 pr_err("ACPI call to get USB Rapid Charge failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600915 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalosbb3fe012015-01-18 18:30:24 -0700916 return -ENODEV;
Azael Avalose1a949c2015-07-31 21:58:14 -0600917 } else if (out[0] == TOS_SUCCESS || out[0] == TOS_SUCCESS2) {
918 *state = out[2];
919 return 0;
Azael Avalosbb3fe012015-01-18 18:30:24 -0700920 }
921
Azael Avalose1a949c2015-07-31 21:58:14 -0600922 return -EIO;
Azael Avalosbb3fe012015-01-18 18:30:24 -0700923}
924
925static int toshiba_usb_rapid_charge_set(struct toshiba_acpi_dev *dev,
926 u32 state)
927{
928 u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
929 u32 out[TCI_WORDS];
930 acpi_status status;
931
932 if (!sci_open(dev))
933 return -EIO;
934
935 in[2] = state;
936 in[5] = SCI_USB_CHARGE_RAPID_DSP;
937 status = tci_raw(dev, in, out);
938 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600939 if (ACPI_FAILURE(status))
Azael Avalosbb26f182015-04-02 19:26:21 -0600940 pr_err("ACPI call to set USB Rapid Charge failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600941 else if (out[0] == TOS_NOT_SUPPORTED)
Azael Avalosbb3fe012015-01-18 18:30:24 -0700942 return -ENODEV;
Azael Avalosbb3fe012015-01-18 18:30:24 -0700943
Azael Avalose1a949c2015-07-31 21:58:14 -0600944 return (out[0] == TOS_SUCCESS || out[0] == TOS_SUCCESS2) ? 0 : -EIO;
Azael Avalosbb3fe012015-01-18 18:30:24 -0700945}
946
Azael Avalos172ce0a2015-01-18 18:30:25 -0700947static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev *dev, u32 *state)
948{
949 u32 result;
950
951 if (!sci_open(dev))
952 return -EIO;
953
954 result = sci_read(dev, SCI_USB_SLEEP_MUSIC, state);
955 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600956 if (result == TOS_FAILURE)
Azael Avalosbb26f182015-04-02 19:26:21 -0600957 pr_err("ACPI call to get Sleep and Music failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600958 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos172ce0a2015-01-18 18:30:25 -0700959 return -ENODEV;
Azael Avalos172ce0a2015-01-18 18:30:25 -0700960
Azael Avaloscf680ea2015-09-09 11:25:44 -0600961 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos172ce0a2015-01-18 18:30:25 -0700962}
963
964static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev *dev, u32 state)
965{
966 u32 result;
967
968 if (!sci_open(dev))
969 return -EIO;
970
971 result = sci_write(dev, SCI_USB_SLEEP_MUSIC, state);
972 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600973 if (result == TOS_FAILURE)
Azael Avalosbb26f182015-04-02 19:26:21 -0600974 pr_err("ACPI call to set Sleep and Music failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600975 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos172ce0a2015-01-18 18:30:25 -0700976 return -ENODEV;
Azael Avalos172ce0a2015-01-18 18:30:25 -0700977
Azael Avalose1a949c2015-07-31 21:58:14 -0600978 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos172ce0a2015-01-18 18:30:25 -0700979}
980
Azael Avalosbae84192015-02-10 21:09:18 -0700981/* Keyboard function keys */
982static int toshiba_function_keys_get(struct toshiba_acpi_dev *dev, u32 *mode)
983{
984 u32 result;
985
986 if (!sci_open(dev))
987 return -EIO;
988
989 result = sci_read(dev, SCI_KBD_FUNCTION_KEYS, mode);
990 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -0600991 if (result == TOS_FAILURE)
Azael Avalosbae84192015-02-10 21:09:18 -0700992 pr_err("ACPI call to get KBD function keys failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -0600993 else if (result == TOS_NOT_SUPPORTED)
Azael Avalosbae84192015-02-10 21:09:18 -0700994 return -ENODEV;
Azael Avalosbae84192015-02-10 21:09:18 -0700995
Azael Avalose1a949c2015-07-31 21:58:14 -0600996 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
Azael Avalosbae84192015-02-10 21:09:18 -0700997}
998
999static int toshiba_function_keys_set(struct toshiba_acpi_dev *dev, u32 mode)
1000{
1001 u32 result;
1002
1003 if (!sci_open(dev))
1004 return -EIO;
1005
1006 result = sci_write(dev, SCI_KBD_FUNCTION_KEYS, mode);
1007 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -06001008 if (result == TOS_FAILURE)
Azael Avalosbae84192015-02-10 21:09:18 -07001009 pr_err("ACPI call to set KBD function keys failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -06001010 else if (result == TOS_NOT_SUPPORTED)
Azael Avalosbae84192015-02-10 21:09:18 -07001011 return -ENODEV;
Azael Avalosbae84192015-02-10 21:09:18 -07001012
Azael Avalose1a949c2015-07-31 21:58:14 -06001013 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
Azael Avalosbae84192015-02-10 21:09:18 -07001014}
1015
Azael Avalos35d53ce2015-02-10 21:09:19 -07001016/* Panel Power ON */
1017static int toshiba_panel_power_on_get(struct toshiba_acpi_dev *dev, u32 *state)
1018{
1019 u32 result;
1020
1021 if (!sci_open(dev))
1022 return -EIO;
1023
1024 result = sci_read(dev, SCI_PANEL_POWER_ON, state);
1025 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -06001026 if (result == TOS_FAILURE)
Azael Avalos35d53ce2015-02-10 21:09:19 -07001027 pr_err("ACPI call to get Panel Power ON failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -06001028 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos35d53ce2015-02-10 21:09:19 -07001029 return -ENODEV;
Azael Avalos35d53ce2015-02-10 21:09:19 -07001030
Azael Avalose1a949c2015-07-31 21:58:14 -06001031 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos35d53ce2015-02-10 21:09:19 -07001032}
1033
1034static int toshiba_panel_power_on_set(struct toshiba_acpi_dev *dev, u32 state)
1035{
1036 u32 result;
1037
1038 if (!sci_open(dev))
1039 return -EIO;
1040
1041 result = sci_write(dev, SCI_PANEL_POWER_ON, state);
1042 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -06001043 if (result == TOS_FAILURE)
Azael Avalos35d53ce2015-02-10 21:09:19 -07001044 pr_err("ACPI call to set Panel Power ON failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -06001045 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos35d53ce2015-02-10 21:09:19 -07001046 return -ENODEV;
Azael Avalos35d53ce2015-02-10 21:09:19 -07001047
Azael Avalose1a949c2015-07-31 21:58:14 -06001048 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos35d53ce2015-02-10 21:09:19 -07001049}
1050
Azael Avalos17fe4b32015-02-10 21:09:20 -07001051/* USB Three */
1052static int toshiba_usb_three_get(struct toshiba_acpi_dev *dev, u32 *state)
1053{
1054 u32 result;
1055
1056 if (!sci_open(dev))
1057 return -EIO;
1058
1059 result = sci_read(dev, SCI_USB_THREE, state);
1060 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -06001061 if (result == TOS_FAILURE)
Azael Avalos17fe4b32015-02-10 21:09:20 -07001062 pr_err("ACPI call to get USB 3 failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -06001063 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos17fe4b32015-02-10 21:09:20 -07001064 return -ENODEV;
Azael Avalos17fe4b32015-02-10 21:09:20 -07001065
Azael Avalose1a949c2015-07-31 21:58:14 -06001066 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
Azael Avalos17fe4b32015-02-10 21:09:20 -07001067}
1068
1069static int toshiba_usb_three_set(struct toshiba_acpi_dev *dev, u32 state)
1070{
1071 u32 result;
1072
1073 if (!sci_open(dev))
1074 return -EIO;
1075
1076 result = sci_write(dev, SCI_USB_THREE, state);
1077 sci_close(dev);
Azael Avalosa6b53542015-07-31 21:58:15 -06001078 if (result == TOS_FAILURE)
Azael Avalos17fe4b32015-02-10 21:09:20 -07001079 pr_err("ACPI call to set USB 3 failed\n");
Azael Avalosa6b53542015-07-31 21:58:15 -06001080 else if (result == TOS_NOT_SUPPORTED)
Azael Avalos17fe4b32015-02-10 21:09:20 -07001081 return -ENODEV;
Azael Avalos17fe4b32015-02-10 21:09:20 -07001082
Azael Avalose1a949c2015-07-31 21:58:14 -06001083 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
Azael Avalos17fe4b32015-02-10 21:09:20 -07001084}
1085
Azael Avalos56e6b352015-03-20 16:55:16 -06001086/* Hotkey Event type */
1087static int toshiba_hotkey_event_type_get(struct toshiba_acpi_dev *dev,
1088 u32 *type)
1089{
Azael Avalos3b876002015-05-06 09:35:09 -06001090 u32 in[TCI_WORDS] = { HCI_GET, HCI_SYSTEM_INFO, 0x03, 0, 0, 0 };
1091 u32 out[TCI_WORDS];
1092 acpi_status status;
Azael Avalos56e6b352015-03-20 16:55:16 -06001093
Azael Avalos3b876002015-05-06 09:35:09 -06001094 status = tci_raw(dev, in, out);
1095 if (ACPI_FAILURE(status)) {
Azael Avalos56e6b352015-03-20 16:55:16 -06001096 pr_err("ACPI call to get System type failed\n");
Azael Avalos3b876002015-05-06 09:35:09 -06001097 } else if (out[0] == TOS_NOT_SUPPORTED) {
Azael Avalos56e6b352015-03-20 16:55:16 -06001098 return -ENODEV;
Azael Avalose1a949c2015-07-31 21:58:14 -06001099 } else if (out[0] == TOS_SUCCESS) {
1100 *type = out[3];
1101 return 0;
Azael Avalos56e6b352015-03-20 16:55:16 -06001102 }
1103
Azael Avalose1a949c2015-07-31 21:58:14 -06001104 return -EIO;
Azael Avalos56e6b352015-03-20 16:55:16 -06001105}
1106
Azael Avalos6873f462015-11-23 10:49:10 -07001107/* Wireless status (RFKill, WLAN, BT, WWAN) */
1108static int toshiba_wireless_status(struct toshiba_acpi_dev *dev)
1109{
1110 u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1111 u32 out[TCI_WORDS];
1112 acpi_status status;
1113
1114 in[3] = HCI_WIRELESS_STATUS;
1115 status = tci_raw(dev, in, out);
1116
1117 if (ACPI_FAILURE(status)) {
1118 pr_err("ACPI call to get Wireless status failed\n");
1119 return -EIO;
1120 }
1121
1122 if (out[0] == TOS_NOT_SUPPORTED)
1123 return -ENODEV;
1124
1125 if (out[0] != TOS_SUCCESS)
1126 return -EIO;
1127
1128 dev->killswitch = !!(out[2] & HCI_WIRELESS_STATUS);
1129
1130 return 0;
1131}
1132
1133/* WWAN */
1134static void toshiba_wwan_available(struct toshiba_acpi_dev *dev)
1135{
1136 u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1137 u32 out[TCI_WORDS];
1138 acpi_status status;
1139
1140 dev->wwan_supported = 0;
1141
1142 /*
1143 * WWAN support can be queried by setting the in[3] value to
1144 * HCI_WIRELESS_WWAN (0x03).
1145 *
1146 * If supported, out[0] contains TOS_SUCCESS and out[2] contains
1147 * HCI_WIRELESS_WWAN_STATUS (0x2000).
1148 *
1149 * If not supported, out[0] contains TOS_INPUT_DATA_ERROR (0x8300)
1150 * or TOS_NOT_SUPPORTED (0x8000).
1151 */
1152 in[3] = HCI_WIRELESS_WWAN;
1153 status = tci_raw(dev, in, out);
1154
1155 if (ACPI_FAILURE(status)) {
1156 pr_err("ACPI call to get WWAN status failed\n");
1157 return;
1158 }
1159
1160 if (out[0] != TOS_SUCCESS)
1161 return;
1162
1163 dev->wwan_supported = (out[2] == HCI_WIRELESS_WWAN_STATUS);
1164}
1165
1166static int toshiba_wwan_set(struct toshiba_acpi_dev *dev, u32 state)
1167{
1168 u32 in[TCI_WORDS] = { HCI_SET, HCI_WIRELESS, state, 0, 0, 0 };
1169 u32 out[TCI_WORDS];
1170 acpi_status status;
1171
1172 in[3] = HCI_WIRELESS_WWAN_STATUS;
1173 status = tci_raw(dev, in, out);
1174
1175 if (ACPI_FAILURE(status)) {
1176 pr_err("ACPI call to set WWAN status failed\n");
1177 return -EIO;
1178 }
1179
1180 if (out[0] == TOS_NOT_SUPPORTED)
1181 return -ENODEV;
1182
1183 if (out[0] != TOS_SUCCESS)
1184 return -EIO;
1185
1186 /*
1187 * Some devices only need to call HCI_WIRELESS_WWAN_STATUS to
1188 * (de)activate the device, but some others need the
1189 * HCI_WIRELESS_WWAN_POWER call as well.
1190 */
1191 in[3] = HCI_WIRELESS_WWAN_POWER;
1192 status = tci_raw(dev, in, out);
1193
1194 if (ACPI_FAILURE(status)) {
1195 pr_err("ACPI call to set WWAN power failed\n");
1196 return -EIO;
1197 }
1198
1199 if (out[0] == TOS_NOT_SUPPORTED)
1200 return -ENODEV;
1201
1202 return out[0] == TOS_SUCCESS ? 0 : -EIO;
1203}
1204
Azael Avalos763ff322016-01-25 11:29:10 -07001205/* Cooling Method */
1206static void toshiba_cooling_method_available(struct toshiba_acpi_dev *dev)
1207{
1208 u32 in[TCI_WORDS] = { HCI_GET, HCI_COOLING_METHOD, 0, 0, 0, 0 };
1209 u32 out[TCI_WORDS];
1210 acpi_status status;
1211
1212 dev->cooling_method_supported = 0;
1213 dev->max_cooling_method = 0;
1214
1215 status = tci_raw(dev, in, out);
1216 if (ACPI_FAILURE(status))
1217 pr_err("ACPI call to get Cooling Method failed\n");
1218
1219 if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
1220 return;
1221
1222 dev->cooling_method_supported = 1;
1223 dev->max_cooling_method = out[3];
1224}
1225
1226static int toshiba_cooling_method_get(struct toshiba_acpi_dev *dev, u32 *state)
1227{
1228 u32 result = hci_read(dev, HCI_COOLING_METHOD, state);
1229
1230 if (result == TOS_FAILURE)
1231 pr_err("ACPI call to get Cooling Method failed\n");
1232
1233 if (result == TOS_NOT_SUPPORTED)
1234 return -ENODEV;
1235
1236 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1237}
1238
1239static int toshiba_cooling_method_set(struct toshiba_acpi_dev *dev, u32 state)
1240{
1241 u32 result = hci_write(dev, HCI_COOLING_METHOD, state);
1242
1243 if (result == TOS_FAILURE)
1244 pr_err("ACPI call to get Cooling Method failed\n");
1245
1246 if (result == TOS_NOT_SUPPORTED)
1247 return -ENODEV;
1248
1249 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1250}
1251
Azael Avalos3f75bbe2015-05-06 09:35:11 -06001252/* Transflective Backlight */
Azael Avalos695f6062015-07-22 18:09:13 -06001253static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 *status)
Akio Idehara121b7b02012-04-06 01:46:43 +09001254{
Azael Avalose1a949c2015-07-31 21:58:14 -06001255 u32 result = hci_read(dev, HCI_TR_BACKLIGHT, status);
Akio Idehara121b7b02012-04-06 01:46:43 +09001256
Azael Avalose1a949c2015-07-31 21:58:14 -06001257 if (result == TOS_FAILURE)
1258 pr_err("ACPI call to get Transflective Backlight failed\n");
1259 else if (result == TOS_NOT_SUPPORTED)
1260 return -ENODEV;
1261
1262 return result == TOS_SUCCESS ? 0 : -EIO;
Akio Idehara121b7b02012-04-06 01:46:43 +09001263}
1264
Azael Avalos695f6062015-07-22 18:09:13 -06001265static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 status)
Akio Idehara121b7b02012-04-06 01:46:43 +09001266{
Azael Avalose1a949c2015-07-31 21:58:14 -06001267 u32 result = hci_write(dev, HCI_TR_BACKLIGHT, !status);
Akio Idehara121b7b02012-04-06 01:46:43 +09001268
Azael Avalose1a949c2015-07-31 21:58:14 -06001269 if (result == TOS_FAILURE)
1270 pr_err("ACPI call to set Transflective Backlight failed\n");
1271 else if (result == TOS_NOT_SUPPORTED)
1272 return -ENODEV;
1273
1274 return result == TOS_SUCCESS ? 0 : -EIO;
Akio Idehara121b7b02012-04-06 01:46:43 +09001275}
1276
Azael Avalos3f75bbe2015-05-06 09:35:11 -06001277static struct proc_dir_entry *toshiba_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Azael Avalos3f75bbe2015-05-06 09:35:11 -06001279/* LCD Brightness */
Seth Forshee62cce752012-04-19 11:23:50 -05001280static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Azael Avalose1a949c2015-07-31 21:58:14 -06001282 u32 result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 u32 value;
Akio Idehara121b7b02012-04-06 01:46:43 +09001284 int brightness = 0;
1285
1286 if (dev->tr_backlight_supported) {
Azael Avalos695f6062015-07-22 18:09:13 -06001287 int ret = get_tr_backlight_status(dev, &value);
Azael Avalosb5163992015-02-10 23:43:56 -07001288
Akio Idehara121b7b02012-04-06 01:46:43 +09001289 if (ret)
1290 return ret;
Azael Avalos695f6062015-07-22 18:09:13 -06001291 if (value)
Akio Idehara121b7b02012-04-06 01:46:43 +09001292 return 0;
1293 brightness++;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Azael Avalose1a949c2015-07-31 21:58:14 -06001296 result = hci_read(dev, HCI_LCD_BRIGHTNESS, &value);
1297 if (result == TOS_FAILURE)
1298 pr_err("ACPI call to get LCD Brightness failed\n");
1299 else if (result == TOS_NOT_SUPPORTED)
1300 return -ENODEV;
1301 if (result == TOS_SUCCESS)
Akio Idehara121b7b02012-04-06 01:46:43 +09001302 return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT);
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001303
1304 return -EIO;
Holger Machtc9263552006-10-20 14:30:29 -07001305}
1306
Seth Forshee62cce752012-04-19 11:23:50 -05001307static int get_lcd_brightness(struct backlight_device *bd)
1308{
1309 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Azael Avalosb5163992015-02-10 23:43:56 -07001310
Seth Forshee62cce752012-04-19 11:23:50 -05001311 return __get_lcd_brightness(dev);
1312}
1313
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001314static int lcd_proc_show(struct seq_file *m, void *v)
Holger Machtc9263552006-10-20 14:30:29 -07001315{
Seth Forshee135740d2011-09-20 16:55:49 -05001316 struct toshiba_acpi_dev *dev = m->private;
Akio Idehara121b7b02012-04-06 01:46:43 +09001317 int levels;
Azael Avalose1a949c2015-07-31 21:58:14 -06001318 int value;
Holger Machtc9263552006-10-20 14:30:29 -07001319
Seth Forshee135740d2011-09-20 16:55:49 -05001320 if (!dev->backlight_dev)
1321 return -ENODEV;
1322
Akio Idehara121b7b02012-04-06 01:46:43 +09001323 levels = dev->backlight_dev->props.max_brightness + 1;
Seth Forshee62cce752012-04-19 11:23:50 -05001324 value = get_lcd_brightness(dev->backlight_dev);
Holger Machtc9263552006-10-20 14:30:29 -07001325 if (value >= 0) {
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001326 seq_printf(m, "brightness: %d\n", value);
Akio Idehara121b7b02012-04-06 01:46:43 +09001327 seq_printf(m, "brightness_levels: %d\n", levels);
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001331 pr_err("Error reading LCD brightness\n");
Azael Avalose1a949c2015-07-31 21:58:14 -06001332
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001333 return -EIO;
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001334}
1335
1336static int lcd_proc_open(struct inode *inode, struct file *file)
1337{
Al Virod9dda782013-03-31 18:16:14 -04001338 return single_open(file, lcd_proc_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Seth Forshee62cce752012-04-19 11:23:50 -05001341static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
Holger Machtc9263552006-10-20 14:30:29 -07001342{
Azael Avalose1a949c2015-07-31 21:58:14 -06001343 u32 result;
Holger Machtc9263552006-10-20 14:30:29 -07001344
Akio Idehara121b7b02012-04-06 01:46:43 +09001345 if (dev->tr_backlight_supported) {
Azael Avalos695f6062015-07-22 18:09:13 -06001346 int ret = set_tr_backlight_status(dev, !value);
Azael Avalosb5163992015-02-10 23:43:56 -07001347
Akio Idehara121b7b02012-04-06 01:46:43 +09001348 if (ret)
1349 return ret;
1350 if (value)
1351 value--;
1352 }
1353
Azael Avalosa39f46d2014-11-24 19:29:36 -07001354 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
Azael Avalose1a949c2015-07-31 21:58:14 -06001355 result = hci_write(dev, HCI_LCD_BRIGHTNESS, value);
1356 if (result == TOS_FAILURE)
1357 pr_err("ACPI call to set LCD Brightness failed\n");
1358 else if (result == TOS_NOT_SUPPORTED)
1359 return -ENODEV;
1360
1361 return result == TOS_SUCCESS ? 0 : -EIO;
Holger Machtc9263552006-10-20 14:30:29 -07001362}
1363
1364static int set_lcd_status(struct backlight_device *bd)
1365{
Seth Forshee135740d2011-09-20 16:55:49 -05001366 struct toshiba_acpi_dev *dev = bl_get_data(bd);
Azael Avalosb5163992015-02-10 23:43:56 -07001367
Seth Forshee62cce752012-04-19 11:23:50 -05001368 return set_lcd_brightness(dev, bd->props.brightness);
Holger Machtc9263552006-10-20 14:30:29 -07001369}
1370
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001371static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
1372 size_t count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Al Virod9dda782013-03-31 18:16:14 -04001374 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001375 char cmd[42];
1376 size_t len;
Akio Idehara121b7b02012-04-06 01:46:43 +09001377 int levels = dev->backlight_dev->props.max_brightness + 1;
Azael Avalose1a949c2015-07-31 21:58:14 -06001378 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001380 len = min(count, sizeof(cmd) - 1);
1381 if (copy_from_user(cmd, buf, len))
1382 return -EFAULT;
1383 cmd[len] = '\0';
1384
Azael Avalose1a949c2015-07-31 21:58:14 -06001385 if (sscanf(cmd, " brightness : %i", &value) != 1 &&
1386 value < 0 && value > levels)
1387 return -EINVAL;
1388
1389 if (set_lcd_brightness(dev, value))
1390 return -EIO;
1391
1392 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001395static const struct file_operations lcd_proc_fops = {
1396 .owner = THIS_MODULE,
1397 .open = lcd_proc_open,
1398 .read = seq_read,
1399 .llseek = seq_lseek,
1400 .release = single_release,
1401 .write = lcd_proc_write,
1402};
1403
Azael Avalose1a949c2015-07-31 21:58:14 -06001404/* Video-Out */
Seth Forshee36d03f92011-09-20 16:55:53 -05001405static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
1406{
Azael Avalose1a949c2015-07-31 21:58:14 -06001407 u32 result = hci_read(dev, HCI_VIDEO_OUT, status);
Seth Forshee36d03f92011-09-20 16:55:53 -05001408
Azael Avalose1a949c2015-07-31 21:58:14 -06001409 if (result == TOS_FAILURE)
1410 pr_err("ACPI call to get Video-Out failed\n");
1411 else if (result == TOS_NOT_SUPPORTED)
1412 return -ENODEV;
1413
1414 return result == TOS_SUCCESS ? 0 : -EIO;
Seth Forshee36d03f92011-09-20 16:55:53 -05001415}
1416
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001417static int video_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Seth Forshee135740d2011-09-20 16:55:49 -05001419 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 u32 value;
1421
Azael Avalose1a949c2015-07-31 21:58:14 -06001422 if (!get_video_status(dev, &value)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
1424 int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001425 int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
Azael Avalosb5163992015-02-10 23:43:56 -07001426
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001427 seq_printf(m, "lcd_out: %d\n", is_lcd);
1428 seq_printf(m, "crt_out: %d\n", is_crt);
1429 seq_printf(m, "tv_out: %d\n", is_tv);
Azael Avalose1a949c2015-07-31 21:58:14 -06001430 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
Azael Avalose1a949c2015-07-31 21:58:14 -06001433 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001436static int video_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Al Virod9dda782013-03-31 18:16:14 -04001438 return single_open(file, video_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001439}
1440
1441static ssize_t video_proc_write(struct file *file, const char __user *buf,
1442 size_t count, loff_t *pos)
1443{
Al Virod9dda782013-03-31 18:16:14 -04001444 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Azael Avalose1a949c2015-07-31 21:58:14 -06001445 char *buffer;
1446 char *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 int remain = count;
1448 int lcd_out = -1;
1449 int crt_out = -1;
1450 int tv_out = -1;
Azael Avalose1a949c2015-07-31 21:58:14 -06001451 int value;
1452 int ret;
Al Virob4482a42007-10-14 19:35:40 +01001453 u32 video_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001455 cmd = kmalloc(count + 1, GFP_KERNEL);
1456 if (!cmd)
1457 return -ENOMEM;
1458 if (copy_from_user(cmd, buf, count)) {
1459 kfree(cmd);
1460 return -EFAULT;
1461 }
1462 cmd[count] = '\0';
1463
1464 buffer = cmd;
1465
Darren Harte0769fe2015-02-11 20:50:08 -08001466 /*
1467 * Scan expression. Multiple expressions may be delimited with ;
1468 * NOTE: To keep scanning simple, invalid fields are ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
1470 while (remain) {
1471 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
1472 lcd_out = value & 1;
1473 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
1474 crt_out = value & 1;
1475 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
1476 tv_out = value & 1;
Darren Harte0769fe2015-02-11 20:50:08 -08001477 /* Advance to one character past the next ; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 do {
1479 ++buffer;
1480 --remain;
Azael Avalosb5163992015-02-10 23:43:56 -07001481 } while (remain && *(buffer - 1) != ';');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001484 kfree(cmd);
1485
Seth Forshee36d03f92011-09-20 16:55:53 -05001486 ret = get_video_status(dev, &video_out);
1487 if (!ret) {
Harvey Harrison9e113e02008-09-22 14:37:29 -07001488 unsigned int new_video_out = video_out;
Azael Avalosb5163992015-02-10 23:43:56 -07001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (lcd_out != -1)
1491 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
1492 if (crt_out != -1)
1493 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
1494 if (tv_out != -1)
1495 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
Darren Harte0769fe2015-02-11 20:50:08 -08001496 /*
1497 * To avoid unnecessary video disruption, only write the new
Azael Avalos3f75bbe2015-05-06 09:35:11 -06001498 * video setting if something changed.
1499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (new_video_out != video_out)
Seth Forshee32bcd5c2011-09-20 16:55:50 -05001501 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503
Azael Avalose1a949c2015-07-31 21:58:14 -06001504 return ret ? -EIO : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001507static const struct file_operations video_proc_fops = {
1508 .owner = THIS_MODULE,
1509 .open = video_proc_open,
1510 .read = seq_read,
1511 .llseek = seq_lseek,
1512 .release = single_release,
1513 .write = video_proc_write,
1514};
1515
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001516/* Fan status */
Seth Forshee36d03f92011-09-20 16:55:53 -05001517static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
1518{
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001519 u32 result = hci_read(dev, HCI_FAN, status);
Seth Forshee36d03f92011-09-20 16:55:53 -05001520
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001521 if (result == TOS_FAILURE)
1522 pr_err("ACPI call to get Fan status failed\n");
1523 else if (result == TOS_NOT_SUPPORTED)
1524 return -ENODEV;
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001525
Azael Avalose1a949c2015-07-31 21:58:14 -06001526 return result == TOS_SUCCESS ? 0 : -EIO;
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001527}
1528
1529static int set_fan_status(struct toshiba_acpi_dev *dev, u32 status)
1530{
1531 u32 result = hci_write(dev, HCI_FAN, status);
1532
1533 if (result == TOS_FAILURE)
1534 pr_err("ACPI call to set Fan status failed\n");
1535 else if (result == TOS_NOT_SUPPORTED)
1536 return -ENODEV;
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001537
Azael Avalose1a949c2015-07-31 21:58:14 -06001538 return result == TOS_SUCCESS ? 0 : -EIO;
Seth Forshee36d03f92011-09-20 16:55:53 -05001539}
1540
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001541static int fan_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Seth Forshee135740d2011-09-20 16:55:49 -05001543 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 u32 value;
1545
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001546 if (get_fan_status(dev, &value))
1547 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001549 seq_printf(m, "running: %d\n", (value > 0));
1550 seq_printf(m, "force_on: %d\n", dev->force_fan);
1551
1552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001555static int fan_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Al Virod9dda782013-03-31 18:16:14 -04001557 return single_open(file, fan_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001558}
1559
1560static ssize_t fan_proc_write(struct file *file, const char __user *buf,
1561 size_t count, loff_t *pos)
1562{
Al Virod9dda782013-03-31 18:16:14 -04001563 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001564 char cmd[42];
1565 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 int value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001568 len = min(count, sizeof(cmd) - 1);
1569 if (copy_from_user(cmd, buf, len))
1570 return -EFAULT;
1571 cmd[len] = '\0';
1572
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001573 if (sscanf(cmd, " force_on : %i", &value) != 1 &&
1574 value != 0 && value != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EINVAL;
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001576
1577 if (set_fan_status(dev, value))
1578 return -EIO;
1579
1580 dev->force_fan = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 return count;
1583}
1584
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001585static const struct file_operations fan_proc_fops = {
1586 .owner = THIS_MODULE,
1587 .open = fan_proc_open,
1588 .read = seq_read,
1589 .llseek = seq_lseek,
1590 .release = single_release,
1591 .write = fan_proc_write,
1592};
1593
1594static int keys_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Seth Forshee135740d2011-09-20 16:55:49 -05001596 struct toshiba_acpi_dev *dev = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Seth Forshee135740d2011-09-20 16:55:49 -05001598 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
1599 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
Azael Avalos7deef552015-07-22 18:09:10 -06001600
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001604static int keys_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Al Virod9dda782013-03-31 18:16:14 -04001606 return single_open(file, keys_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001607}
1608
1609static ssize_t keys_proc_write(struct file *file, const char __user *buf,
1610 size_t count, loff_t *pos)
1611{
Al Virod9dda782013-03-31 18:16:14 -04001612 struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001613 char cmd[42];
1614 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 int value;
1616
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001617 len = min(count, sizeof(cmd) - 1);
1618 if (copy_from_user(cmd, buf, len))
1619 return -EFAULT;
1620 cmd[len] = '\0';
1621
Azael Avalosb5163992015-02-10 23:43:56 -07001622 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0)
Seth Forshee135740d2011-09-20 16:55:49 -05001623 dev->key_event_valid = 0;
Azael Avalosb5163992015-02-10 23:43:56 -07001624 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 return count;
1628}
1629
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001630static const struct file_operations keys_proc_fops = {
1631 .owner = THIS_MODULE,
1632 .open = keys_proc_open,
1633 .read = seq_read,
1634 .llseek = seq_lseek,
1635 .release = single_release,
1636 .write = keys_proc_write,
1637};
1638
1639static int version_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001641 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
1642 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
1643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001646static int version_proc_open(struct inode *inode, struct file *file)
1647{
Al Virod9dda782013-03-31 18:16:14 -04001648 return single_open(file, version_proc_show, PDE_DATA(inode));
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001649}
1650
1651static const struct file_operations version_proc_fops = {
1652 .owner = THIS_MODULE,
1653 .open = version_proc_open,
1654 .read = seq_read,
1655 .llseek = seq_lseek,
1656 .release = single_release,
1657};
1658
Darren Harte0769fe2015-02-11 20:50:08 -08001659/*
1660 * Proc and module init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 */
1662
1663#define PROC_TOSHIBA "toshiba"
1664
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08001665static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Seth Forshee36d03f92011-09-20 16:55:53 -05001667 if (dev->backlight_dev)
1668 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1669 &lcd_proc_fops, dev);
1670 if (dev->video_supported)
1671 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1672 &video_proc_fops, dev);
1673 if (dev->fan_supported)
1674 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1675 &fan_proc_fops, dev);
1676 if (dev->hotkey_dev)
1677 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1678 &keys_proc_fops, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05001679 proc_create_data("version", S_IRUGO, toshiba_proc_dir,
1680 &version_proc_fops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Seth Forshee36d03f92011-09-20 16:55:53 -05001683static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Seth Forshee36d03f92011-09-20 16:55:53 -05001685 if (dev->backlight_dev)
1686 remove_proc_entry("lcd", toshiba_proc_dir);
1687 if (dev->video_supported)
1688 remove_proc_entry("video", toshiba_proc_dir);
1689 if (dev->fan_supported)
1690 remove_proc_entry("fan", toshiba_proc_dir);
1691 if (dev->hotkey_dev)
1692 remove_proc_entry("keys", toshiba_proc_dir);
Alexey Dobriyan936c8bc2009-12-21 16:20:02 -08001693 remove_proc_entry("version", toshiba_proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Lionel Debrouxacc24722010-11-16 14:14:02 +01001696static const struct backlight_ops toshiba_backlight_data = {
Akio Idehara121b7b02012-04-06 01:46:43 +09001697 .options = BL_CORE_SUSPENDRESUME,
Seth Forshee62cce752012-04-19 11:23:50 -05001698 .get_brightness = get_lcd_brightness,
1699 .update_status = set_lcd_status,
Holger Machtc9263552006-10-20 14:30:29 -07001700};
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001701
Azael Avalos65e3cf92015-11-23 10:51:30 -07001702/* Keyboard backlight work */
1703static void toshiba_acpi_kbd_bl_work(struct work_struct *work);
1704
1705static DECLARE_WORK(kbd_bl_work, toshiba_acpi_kbd_bl_work);
1706
Azael Avalos360f0f32014-03-25 20:38:31 -06001707/*
1708 * Sysfs files
1709 */
Azael Avalos9d309842015-02-10 23:43:59 -07001710static ssize_t version_show(struct device *dev,
1711 struct device_attribute *attr, char *buf)
Azael Avalosc6c68ff2015-02-10 21:09:16 -07001712{
1713 return sprintf(buf, "%s\n", TOSHIBA_ACPI_VERSION);
1714}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001715static DEVICE_ATTR_RO(version);
Azael Avalosc6c68ff2015-02-10 21:09:16 -07001716
Azael Avalos9d309842015-02-10 23:43:59 -07001717static ssize_t fan_store(struct device *dev,
1718 struct device_attribute *attr,
1719 const char *buf, size_t count)
Azael Avalos94477d42015-02-10 21:09:17 -07001720{
1721 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
Azael Avalos94477d42015-02-10 21:09:17 -07001722 int state;
1723 int ret;
1724
1725 ret = kstrtoint(buf, 0, &state);
1726 if (ret)
1727 return ret;
1728
1729 if (state != 0 && state != 1)
1730 return -EINVAL;
1731
Azael Avalos3e07e5b2015-07-27 19:22:23 -06001732 ret = set_fan_status(toshiba, state);
1733 if (ret)
1734 return ret;
Azael Avalos94477d42015-02-10 21:09:17 -07001735
1736 return count;
1737}
1738
Azael Avalos9d309842015-02-10 23:43:59 -07001739static ssize_t fan_show(struct device *dev,
1740 struct device_attribute *attr, char *buf)
Azael Avalos94477d42015-02-10 21:09:17 -07001741{
1742 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1743 u32 value;
1744 int ret;
1745
1746 ret = get_fan_status(toshiba, &value);
1747 if (ret)
1748 return ret;
1749
1750 return sprintf(buf, "%d\n", value);
1751}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001752static DEVICE_ATTR_RW(fan);
Azael Avalos94477d42015-02-10 21:09:17 -07001753
Azael Avalos9d309842015-02-10 23:43:59 -07001754static ssize_t kbd_backlight_mode_store(struct device *dev,
1755 struct device_attribute *attr,
1756 const char *buf, size_t count)
Azael Avalos360f0f32014-03-25 20:38:31 -06001757{
1758 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
Dan Carpenteraeaac092014-09-03 14:44:37 +03001759 int mode;
Dan Carpenteraeaac092014-09-03 14:44:37 +03001760 int ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001761
Dan Carpenteraeaac092014-09-03 14:44:37 +03001762
1763 ret = kstrtoint(buf, 0, &mode);
1764 if (ret)
1765 return ret;
Azael Avalos93f8c162014-09-12 18:50:36 -06001766
1767 /* Check for supported modes depending on keyboard backlight type */
1768 if (toshiba->kbd_type == 1) {
1769 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1770 if (mode != SCI_KBD_MODE_FNZ && mode != SCI_KBD_MODE_AUTO)
1771 return -EINVAL;
1772 } else if (toshiba->kbd_type == 2) {
1773 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1774 if (mode != SCI_KBD_MODE_AUTO && mode != SCI_KBD_MODE_ON &&
1775 mode != SCI_KBD_MODE_OFF)
1776 return -EINVAL;
1777 }
Azael Avalos360f0f32014-03-25 20:38:31 -06001778
Darren Harte0769fe2015-02-11 20:50:08 -08001779 /*
1780 * Set the Keyboard Backlight Mode where:
Azael Avalos360f0f32014-03-25 20:38:31 -06001781 * Auto - KBD backlight turns off automatically in given time
1782 * FN-Z - KBD backlight "toggles" when hotkey pressed
Azael Avalos93f8c162014-09-12 18:50:36 -06001783 * ON - KBD backlight is always on
1784 * OFF - KBD backlight is always off
Azael Avalos360f0f32014-03-25 20:38:31 -06001785 */
Azael Avalos93f8c162014-09-12 18:50:36 -06001786
1787 /* Only make a change if the actual mode has changed */
Dan Carpenteraeaac092014-09-03 14:44:37 +03001788 if (toshiba->kbd_mode != mode) {
Azael Avalos93f8c162014-09-12 18:50:36 -06001789 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
Azael Avalos1e574db2015-07-22 19:37:49 -06001790 int time = toshiba->kbd_time << HCI_MISC_SHIFT;
Azael Avalos93f8c162014-09-12 18:50:36 -06001791
1792 /* OR the "base time" to the actual method format */
1793 if (toshiba->kbd_type == 1) {
1794 /* Type 1 requires the current mode */
1795 time |= toshiba->kbd_mode;
1796 } else if (toshiba->kbd_type == 2) {
1797 /* Type 2 requires the desired mode */
1798 time |= mode;
1799 }
1800
Dan Carpenteraeaac092014-09-03 14:44:37 +03001801 ret = toshiba_kbd_illum_status_set(toshiba, time);
1802 if (ret)
1803 return ret;
Azael Avalos93f8c162014-09-12 18:50:36 -06001804
Azael Avalos360f0f32014-03-25 20:38:31 -06001805 toshiba->kbd_mode = mode;
Azael Avalos65e3cf92015-11-23 10:51:30 -07001806
1807 /*
1808 * Some laptop models with the second generation backlit
1809 * keyboard (type 2) do not generate the keyboard backlight
1810 * changed event (0x92), and thus, the driver will never update
1811 * the sysfs entries.
1812 *
1813 * The event is generated right when changing the keyboard
1814 * backlight mode and the *notify function will set the
1815 * kbd_event_generated to true.
1816 *
1817 * In case the event is not generated, schedule the keyboard
1818 * backlight work to update the sysfs entries and emulate the
1819 * event via genetlink.
1820 */
1821 if (toshiba->kbd_type == 2 &&
1822 !toshiba_acpi->kbd_event_generated)
1823 schedule_work(&kbd_bl_work);
Azael Avalos360f0f32014-03-25 20:38:31 -06001824 }
1825
1826 return count;
1827}
1828
Azael Avalos9d309842015-02-10 23:43:59 -07001829static ssize_t kbd_backlight_mode_show(struct device *dev,
1830 struct device_attribute *attr,
1831 char *buf)
Azael Avalos360f0f32014-03-25 20:38:31 -06001832{
1833 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1834 u32 time;
1835
1836 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1837 return -EIO;
1838
Azael Avalos93f8c162014-09-12 18:50:36 -06001839 return sprintf(buf, "%i\n", time & SCI_KBD_MODE_MASK);
1840}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001841static DEVICE_ATTR_RW(kbd_backlight_mode);
Azael Avalos93f8c162014-09-12 18:50:36 -06001842
Azael Avalos9d309842015-02-10 23:43:59 -07001843static ssize_t kbd_type_show(struct device *dev,
1844 struct device_attribute *attr, char *buf)
Azael Avalos93f8c162014-09-12 18:50:36 -06001845{
1846 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1847
1848 return sprintf(buf, "%d\n", toshiba->kbd_type);
1849}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001850static DEVICE_ATTR_RO(kbd_type);
Azael Avalos93f8c162014-09-12 18:50:36 -06001851
Azael Avalos9d309842015-02-10 23:43:59 -07001852static ssize_t available_kbd_modes_show(struct device *dev,
1853 struct device_attribute *attr,
1854 char *buf)
Azael Avalos93f8c162014-09-12 18:50:36 -06001855{
1856 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1857
1858 if (toshiba->kbd_type == 1)
Azael Avalos0b498202015-09-09 11:30:09 -06001859 return sprintf(buf, "0x%x 0x%x\n",
Azael Avalos93f8c162014-09-12 18:50:36 -06001860 SCI_KBD_MODE_FNZ, SCI_KBD_MODE_AUTO);
1861
Azael Avalos0b498202015-09-09 11:30:09 -06001862 return sprintf(buf, "0x%x 0x%x 0x%x\n",
Azael Avalos93f8c162014-09-12 18:50:36 -06001863 SCI_KBD_MODE_AUTO, SCI_KBD_MODE_ON, SCI_KBD_MODE_OFF);
Azael Avalos360f0f32014-03-25 20:38:31 -06001864}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001865static DEVICE_ATTR_RO(available_kbd_modes);
Azael Avalos360f0f32014-03-25 20:38:31 -06001866
Azael Avalos9d309842015-02-10 23:43:59 -07001867static ssize_t kbd_backlight_timeout_store(struct device *dev,
1868 struct device_attribute *attr,
1869 const char *buf, size_t count)
Azael Avalos360f0f32014-03-25 20:38:31 -06001870{
1871 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
Azael Avaloseabde0f2014-10-04 12:02:21 -06001872 int time;
1873 int ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001874
Azael Avaloseabde0f2014-10-04 12:02:21 -06001875 ret = kstrtoint(buf, 0, &time);
1876 if (ret)
1877 return ret;
Azael Avalos360f0f32014-03-25 20:38:31 -06001878
Azael Avaloseabde0f2014-10-04 12:02:21 -06001879 /* Check for supported values depending on kbd_type */
1880 if (toshiba->kbd_type == 1) {
1881 if (time < 0 || time > 60)
1882 return -EINVAL;
1883 } else if (toshiba->kbd_type == 2) {
1884 if (time < 1 || time > 60)
1885 return -EINVAL;
1886 }
1887
1888 /* Set the Keyboard Backlight Timeout */
1889
1890 /* Only make a change if the actual timeout has changed */
1891 if (toshiba->kbd_time != time) {
1892 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
Azael Avalos360f0f32014-03-25 20:38:31 -06001893 time = time << HCI_MISC_SHIFT;
Azael Avaloseabde0f2014-10-04 12:02:21 -06001894 /* OR the "base time" to the actual method format */
1895 if (toshiba->kbd_type == 1)
1896 time |= SCI_KBD_MODE_FNZ;
1897 else if (toshiba->kbd_type == 2)
1898 time |= SCI_KBD_MODE_AUTO;
1899
1900 ret = toshiba_kbd_illum_status_set(toshiba, time);
1901 if (ret)
1902 return ret;
1903
Azael Avalos360f0f32014-03-25 20:38:31 -06001904 toshiba->kbd_time = time >> HCI_MISC_SHIFT;
1905 }
1906
1907 return count;
1908}
1909
Azael Avalos9d309842015-02-10 23:43:59 -07001910static ssize_t kbd_backlight_timeout_show(struct device *dev,
1911 struct device_attribute *attr,
1912 char *buf)
Azael Avalos360f0f32014-03-25 20:38:31 -06001913{
1914 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1915 u32 time;
1916
1917 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1918 return -EIO;
1919
1920 return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT);
1921}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001922static DEVICE_ATTR_RW(kbd_backlight_timeout);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001923
Azael Avalos9d309842015-02-10 23:43:59 -07001924static ssize_t touchpad_store(struct device *dev,
1925 struct device_attribute *attr,
1926 const char *buf, size_t count)
Azael Avalos9d8658a2014-03-25 20:38:32 -06001927{
1928 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1929 int state;
Azael Avalosc8a41662014-09-10 21:01:57 -06001930 int ret;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001931
1932 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
Azael Avalosc8a41662014-09-10 21:01:57 -06001933 ret = kstrtoint(buf, 0, &state);
1934 if (ret)
1935 return ret;
1936 if (state != 0 && state != 1)
1937 return -EINVAL;
1938
1939 ret = toshiba_touchpad_set(toshiba, state);
1940 if (ret)
1941 return ret;
Azael Avalos9d8658a2014-03-25 20:38:32 -06001942
1943 return count;
1944}
1945
Azael Avalos9d309842015-02-10 23:43:59 -07001946static ssize_t touchpad_show(struct device *dev,
1947 struct device_attribute *attr, char *buf)
Azael Avalos9d8658a2014-03-25 20:38:32 -06001948{
1949 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1950 u32 state;
1951 int ret;
1952
1953 ret = toshiba_touchpad_get(toshiba, &state);
1954 if (ret < 0)
1955 return ret;
1956
1957 return sprintf(buf, "%i\n", state);
1958}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001959static DEVICE_ATTR_RW(touchpad);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04001960
Azael Avalos9d309842015-02-10 23:43:59 -07001961static ssize_t position_show(struct device *dev,
1962 struct device_attribute *attr, char *buf)
Azael Avalos5a2813e2014-03-25 20:38:34 -06001963{
1964 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1965 u32 xyval, zval, tmp;
1966 u16 x, y, z;
1967 int ret;
1968
1969 xyval = zval = 0;
1970 ret = toshiba_accelerometer_get(toshiba, &xyval, &zval);
1971 if (ret < 0)
1972 return ret;
1973
1974 x = xyval & HCI_ACCEL_MASK;
1975 tmp = xyval >> HCI_MISC_SHIFT;
1976 y = tmp & HCI_ACCEL_MASK;
1977 z = zval & HCI_ACCEL_MASK;
1978
1979 return sprintf(buf, "%d %d %d\n", x, y, z);
1980}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07001981static DEVICE_ATTR_RO(position);
Azael Avalos360f0f32014-03-25 20:38:31 -06001982
Azael Avalos9d309842015-02-10 23:43:59 -07001983static ssize_t usb_sleep_charge_show(struct device *dev,
1984 struct device_attribute *attr, char *buf)
Azael Avalose26ffe52015-01-18 18:30:22 -07001985{
1986 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1987 u32 mode;
1988 int ret;
1989
1990 ret = toshiba_usb_sleep_charge_get(toshiba, &mode);
1991 if (ret < 0)
1992 return ret;
1993
1994 return sprintf(buf, "%x\n", mode & SCI_USB_CHARGE_MODE_MASK);
1995}
1996
Azael Avalos9d309842015-02-10 23:43:59 -07001997static ssize_t usb_sleep_charge_store(struct device *dev,
1998 struct device_attribute *attr,
1999 const char *buf, size_t count)
Azael Avalose26ffe52015-01-18 18:30:22 -07002000{
2001 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2002 u32 mode;
2003 int state;
2004 int ret;
2005
2006 ret = kstrtoint(buf, 0, &state);
2007 if (ret)
2008 return ret;
Darren Harte0769fe2015-02-11 20:50:08 -08002009 /*
2010 * Check for supported values, where:
Azael Avalose26ffe52015-01-18 18:30:22 -07002011 * 0 - Disabled
2012 * 1 - Alternate (Non USB conformant devices that require more power)
2013 * 2 - Auto (USB conformant devices)
Azael Avalosc8c91842015-04-02 19:26:20 -06002014 * 3 - Typical
Azael Avalose26ffe52015-01-18 18:30:22 -07002015 */
Azael Avalosc8c91842015-04-02 19:26:20 -06002016 if (state != 0 && state != 1 && state != 2 && state != 3)
Azael Avalose26ffe52015-01-18 18:30:22 -07002017 return -EINVAL;
2018
2019 /* Set the USB charging mode to internal value */
Azael Avalosc8c91842015-04-02 19:26:20 -06002020 mode = toshiba->usbsc_mode_base;
Azael Avalose26ffe52015-01-18 18:30:22 -07002021 if (state == 0)
Azael Avalosc8c91842015-04-02 19:26:20 -06002022 mode |= SCI_USB_CHARGE_DISABLED;
Azael Avalose26ffe52015-01-18 18:30:22 -07002023 else if (state == 1)
Azael Avalosc8c91842015-04-02 19:26:20 -06002024 mode |= SCI_USB_CHARGE_ALTERNATE;
Azael Avalose26ffe52015-01-18 18:30:22 -07002025 else if (state == 2)
Azael Avalosc8c91842015-04-02 19:26:20 -06002026 mode |= SCI_USB_CHARGE_AUTO;
2027 else if (state == 3)
2028 mode |= SCI_USB_CHARGE_TYPICAL;
Azael Avalose26ffe52015-01-18 18:30:22 -07002029
2030 ret = toshiba_usb_sleep_charge_set(toshiba, mode);
2031 if (ret)
2032 return ret;
2033
2034 return count;
2035}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002036static DEVICE_ATTR_RW(usb_sleep_charge);
Azael Avalose26ffe52015-01-18 18:30:22 -07002037
Azael Avalos182bcaa2015-01-18 18:30:23 -07002038static ssize_t sleep_functions_on_battery_show(struct device *dev,
2039 struct device_attribute *attr,
2040 char *buf)
2041{
2042 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2043 u32 state;
2044 int bat_lvl;
2045 int status;
2046 int ret;
2047 int tmp;
2048
2049 ret = toshiba_sleep_functions_status_get(toshiba, &state);
2050 if (ret < 0)
2051 return ret;
2052
2053 /* Determine the status: 0x4 - Enabled | 0x1 - Disabled */
2054 tmp = state & SCI_USB_CHARGE_BAT_MASK;
2055 status = (tmp == 0x4) ? 1 : 0;
2056 /* Determine the battery level set */
2057 bat_lvl = state >> HCI_MISC_SHIFT;
2058
2059 return sprintf(buf, "%d %d\n", status, bat_lvl);
2060}
2061
2062static ssize_t sleep_functions_on_battery_store(struct device *dev,
2063 struct device_attribute *attr,
2064 const char *buf, size_t count)
2065{
2066 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2067 u32 status;
2068 int value;
2069 int ret;
2070 int tmp;
2071
2072 ret = kstrtoint(buf, 0, &value);
2073 if (ret)
2074 return ret;
2075
Darren Harte0769fe2015-02-11 20:50:08 -08002076 /*
2077 * Set the status of the function:
Azael Avalos182bcaa2015-01-18 18:30:23 -07002078 * 0 - Disabled
2079 * 1-100 - Enabled
2080 */
2081 if (value < 0 || value > 100)
2082 return -EINVAL;
2083
2084 if (value == 0) {
2085 tmp = toshiba->usbsc_bat_level << HCI_MISC_SHIFT;
2086 status = tmp | SCI_USB_CHARGE_BAT_LVL_OFF;
2087 } else {
2088 tmp = value << HCI_MISC_SHIFT;
2089 status = tmp | SCI_USB_CHARGE_BAT_LVL_ON;
2090 }
2091 ret = toshiba_sleep_functions_status_set(toshiba, status);
2092 if (ret < 0)
2093 return ret;
2094
2095 toshiba->usbsc_bat_level = status >> HCI_MISC_SHIFT;
2096
2097 return count;
2098}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002099static DEVICE_ATTR_RW(sleep_functions_on_battery);
Azael Avalos182bcaa2015-01-18 18:30:23 -07002100
Azael Avalos9d309842015-02-10 23:43:59 -07002101static ssize_t usb_rapid_charge_show(struct device *dev,
2102 struct device_attribute *attr, char *buf)
Azael Avalosbb3fe012015-01-18 18:30:24 -07002103{
2104 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2105 u32 state;
2106 int ret;
2107
2108 ret = toshiba_usb_rapid_charge_get(toshiba, &state);
2109 if (ret < 0)
2110 return ret;
2111
2112 return sprintf(buf, "%d\n", state);
2113}
2114
Azael Avalos9d309842015-02-10 23:43:59 -07002115static ssize_t usb_rapid_charge_store(struct device *dev,
2116 struct device_attribute *attr,
2117 const char *buf, size_t count)
Azael Avalosbb3fe012015-01-18 18:30:24 -07002118{
2119 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2120 int state;
2121 int ret;
2122
2123 ret = kstrtoint(buf, 0, &state);
2124 if (ret)
2125 return ret;
2126 if (state != 0 && state != 1)
2127 return -EINVAL;
2128
2129 ret = toshiba_usb_rapid_charge_set(toshiba, state);
2130 if (ret)
2131 return ret;
2132
2133 return count;
2134}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002135static DEVICE_ATTR_RW(usb_rapid_charge);
Azael Avalosbb3fe012015-01-18 18:30:24 -07002136
Azael Avalos9d309842015-02-10 23:43:59 -07002137static ssize_t usb_sleep_music_show(struct device *dev,
2138 struct device_attribute *attr, char *buf)
Azael Avalos172ce0a2015-01-18 18:30:25 -07002139{
2140 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2141 u32 state;
2142 int ret;
2143
2144 ret = toshiba_usb_sleep_music_get(toshiba, &state);
2145 if (ret < 0)
2146 return ret;
2147
2148 return sprintf(buf, "%d\n", state);
2149}
2150
Azael Avalos9d309842015-02-10 23:43:59 -07002151static ssize_t usb_sleep_music_store(struct device *dev,
2152 struct device_attribute *attr,
2153 const char *buf, size_t count)
Azael Avalos172ce0a2015-01-18 18:30:25 -07002154{
2155 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2156 int state;
2157 int ret;
2158
2159 ret = kstrtoint(buf, 0, &state);
2160 if (ret)
2161 return ret;
2162 if (state != 0 && state != 1)
2163 return -EINVAL;
2164
2165 ret = toshiba_usb_sleep_music_set(toshiba, state);
2166 if (ret)
2167 return ret;
2168
2169 return count;
2170}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002171static DEVICE_ATTR_RW(usb_sleep_music);
Azael Avalos172ce0a2015-01-18 18:30:25 -07002172
Azael Avalos9d309842015-02-10 23:43:59 -07002173static ssize_t kbd_function_keys_show(struct device *dev,
2174 struct device_attribute *attr, char *buf)
Azael Avalosbae84192015-02-10 21:09:18 -07002175{
2176 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2177 int mode;
2178 int ret;
2179
2180 ret = toshiba_function_keys_get(toshiba, &mode);
2181 if (ret < 0)
2182 return ret;
2183
2184 return sprintf(buf, "%d\n", mode);
2185}
2186
Azael Avalos9d309842015-02-10 23:43:59 -07002187static ssize_t kbd_function_keys_store(struct device *dev,
2188 struct device_attribute *attr,
2189 const char *buf, size_t count)
Azael Avalosbae84192015-02-10 21:09:18 -07002190{
2191 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2192 int mode;
2193 int ret;
2194
2195 ret = kstrtoint(buf, 0, &mode);
2196 if (ret)
2197 return ret;
Darren Harte0769fe2015-02-11 20:50:08 -08002198 /*
2199 * Check for the function keys mode where:
Azael Avalosbae84192015-02-10 21:09:18 -07002200 * 0 - Normal operation (F{1-12} as usual and hotkeys via FN-F{1-12})
2201 * 1 - Special functions (Opposite of the above setting)
2202 */
2203 if (mode != 0 && mode != 1)
2204 return -EINVAL;
2205
2206 ret = toshiba_function_keys_set(toshiba, mode);
2207 if (ret)
2208 return ret;
2209
2210 pr_info("Reboot for changes to KBD Function Keys to take effect");
2211
2212 return count;
2213}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002214static DEVICE_ATTR_RW(kbd_function_keys);
Azael Avalosbae84192015-02-10 21:09:18 -07002215
Azael Avalos9d309842015-02-10 23:43:59 -07002216static ssize_t panel_power_on_show(struct device *dev,
2217 struct device_attribute *attr, char *buf)
Azael Avalos35d53ce2015-02-10 21:09:19 -07002218{
2219 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2220 u32 state;
2221 int ret;
2222
2223 ret = toshiba_panel_power_on_get(toshiba, &state);
2224 if (ret < 0)
2225 return ret;
2226
2227 return sprintf(buf, "%d\n", state);
2228}
2229
Azael Avalos9d309842015-02-10 23:43:59 -07002230static ssize_t panel_power_on_store(struct device *dev,
2231 struct device_attribute *attr,
2232 const char *buf, size_t count)
Azael Avalos35d53ce2015-02-10 21:09:19 -07002233{
2234 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2235 int state;
2236 int ret;
2237
2238 ret = kstrtoint(buf, 0, &state);
2239 if (ret)
2240 return ret;
2241 if (state != 0 && state != 1)
2242 return -EINVAL;
2243
2244 ret = toshiba_panel_power_on_set(toshiba, state);
2245 if (ret)
2246 return ret;
2247
2248 pr_info("Reboot for changes to Panel Power ON to take effect");
2249
2250 return count;
2251}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002252static DEVICE_ATTR_RW(panel_power_on);
Azael Avalos35d53ce2015-02-10 21:09:19 -07002253
Azael Avalos9d309842015-02-10 23:43:59 -07002254static ssize_t usb_three_show(struct device *dev,
2255 struct device_attribute *attr, char *buf)
Azael Avalos17fe4b32015-02-10 21:09:20 -07002256{
2257 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2258 u32 state;
2259 int ret;
2260
2261 ret = toshiba_usb_three_get(toshiba, &state);
2262 if (ret < 0)
2263 return ret;
2264
2265 return sprintf(buf, "%d\n", state);
2266}
2267
Azael Avalos9d309842015-02-10 23:43:59 -07002268static ssize_t usb_three_store(struct device *dev,
2269 struct device_attribute *attr,
2270 const char *buf, size_t count)
Azael Avalos17fe4b32015-02-10 21:09:20 -07002271{
2272 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2273 int state;
2274 int ret;
2275
2276 ret = kstrtoint(buf, 0, &state);
2277 if (ret)
2278 return ret;
Darren Harte0769fe2015-02-11 20:50:08 -08002279 /*
2280 * Check for USB 3 mode where:
Azael Avalos17fe4b32015-02-10 21:09:20 -07002281 * 0 - Disabled (Acts like a USB 2 port, saving power)
2282 * 1 - Enabled
2283 */
2284 if (state != 0 && state != 1)
2285 return -EINVAL;
2286
2287 ret = toshiba_usb_three_set(toshiba, state);
2288 if (ret)
2289 return ret;
2290
2291 pr_info("Reboot for changes to USB 3 to take effect");
2292
2293 return count;
2294}
Azael Avalos0c3c0f12015-02-10 23:44:00 -07002295static DEVICE_ATTR_RW(usb_three);
Azael Avalos9bd12132015-02-10 23:43:58 -07002296
Azael Avalosb1009b92016-01-25 11:29:11 -07002297static ssize_t cooling_method_show(struct device *dev,
2298 struct device_attribute *attr, char *buf)
2299{
2300 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2301 int state;
2302 int ret;
2303
2304 ret = toshiba_cooling_method_get(toshiba, &state);
2305 if (ret < 0)
2306 return ret;
2307
2308 return sprintf(buf, "%d %d\n", state, toshiba->max_cooling_method);
2309}
2310
2311static ssize_t cooling_method_store(struct device *dev,
2312 struct device_attribute *attr,
2313 const char *buf, size_t count)
2314{
2315 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2316 int state;
2317 int ret;
2318
2319 ret = kstrtoint(buf, 0, &state);
2320 if (ret)
2321 return ret;
2322
2323 /*
2324 * Check for supported values
2325 * Depending on the laptop model, some only support these two:
2326 * 0 - Maximum Performance
2327 * 1 - Battery Optimized
2328 *
2329 * While some others support all three methods:
2330 * 0 - Maximum Performance
2331 * 1 - Performance
2332 * 2 - Battery Optimized
2333 */
2334 if (state < 0 || state > toshiba->max_cooling_method)
2335 return -EINVAL;
2336
2337 ret = toshiba_cooling_method_set(toshiba, state);
2338 if (ret)
2339 return ret;
2340
2341 return count;
2342}
2343static DEVICE_ATTR_RW(cooling_method);
2344
Azael Avalos9bd12132015-02-10 23:43:58 -07002345static struct attribute *toshiba_attributes[] = {
2346 &dev_attr_version.attr,
2347 &dev_attr_fan.attr,
2348 &dev_attr_kbd_backlight_mode.attr,
2349 &dev_attr_kbd_type.attr,
2350 &dev_attr_available_kbd_modes.attr,
2351 &dev_attr_kbd_backlight_timeout.attr,
2352 &dev_attr_touchpad.attr,
2353 &dev_attr_position.attr,
2354 &dev_attr_usb_sleep_charge.attr,
2355 &dev_attr_sleep_functions_on_battery.attr,
2356 &dev_attr_usb_rapid_charge.attr,
2357 &dev_attr_usb_sleep_music.attr,
2358 &dev_attr_kbd_function_keys.attr,
2359 &dev_attr_panel_power_on.attr,
2360 &dev_attr_usb_three.attr,
Azael Avalosb1009b92016-01-25 11:29:11 -07002361 &dev_attr_cooling_method.attr,
Azael Avalos9bd12132015-02-10 23:43:58 -07002362 NULL,
2363};
2364
Azael Avalos360f0f32014-03-25 20:38:31 -06002365static umode_t toshiba_sysfs_is_visible(struct kobject *kobj,
2366 struct attribute *attr, int idx)
2367{
2368 struct device *dev = container_of(kobj, struct device, kobj);
2369 struct toshiba_acpi_dev *drv = dev_get_drvdata(dev);
2370 bool exists = true;
2371
Azael Avalos94477d42015-02-10 21:09:17 -07002372 if (attr == &dev_attr_fan.attr)
2373 exists = (drv->fan_supported) ? true : false;
2374 else if (attr == &dev_attr_kbd_backlight_mode.attr)
Azael Avalos360f0f32014-03-25 20:38:31 -06002375 exists = (drv->kbd_illum_supported) ? true : false;
2376 else if (attr == &dev_attr_kbd_backlight_timeout.attr)
2377 exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false;
Azael Avalos9d8658a2014-03-25 20:38:32 -06002378 else if (attr == &dev_attr_touchpad.attr)
2379 exists = (drv->touchpad_supported) ? true : false;
Azael Avalos5a2813e2014-03-25 20:38:34 -06002380 else if (attr == &dev_attr_position.attr)
2381 exists = (drv->accelerometer_supported) ? true : false;
Azael Avalose26ffe52015-01-18 18:30:22 -07002382 else if (attr == &dev_attr_usb_sleep_charge.attr)
2383 exists = (drv->usb_sleep_charge_supported) ? true : false;
Azael Avalos182bcaa2015-01-18 18:30:23 -07002384 else if (attr == &dev_attr_sleep_functions_on_battery.attr)
2385 exists = (drv->usb_sleep_charge_supported) ? true : false;
Azael Avalosbb3fe012015-01-18 18:30:24 -07002386 else if (attr == &dev_attr_usb_rapid_charge.attr)
2387 exists = (drv->usb_rapid_charge_supported) ? true : false;
Azael Avalos172ce0a2015-01-18 18:30:25 -07002388 else if (attr == &dev_attr_usb_sleep_music.attr)
2389 exists = (drv->usb_sleep_music_supported) ? true : false;
Azael Avalosbae84192015-02-10 21:09:18 -07002390 else if (attr == &dev_attr_kbd_function_keys.attr)
2391 exists = (drv->kbd_function_keys_supported) ? true : false;
Azael Avalos35d53ce2015-02-10 21:09:19 -07002392 else if (attr == &dev_attr_panel_power_on.attr)
2393 exists = (drv->panel_power_on_supported) ? true : false;
Azael Avalos17fe4b32015-02-10 21:09:20 -07002394 else if (attr == &dev_attr_usb_three.attr)
2395 exists = (drv->usb_three_supported) ? true : false;
Azael Avalosb1009b92016-01-25 11:29:11 -07002396 else if (attr == &dev_attr_cooling_method.attr)
2397 exists = (drv->cooling_method_supported) ? true : false;
Azael Avalos360f0f32014-03-25 20:38:31 -06002398
2399 return exists ? attr->mode : 0;
2400}
2401
Azael Avalos9bd12132015-02-10 23:43:58 -07002402static struct attribute_group toshiba_attr_group = {
2403 .is_visible = toshiba_sysfs_is_visible,
2404 .attrs = toshiba_attributes,
2405};
2406
Azael Avalos65e3cf92015-11-23 10:51:30 -07002407static void toshiba_acpi_kbd_bl_work(struct work_struct *work)
2408{
2409 struct acpi_device *acpi_dev = toshiba_acpi->acpi_dev;
2410
2411 /* Update the sysfs entries */
2412 if (sysfs_update_group(&acpi_dev->dev.kobj,
2413 &toshiba_attr_group))
2414 pr_err("Unable to update sysfs entries\n");
2415
2416 /* Emulate the keyboard backlight event */
2417 acpi_bus_generate_netlink_event(acpi_dev->pnp.device_class,
2418 dev_name(&acpi_dev->dev),
2419 0x92, 0);
2420}
2421
Azael Avalos1f28f292014-12-04 20:22:45 -07002422/*
Azael Avalosfc5462f2015-07-22 18:09:11 -06002423 * Misc device
2424 */
2425static int toshiba_acpi_smm_bridge(SMMRegisters *regs)
2426{
2427 u32 in[TCI_WORDS] = { regs->eax, regs->ebx, regs->ecx,
2428 regs->edx, regs->esi, regs->edi };
2429 u32 out[TCI_WORDS];
2430 acpi_status status;
2431
2432 status = tci_raw(toshiba_acpi, in, out);
2433 if (ACPI_FAILURE(status)) {
2434 pr_err("ACPI call to query SMM registers failed\n");
2435 return -EIO;
2436 }
2437
2438 /* Fillout the SMM struct with the TCI call results */
2439 regs->eax = out[0];
2440 regs->ebx = out[1];
2441 regs->ecx = out[2];
2442 regs->edx = out[3];
2443 regs->esi = out[4];
2444 regs->edi = out[5];
2445
2446 return 0;
2447}
2448
2449static long toshiba_acpi_ioctl(struct file *fp, unsigned int cmd,
2450 unsigned long arg)
2451{
2452 SMMRegisters __user *argp = (SMMRegisters __user *)arg;
2453 SMMRegisters regs;
2454 int ret;
2455
2456 if (!argp)
2457 return -EINVAL;
2458
2459 switch (cmd) {
2460 case TOSH_SMM:
2461 if (copy_from_user(&regs, argp, sizeof(SMMRegisters)))
2462 return -EFAULT;
2463 ret = toshiba_acpi_smm_bridge(&regs);
2464 if (ret)
2465 return ret;
2466 if (copy_to_user(argp, &regs, sizeof(SMMRegisters)))
2467 return -EFAULT;
2468 break;
2469 case TOSHIBA_ACPI_SCI:
2470 if (copy_from_user(&regs, argp, sizeof(SMMRegisters)))
2471 return -EFAULT;
2472 /* Ensure we are being called with a SCI_{GET, SET} register */
2473 if (regs.eax != SCI_GET && regs.eax != SCI_SET)
2474 return -EINVAL;
2475 if (!sci_open(toshiba_acpi))
2476 return -EIO;
2477 ret = toshiba_acpi_smm_bridge(&regs);
2478 sci_close(toshiba_acpi);
2479 if (ret)
2480 return ret;
2481 if (copy_to_user(argp, &regs, sizeof(SMMRegisters)))
2482 return -EFAULT;
2483 break;
2484 default:
2485 return -EINVAL;
2486 }
2487
2488 return 0;
2489}
2490
2491static const struct file_operations toshiba_acpi_fops = {
2492 .owner = THIS_MODULE,
2493 .unlocked_ioctl = toshiba_acpi_ioctl,
2494 .llseek = noop_llseek,
2495};
2496
2497/*
Azael Avalos2fdde832015-11-23 10:49:11 -07002498 * WWAN RFKill handlers
2499 */
2500static int toshiba_acpi_wwan_set_block(void *data, bool blocked)
2501{
2502 struct toshiba_acpi_dev *dev = data;
2503 int ret;
2504
2505 ret = toshiba_wireless_status(dev);
2506 if (ret)
2507 return ret;
2508
2509 if (!dev->killswitch)
2510 return 0;
2511
2512 return toshiba_wwan_set(dev, !blocked);
2513}
2514
2515static void toshiba_acpi_wwan_poll(struct rfkill *rfkill, void *data)
2516{
2517 struct toshiba_acpi_dev *dev = data;
2518
2519 if (toshiba_wireless_status(dev))
2520 return;
2521
2522 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2523}
2524
2525static const struct rfkill_ops wwan_rfk_ops = {
2526 .set_block = toshiba_acpi_wwan_set_block,
2527 .poll = toshiba_acpi_wwan_poll,
2528};
2529
2530static int toshiba_acpi_setup_wwan_rfkill(struct toshiba_acpi_dev *dev)
2531{
2532 int ret = toshiba_wireless_status(dev);
2533
2534 if (ret)
2535 return ret;
2536
2537 dev->wwan_rfk = rfkill_alloc("Toshiba WWAN",
2538 &dev->acpi_dev->dev,
2539 RFKILL_TYPE_WWAN,
2540 &wwan_rfk_ops,
2541 dev);
2542 if (!dev->wwan_rfk) {
2543 pr_err("Unable to allocate WWAN rfkill device\n");
2544 return -ENOMEM;
2545 }
2546
2547 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2548
2549 ret = rfkill_register(dev->wwan_rfk);
2550 if (ret) {
2551 pr_err("Unable to register WWAN rfkill device\n");
2552 rfkill_destroy(dev->wwan_rfk);
2553 }
2554
2555 return ret;
2556}
2557
2558/*
Azael Avalos1f28f292014-12-04 20:22:45 -07002559 * Hotkeys
2560 */
2561static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev *dev)
2562{
2563 acpi_status status;
2564 u32 result;
2565
2566 status = acpi_evaluate_object(dev->acpi_dev->handle,
2567 "ENAB", NULL, NULL);
2568 if (ACPI_FAILURE(status))
2569 return -ENODEV;
2570
Azael Avalosb116fd002015-09-09 11:28:19 -06002571 /*
2572 * Enable the "Special Functions" mode only if they are
2573 * supported and if they are activated.
2574 */
2575 if (dev->kbd_function_keys_supported && dev->special_functions)
2576 result = hci_write(dev, HCI_HOTKEY_EVENT,
2577 HCI_HOTKEY_SPECIAL_FUNCTIONS);
2578 else
2579 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE);
2580
Azael Avalos1f28f292014-12-04 20:22:45 -07002581 if (result == TOS_FAILURE)
2582 return -EIO;
2583 else if (result == TOS_NOT_SUPPORTED)
2584 return -ENODEV;
2585
2586 return 0;
2587}
2588
Seth Forshee29cd2932012-01-18 13:44:09 -06002589static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
2590 struct serio *port)
2591{
Giedrius Statkevičius98280372014-10-18 02:57:20 +03002592 if (str & I8042_STR_AUXDATA)
Seth Forshee29cd2932012-01-18 13:44:09 -06002593 return false;
2594
2595 if (unlikely(data == 0xe0))
2596 return false;
2597
2598 if ((data & 0x7f) == TOS1900_FN_SCAN) {
2599 schedule_work(&toshiba_acpi->hotkey_work);
2600 return true;
2601 }
2602
2603 return false;
2604}
2605
2606static void toshiba_acpi_hotkey_work(struct work_struct *work)
2607{
2608 acpi_handle ec_handle = ec_get_handle();
2609 acpi_status status;
2610
2611 if (!ec_handle)
2612 return;
2613
2614 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
2615 if (ACPI_FAILURE(status))
2616 pr_err("ACPI NTFY method execution failed\n");
2617}
2618
2619/*
2620 * Returns hotkey scancode, or < 0 on failure.
2621 */
2622static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
2623{
Zhang Rui74facaf2013-09-03 08:32:15 +08002624 unsigned long long value;
Seth Forshee29cd2932012-01-18 13:44:09 -06002625 acpi_status status;
2626
Zhang Rui74facaf2013-09-03 08:32:15 +08002627 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
2628 NULL, &value);
2629 if (ACPI_FAILURE(status)) {
Seth Forshee29cd2932012-01-18 13:44:09 -06002630 pr_err("ACPI INFO method execution failed\n");
2631 return -EIO;
2632 }
2633
Zhang Rui74facaf2013-09-03 08:32:15 +08002634 return value;
Seth Forshee29cd2932012-01-18 13:44:09 -06002635}
2636
2637static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
2638 int scancode)
2639{
2640 if (scancode == 0x100)
2641 return;
2642
Darren Harte0769fe2015-02-11 20:50:08 -08002643 /* Act on key press; ignore key release */
Seth Forshee29cd2932012-01-18 13:44:09 -06002644 if (scancode & 0x80)
2645 return;
2646
2647 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
2648 pr_info("Unknown key %x\n", scancode);
2649}
2650
Azael Avalos71454d72014-12-04 20:22:46 -07002651static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev *dev)
2652{
Azael Avalos71454d72014-12-04 20:22:46 -07002653 if (dev->info_supported) {
Azael Avalos7deef552015-07-22 18:09:10 -06002654 int scancode = toshiba_acpi_query_hotkey(dev);
2655
2656 if (scancode < 0) {
Azael Avalos71454d72014-12-04 20:22:46 -07002657 pr_err("Failed to query hotkey event\n");
Azael Avalos7deef552015-07-22 18:09:10 -06002658 } else if (scancode != 0) {
Azael Avalos71454d72014-12-04 20:22:46 -07002659 toshiba_acpi_report_hotkey(dev, scancode);
Azael Avalos7deef552015-07-22 18:09:10 -06002660 dev->key_event_valid = 1;
2661 dev->last_key_event = scancode;
2662 }
Azael Avalos71454d72014-12-04 20:22:46 -07002663 } else if (dev->system_event_supported) {
Azael Avalos7deef552015-07-22 18:09:10 -06002664 u32 result;
2665 u32 value;
2666 int retries = 3;
2667
Azael Avalos71454d72014-12-04 20:22:46 -07002668 do {
Azael Avalos7deef552015-07-22 18:09:10 -06002669 result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
2670 switch (result) {
Azael Avalos71454d72014-12-04 20:22:46 -07002671 case TOS_SUCCESS:
2672 toshiba_acpi_report_hotkey(dev, (int)value);
Azael Avalos7deef552015-07-22 18:09:10 -06002673 dev->key_event_valid = 1;
2674 dev->last_key_event = value;
Azael Avalos71454d72014-12-04 20:22:46 -07002675 break;
2676 case TOS_NOT_SUPPORTED:
2677 /*
2678 * This is a workaround for an unresolved
2679 * issue on some machines where system events
2680 * sporadically become disabled.
2681 */
Azael Avalos7deef552015-07-22 18:09:10 -06002682 result = hci_write(dev, HCI_SYSTEM_EVENT, 1);
2683 if (result == TOS_SUCCESS)
2684 pr_notice("Re-enabled hotkeys\n");
Darren Harte0769fe2015-02-11 20:50:08 -08002685 /* Fall through */
Azael Avalos71454d72014-12-04 20:22:46 -07002686 default:
2687 retries--;
2688 break;
2689 }
Azael Avalos7deef552015-07-22 18:09:10 -06002690 } while (retries && result != TOS_FIFO_EMPTY);
Azael Avalos71454d72014-12-04 20:22:46 -07002691 }
2692}
2693
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08002694static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
Matthew Garrett6335e4d2010-02-25 15:20:54 -05002695{
Takashi Iwaife808bfb2014-04-29 15:15:38 +02002696 const struct key_entry *keymap = toshiba_acpi_keymap;
Azael Avalosa2b34712015-03-20 16:55:17 -06002697 acpi_handle ec_handle;
Azael Avalosa2b34712015-03-20 16:55:17 -06002698 int error;
2699
Azael Avalos7faa6a32016-01-25 12:52:18 -07002700 if (disable_hotkeys) {
2701 pr_info("Hotkeys disabled by module parameter\n");
2702 return 0;
2703 }
2704
Azael Avalosa88bc062015-07-22 18:09:12 -06002705 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) {
2706 pr_info("WMI event detected, hotkeys will not be monitored\n");
2707 return 0;
2708 }
2709
Azael Avalosa2b34712015-03-20 16:55:17 -06002710 error = toshiba_acpi_enable_hotkeys(dev);
2711 if (error)
2712 return error;
2713
Azael Avalos10e6aaa2015-09-18 22:45:34 -06002714 if (toshiba_hotkey_event_type_get(dev, &dev->hotkey_event_type))
Azael Avalos53147b62015-09-09 11:25:45 -06002715 pr_notice("Unable to query Hotkey Event Type\n");
2716
Seth Forshee135740d2011-09-20 16:55:49 -05002717 dev->hotkey_dev = input_allocate_device();
Joe Perchesb222cca2013-10-23 12:14:52 -07002718 if (!dev->hotkey_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05002719 return -ENOMEM;
Seth Forshee135740d2011-09-20 16:55:49 -05002720
2721 dev->hotkey_dev->name = "Toshiba input device";
Seth Forshee6e02cc72011-09-20 16:55:51 -05002722 dev->hotkey_dev->phys = "toshiba_acpi/input0";
Seth Forshee135740d2011-09-20 16:55:49 -05002723 dev->hotkey_dev->id.bustype = BUS_HOST;
2724
Azael Avalos10e6aaa2015-09-18 22:45:34 -06002725 if (dev->hotkey_event_type == HCI_SYSTEM_TYPE1 ||
Azael Avalosa2b34712015-03-20 16:55:17 -06002726 !dev->kbd_function_keys_supported)
2727 keymap = toshiba_acpi_keymap;
Azael Avalos10e6aaa2015-09-18 22:45:34 -06002728 else if (dev->hotkey_event_type == HCI_SYSTEM_TYPE2 ||
Azael Avalosa2b34712015-03-20 16:55:17 -06002729 dev->kbd_function_keys_supported)
Takashi Iwaife808bfb2014-04-29 15:15:38 +02002730 keymap = toshiba_acpi_alt_keymap;
Azael Avalosa2b34712015-03-20 16:55:17 -06002731 else
Azael Avalos10e6aaa2015-09-18 22:45:34 -06002732 pr_info("Unknown event type received %x\n",
2733 dev->hotkey_event_type);
Takashi Iwaife808bfb2014-04-29 15:15:38 +02002734 error = sparse_keymap_setup(dev->hotkey_dev, keymap, NULL);
Seth Forshee135740d2011-09-20 16:55:49 -05002735 if (error)
2736 goto err_free_dev;
2737
Seth Forshee29cd2932012-01-18 13:44:09 -06002738 /*
2739 * For some machines the SCI responsible for providing hotkey
2740 * notification doesn't fire. We can trigger the notification
2741 * whenever the Fn key is pressed using the NTFY method, if
2742 * supported, so if it's present set up an i8042 key filter
2743 * for this purpose.
2744 */
Seth Forshee29cd2932012-01-18 13:44:09 -06002745 ec_handle = ec_get_handle();
Zhang Ruie2e19602013-09-03 08:32:06 +08002746 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
Seth Forshee29cd2932012-01-18 13:44:09 -06002747 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
2748
2749 error = i8042_install_filter(toshiba_acpi_i8042_filter);
2750 if (error) {
2751 pr_err("Error installing key filter\n");
2752 goto err_free_keymap;
2753 }
2754
2755 dev->ntfy_supported = 1;
2756 }
2757
2758 /*
2759 * Determine hotkey query interface. Prefer using the INFO
2760 * method when it is available.
2761 */
Zhang Ruie2e19602013-09-03 08:32:06 +08002762 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
Seth Forshee29cd2932012-01-18 13:44:09 -06002763 dev->info_supported = 1;
Azael Avalos10e6aaa2015-09-18 22:45:34 -06002764 else if (hci_write(dev, HCI_SYSTEM_EVENT, 1) == TOS_SUCCESS)
2765 dev->system_event_supported = 1;
Seth Forshee29cd2932012-01-18 13:44:09 -06002766
2767 if (!dev->info_supported && !dev->system_event_supported) {
2768 pr_warn("No hotkey query interface found\n");
2769 goto err_remove_filter;
2770 }
2771
Seth Forshee135740d2011-09-20 16:55:49 -05002772 error = input_register_device(dev->hotkey_dev);
2773 if (error) {
2774 pr_info("Unable to register input device\n");
Seth Forshee29cd2932012-01-18 13:44:09 -06002775 goto err_remove_filter;
Seth Forshee135740d2011-09-20 16:55:49 -05002776 }
2777
2778 return 0;
2779
Seth Forshee29cd2932012-01-18 13:44:09 -06002780 err_remove_filter:
2781 if (dev->ntfy_supported)
2782 i8042_remove_filter(toshiba_acpi_i8042_filter);
Seth Forshee135740d2011-09-20 16:55:49 -05002783 err_free_keymap:
2784 sparse_keymap_free(dev->hotkey_dev);
2785 err_free_dev:
2786 input_free_device(dev->hotkey_dev);
2787 dev->hotkey_dev = NULL;
2788 return error;
2789}
2790
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08002791static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
Seth Forshee62cce752012-04-19 11:23:50 -05002792{
2793 struct backlight_properties props;
2794 int brightness;
2795 int ret;
2796
2797 /*
2798 * Some machines don't support the backlight methods at all, and
2799 * others support it read-only. Either of these is pretty useless,
2800 * so only register the backlight device if the backlight method
2801 * supports both reads and writes.
2802 */
2803 brightness = __get_lcd_brightness(dev);
2804 if (brightness < 0)
2805 return 0;
Azael Avalosbae53362015-11-15 20:32:47 -07002806 /*
2807 * If transflective backlight is supported and the brightness is zero
2808 * (lowest brightness level), the set_lcd_brightness function will
2809 * activate the transflective backlight, making the LCD appear to be
2810 * turned off, simply increment the brightness level to avoid that.
2811 */
2812 if (dev->tr_backlight_supported && brightness == 0)
2813 brightness++;
Seth Forshee62cce752012-04-19 11:23:50 -05002814 ret = set_lcd_brightness(dev, brightness);
2815 if (ret) {
2816 pr_debug("Backlight method is read-only, disabling backlight support\n");
2817 return 0;
2818 }
2819
Hans de Goede358d6a22015-04-21 12:01:32 +02002820 /*
2821 * Tell acpi-video-detect code to prefer vendor backlight on all
2822 * systems with transflective backlight and on dmi matched systems.
2823 */
2824 if (dev->tr_backlight_supported ||
2825 dmi_check_system(toshiba_vendor_backlight_dmi))
Hans de Goede234b7cf2015-06-16 16:28:11 +02002826 acpi_video_set_dmi_backlight_type(acpi_backlight_vendor);
Hans de Goede358d6a22015-04-21 12:01:32 +02002827
Hans de Goede234b7cf2015-06-16 16:28:11 +02002828 if (acpi_video_get_backlight_type() != acpi_backlight_vendor)
Hans de Goede358d6a22015-04-21 12:01:32 +02002829 return 0;
2830
Matthew Garrett53039f22012-06-01 11:02:36 -04002831 memset(&props, 0, sizeof(props));
Seth Forshee62cce752012-04-19 11:23:50 -05002832 props.type = BACKLIGHT_PLATFORM;
2833 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
Seth Forshee62cce752012-04-19 11:23:50 -05002834
Darren Harte0769fe2015-02-11 20:50:08 -08002835 /* Adding an extra level and having 0 change to transflective mode */
Akio Idehara121b7b02012-04-06 01:46:43 +09002836 if (dev->tr_backlight_supported)
2837 props.max_brightness++;
2838
Seth Forshee62cce752012-04-19 11:23:50 -05002839 dev->backlight_dev = backlight_device_register("toshiba",
2840 &dev->acpi_dev->dev,
2841 dev,
2842 &toshiba_backlight_data,
2843 &props);
2844 if (IS_ERR(dev->backlight_dev)) {
2845 ret = PTR_ERR(dev->backlight_dev);
2846 pr_err("Could not register toshiba backlight device\n");
2847 dev->backlight_dev = NULL;
2848 return ret;
2849 }
2850
2851 dev->backlight_dev->props.brightness = brightness;
2852 return 0;
2853}
2854
Azael Avalos0409cbc2015-07-31 21:58:13 -06002855static void print_supported_features(struct toshiba_acpi_dev *dev)
2856{
2857 pr_info("Supported laptop features:");
2858
2859 if (dev->hotkey_dev)
2860 pr_cont(" hotkeys");
2861 if (dev->backlight_dev)
2862 pr_cont(" backlight");
2863 if (dev->video_supported)
2864 pr_cont(" video-out");
2865 if (dev->fan_supported)
2866 pr_cont(" fan");
2867 if (dev->tr_backlight_supported)
2868 pr_cont(" transflective-backlight");
2869 if (dev->illumination_supported)
2870 pr_cont(" illumination");
2871 if (dev->kbd_illum_supported)
2872 pr_cont(" keyboard-backlight");
2873 if (dev->touchpad_supported)
2874 pr_cont(" touchpad");
2875 if (dev->eco_supported)
2876 pr_cont(" eco-led");
2877 if (dev->accelerometer_supported)
2878 pr_cont(" accelerometer-axes");
2879 if (dev->usb_sleep_charge_supported)
2880 pr_cont(" usb-sleep-charge");
2881 if (dev->usb_rapid_charge_supported)
2882 pr_cont(" usb-rapid-charge");
2883 if (dev->usb_sleep_music_supported)
2884 pr_cont(" usb-sleep-music");
2885 if (dev->kbd_function_keys_supported)
2886 pr_cont(" special-function-keys");
2887 if (dev->panel_power_on_supported)
2888 pr_cont(" panel-power-on");
2889 if (dev->usb_three_supported)
2890 pr_cont(" usb3");
Azael Avalos6873f462015-11-23 10:49:10 -07002891 if (dev->wwan_supported)
2892 pr_cont(" wwan");
Azael Avalos763ff322016-01-25 11:29:10 -07002893 if (dev->cooling_method_supported)
2894 pr_cont(" cooling-method");
Azael Avalos0409cbc2015-07-31 21:58:13 -06002895
2896 pr_cont("\n");
2897}
2898
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002899static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05002900{
2901 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
2902
Azael Avalosfc5462f2015-07-22 18:09:11 -06002903 misc_deregister(&dev->miscdev);
2904
Seth Forshee36d03f92011-09-20 16:55:53 -05002905 remove_toshiba_proc_entries(dev);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04002906
Azael Avalos360f0f32014-03-25 20:38:31 -06002907 if (dev->sysfs_created)
2908 sysfs_remove_group(&dev->acpi_dev->dev.kobj,
2909 &toshiba_attr_group);
Seth Forshee135740d2011-09-20 16:55:49 -05002910
Seth Forshee29cd2932012-01-18 13:44:09 -06002911 if (dev->ntfy_supported) {
2912 i8042_remove_filter(toshiba_acpi_i8042_filter);
2913 cancel_work_sync(&dev->hotkey_work);
2914 }
2915
Seth Forshee135740d2011-09-20 16:55:49 -05002916 if (dev->hotkey_dev) {
2917 input_unregister_device(dev->hotkey_dev);
2918 sparse_keymap_free(dev->hotkey_dev);
2919 }
2920
Markus Elfring00981812014-11-24 20:30:29 +01002921 backlight_device_unregister(dev->backlight_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05002922
Azael Avalosea215a3f2015-07-31 21:58:12 -06002923 if (dev->illumination_led_registered)
Seth Forshee135740d2011-09-20 16:55:49 -05002924 led_classdev_unregister(&dev->led_dev);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04002925
Azael Avalos360f0f32014-03-25 20:38:31 -06002926 if (dev->kbd_led_registered)
2927 led_classdev_unregister(&dev->kbd_led);
Matthew Garrettea6b31f2014-04-04 14:22:34 -04002928
Azael Avalosea215a3f2015-07-31 21:58:12 -06002929 if (dev->eco_led_registered)
Azael Avalosdef6c4e2014-03-25 20:38:33 -06002930 led_classdev_unregister(&dev->eco_led);
Seth Forshee135740d2011-09-20 16:55:49 -05002931
Azael Avalos2fdde832015-11-23 10:49:11 -07002932 if (dev->wwan_rfk) {
2933 rfkill_unregister(dev->wwan_rfk);
2934 rfkill_destroy(dev->wwan_rfk);
2935 }
2936
Seth Forshee29cd2932012-01-18 13:44:09 -06002937 if (toshiba_acpi)
2938 toshiba_acpi = NULL;
2939
Seth Forshee135740d2011-09-20 16:55:49 -05002940 kfree(dev);
2941
2942 return 0;
2943}
2944
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08002945static const char *find_hci_method(acpi_handle handle)
Seth Forsheea540d6b2011-09-20 16:55:52 -05002946{
Zhang Ruie2e19602013-09-03 08:32:06 +08002947 if (acpi_has_method(handle, "GHCI"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05002948 return "GHCI";
2949
Zhang Ruie2e19602013-09-03 08:32:06 +08002950 if (acpi_has_method(handle, "SPFC"))
Seth Forsheea540d6b2011-09-20 16:55:52 -05002951 return "SPFC";
2952
2953 return NULL;
2954}
2955
Greg Kroah-Hartmanb859f152012-12-21 13:18:33 -08002956static int toshiba_acpi_add(struct acpi_device *acpi_dev)
Seth Forshee135740d2011-09-20 16:55:49 -05002957{
2958 struct toshiba_acpi_dev *dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05002959 const char *hci_method;
Seth Forshee36d03f92011-09-20 16:55:53 -05002960 u32 dummy;
Seth Forshee135740d2011-09-20 16:55:49 -05002961 int ret = 0;
Seth Forshee135740d2011-09-20 16:55:49 -05002962
Seth Forshee29cd2932012-01-18 13:44:09 -06002963 if (toshiba_acpi)
2964 return -EBUSY;
2965
Seth Forshee135740d2011-09-20 16:55:49 -05002966 pr_info("Toshiba Laptop ACPI Extras version %s\n",
2967 TOSHIBA_ACPI_VERSION);
2968
Seth Forsheea540d6b2011-09-20 16:55:52 -05002969 hci_method = find_hci_method(acpi_dev->handle);
2970 if (!hci_method) {
2971 pr_err("HCI interface not found\n");
Seth Forshee6e02cc72011-09-20 16:55:51 -05002972 return -ENODEV;
Seth Forsheea540d6b2011-09-20 16:55:52 -05002973 }
Seth Forshee6e02cc72011-09-20 16:55:51 -05002974
Seth Forshee135740d2011-09-20 16:55:49 -05002975 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
2976 if (!dev)
2977 return -ENOMEM;
2978 dev->acpi_dev = acpi_dev;
Seth Forsheea540d6b2011-09-20 16:55:52 -05002979 dev->method_hci = hci_method;
Azael Avalosfc5462f2015-07-22 18:09:11 -06002980 dev->miscdev.minor = MISC_DYNAMIC_MINOR;
2981 dev->miscdev.name = "toshiba_acpi";
2982 dev->miscdev.fops = &toshiba_acpi_fops;
2983
2984 ret = misc_register(&dev->miscdev);
2985 if (ret) {
2986 pr_err("Failed to register miscdevice\n");
2987 kfree(dev);
2988 return ret;
2989 }
2990
Seth Forshee135740d2011-09-20 16:55:49 -05002991 acpi_dev->driver_data = dev;
Azael Avalos360f0f32014-03-25 20:38:31 -06002992 dev_set_drvdata(&acpi_dev->dev, dev);
Seth Forshee135740d2011-09-20 16:55:49 -05002993
Azael Avalosa2b34712015-03-20 16:55:17 -06002994 /* Query the BIOS for supported features */
2995
2996 /*
2997 * The "Special Functions" are always supported by the laptops
2998 * with the new keyboard layout, query for its presence to help
2999 * determine the keymap layout to use.
3000 */
Azael Avalosb116fd002015-09-09 11:28:19 -06003001 ret = toshiba_function_keys_get(dev, &dev->special_functions);
Azael Avalosa2b34712015-03-20 16:55:17 -06003002 dev->kbd_function_keys_supported = !ret;
3003
Azael Avalosd2f20612015-11-04 09:28:26 -07003004 dev->hotkey_event_type = 0;
Seth Forshee6e02cc72011-09-20 16:55:51 -05003005 if (toshiba_acpi_setup_keyboard(dev))
3006 pr_info("Unable to activate hotkeys\n");
Seth Forshee135740d2011-09-20 16:55:49 -05003007
Azael Avalos695f6062015-07-22 18:09:13 -06003008 /* Determine whether or not BIOS supports transflective backlight */
3009 ret = get_tr_backlight_status(dev, &dummy);
3010 dev->tr_backlight_supported = !ret;
3011
Seth Forshee62cce752012-04-19 11:23:50 -05003012 ret = toshiba_acpi_setup_backlight(dev);
3013 if (ret)
Seth Forshee135740d2011-09-20 16:55:49 -05003014 goto error;
Seth Forshee135740d2011-09-20 16:55:49 -05003015
Azael Avalosea215a3f2015-07-31 21:58:12 -06003016 toshiba_illumination_available(dev);
3017 if (dev->illumination_supported) {
Seth Forshee135740d2011-09-20 16:55:49 -05003018 dev->led_dev.name = "toshiba::illumination";
3019 dev->led_dev.max_brightness = 1;
3020 dev->led_dev.brightness_set = toshiba_illumination_set;
3021 dev->led_dev.brightness_get = toshiba_illumination_get;
3022 if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev))
Azael Avalosea215a3f2015-07-31 21:58:12 -06003023 dev->illumination_led_registered = true;
Seth Forshee135740d2011-09-20 16:55:49 -05003024 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04003025
Azael Avalosea215a3f2015-07-31 21:58:12 -06003026 toshiba_eco_mode_available(dev);
3027 if (dev->eco_supported) {
Azael Avalosdef6c4e2014-03-25 20:38:33 -06003028 dev->eco_led.name = "toshiba::eco_mode";
3029 dev->eco_led.max_brightness = 1;
3030 dev->eco_led.brightness_set = toshiba_eco_mode_set_status;
3031 dev->eco_led.brightness_get = toshiba_eco_mode_get_status;
3032 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->eco_led))
Azael Avalosea215a3f2015-07-31 21:58:12 -06003033 dev->eco_led_registered = true;
Azael Avalosdef6c4e2014-03-25 20:38:33 -06003034 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04003035
Azael Avalosea215a3f2015-07-31 21:58:12 -06003036 toshiba_kbd_illum_available(dev);
Azael Avalos360f0f32014-03-25 20:38:31 -06003037 /*
3038 * Only register the LED if KBD illumination is supported
3039 * and the keyboard backlight operation mode is set to FN-Z
3040 */
3041 if (dev->kbd_illum_supported && dev->kbd_mode == SCI_KBD_MODE_FNZ) {
3042 dev->kbd_led.name = "toshiba::kbd_backlight";
3043 dev->kbd_led.max_brightness = 1;
3044 dev->kbd_led.brightness_set = toshiba_kbd_backlight_set;
3045 dev->kbd_led.brightness_get = toshiba_kbd_backlight_get;
3046 if (!led_classdev_register(&dev->acpi_dev->dev, &dev->kbd_led))
Azael Avalosea215a3f2015-07-31 21:58:12 -06003047 dev->kbd_led_registered = true;
Azael Avalos360f0f32014-03-25 20:38:31 -06003048 }
Matthew Garrettea6b31f2014-04-04 14:22:34 -04003049
Azael Avalos9d8658a2014-03-25 20:38:32 -06003050 ret = toshiba_touchpad_get(dev, &dummy);
3051 dev->touchpad_supported = !ret;
Matthew Garrettea6b31f2014-04-04 14:22:34 -04003052
Azael Avalosea215a3f2015-07-31 21:58:12 -06003053 toshiba_accelerometer_available(dev);
Seth Forshee135740d2011-09-20 16:55:49 -05003054
Azael Avalosc8c91842015-04-02 19:26:20 -06003055 toshiba_usb_sleep_charge_available(dev);
Azael Avalose26ffe52015-01-18 18:30:22 -07003056
Azael Avalosbb3fe012015-01-18 18:30:24 -07003057 ret = toshiba_usb_rapid_charge_get(dev, &dummy);
3058 dev->usb_rapid_charge_supported = !ret;
3059
Azael Avalos172ce0a2015-01-18 18:30:25 -07003060 ret = toshiba_usb_sleep_music_get(dev, &dummy);
3061 dev->usb_sleep_music_supported = !ret;
3062
Azael Avalos35d53ce2015-02-10 21:09:19 -07003063 ret = toshiba_panel_power_on_get(dev, &dummy);
3064 dev->panel_power_on_supported = !ret;
3065
Azael Avalos17fe4b32015-02-10 21:09:20 -07003066 ret = toshiba_usb_three_get(dev, &dummy);
3067 dev->usb_three_supported = !ret;
3068
Seth Forshee36d03f92011-09-20 16:55:53 -05003069 ret = get_video_status(dev, &dummy);
3070 dev->video_supported = !ret;
3071
3072 ret = get_fan_status(dev, &dummy);
3073 dev->fan_supported = !ret;
3074
Azael Avalos6873f462015-11-23 10:49:10 -07003075 toshiba_wwan_available(dev);
Azael Avalos2fdde832015-11-23 10:49:11 -07003076 if (dev->wwan_supported)
3077 toshiba_acpi_setup_wwan_rfkill(dev);
Azael Avalos6873f462015-11-23 10:49:10 -07003078
Azael Avalos763ff322016-01-25 11:29:10 -07003079 toshiba_cooling_method_available(dev);
3080
Azael Avalos0409cbc2015-07-31 21:58:13 -06003081 print_supported_features(dev);
3082
Azael Avalos360f0f32014-03-25 20:38:31 -06003083 ret = sysfs_create_group(&dev->acpi_dev->dev.kobj,
3084 &toshiba_attr_group);
3085 if (ret) {
3086 dev->sysfs_created = 0;
3087 goto error;
3088 }
3089 dev->sysfs_created = !ret;
3090
Seth Forshee36d03f92011-09-20 16:55:53 -05003091 create_toshiba_proc_entries(dev);
3092
Seth Forshee29cd2932012-01-18 13:44:09 -06003093 toshiba_acpi = dev;
3094
Seth Forshee135740d2011-09-20 16:55:49 -05003095 return 0;
3096
3097error:
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01003098 toshiba_acpi_remove(acpi_dev);
Seth Forshee135740d2011-09-20 16:55:49 -05003099 return ret;
3100}
3101
3102static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
3103{
3104 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05003105
Azael Avalos71454d72014-12-04 20:22:46 -07003106 switch (event) {
3107 case 0x80: /* Hotkeys and some system events */
Azael Avalosa88bc062015-07-22 18:09:12 -06003108 /*
3109 * Machines with this WMI GUID aren't supported due to bugs in
3110 * their AML.
3111 *
3112 * Return silently to avoid triggering a netlink event.
3113 */
3114 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
3115 return;
Azael Avalos71454d72014-12-04 20:22:46 -07003116 toshiba_acpi_process_hotkeys(dev);
3117 break;
Azael Avalosbab09e22015-03-06 18:14:41 -07003118 case 0x81: /* Dock events */
3119 case 0x82:
3120 case 0x83:
3121 pr_info("Dock event received %x\n", event);
3122 break;
3123 case 0x88: /* Thermal events */
3124 pr_info("Thermal event received\n");
3125 break;
3126 case 0x8f: /* LID closed */
3127 case 0x90: /* LID is closed and Dock has been ejected */
3128 break;
3129 case 0x8c: /* SATA power events */
3130 case 0x8b:
3131 pr_info("SATA power event received %x\n", event);
3132 break;
Azael Avalos80546902014-12-04 20:22:47 -07003133 case 0x92: /* Keyboard backlight mode changed */
Azael Avalos65e3cf92015-11-23 10:51:30 -07003134 toshiba_acpi->kbd_event_generated = true;
Azael Avalos80546902014-12-04 20:22:47 -07003135 /* Update sysfs entries */
Azael Avalos65e3cf92015-11-23 10:51:30 -07003136 if (sysfs_update_group(&acpi_dev->dev.kobj,
3137 &toshiba_attr_group))
Azael Avalos80546902014-12-04 20:22:47 -07003138 pr_err("Unable to update sysfs entries\n");
3139 break;
Azael Avalosbab09e22015-03-06 18:14:41 -07003140 case 0x85: /* Unknown */
3141 case 0x8d: /* Unknown */
Azael Avalos71454d72014-12-04 20:22:46 -07003142 case 0x8e: /* Unknown */
Azael Avalosbab09e22015-03-06 18:14:41 -07003143 case 0x94: /* Unknown */
3144 case 0x95: /* Unknown */
Azael Avalos71454d72014-12-04 20:22:46 -07003145 default:
3146 pr_info("Unknown event received %x\n", event);
3147 break;
Seth Forshee29cd2932012-01-18 13:44:09 -06003148 }
Azael Avalosbab09e22015-03-06 18:14:41 -07003149
3150 acpi_bus_generate_netlink_event(acpi_dev->pnp.device_class,
3151 dev_name(&acpi_dev->dev),
Azael Avalos13ae84f2015-11-15 20:33:46 -07003152 event, (event == 0x80) ?
3153 dev->last_key_event : 0);
Matthew Garrett6335e4d2010-02-25 15:20:54 -05003154}
3155
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02003156#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003157static int toshiba_acpi_suspend(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06003158{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003159 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06003160
Azael Avalos1e574db2015-07-22 19:37:49 -06003161 if (dev->hotkey_dev) {
3162 u32 result;
3163
Azael Avalosd37782b2015-05-06 09:35:10 -06003164 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE);
Azael Avalos1e574db2015-07-22 19:37:49 -06003165 if (result != TOS_SUCCESS)
3166 pr_info("Unable to disable hotkeys\n");
3167 }
Seth Forshee29cd2932012-01-18 13:44:09 -06003168
3169 return 0;
3170}
3171
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003172static int toshiba_acpi_resume(struct device *device)
Seth Forshee29cd2932012-01-18 13:44:09 -06003173{
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003174 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
Seth Forshee29cd2932012-01-18 13:44:09 -06003175
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04003176 if (dev->hotkey_dev) {
Azael Avalos2fdde832015-11-23 10:49:11 -07003177 if (toshiba_acpi_enable_hotkeys(dev))
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04003178 pr_info("Unable to re-enable hotkeys\n");
Benjamin Tissoirese7fdb762014-09-02 14:04:19 -04003179 }
Seth Forshee29cd2932012-01-18 13:44:09 -06003180
Azael Avalos2fdde832015-11-23 10:49:11 -07003181 if (dev->wwan_rfk) {
3182 if (!toshiba_wireless_status(dev))
3183 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
3184 }
3185
Seth Forshee29cd2932012-01-18 13:44:09 -06003186 return 0;
3187}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02003188#endif
Matthew Garrett6335e4d2010-02-25 15:20:54 -05003189
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003190static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
3191 toshiba_acpi_suspend, toshiba_acpi_resume);
3192
Seth Forshee135740d2011-09-20 16:55:49 -05003193static struct acpi_driver toshiba_acpi_driver = {
3194 .name = "Toshiba ACPI driver",
3195 .owner = THIS_MODULE,
3196 .ids = toshiba_device_ids,
3197 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
3198 .ops = {
3199 .add = toshiba_acpi_add,
3200 .remove = toshiba_acpi_remove,
3201 .notify = toshiba_acpi_notify,
3202 },
Rafael J. Wysocki43d2fd32012-06-27 23:27:16 +02003203 .drv.pm = &toshiba_acpi_pm,
Seth Forshee135740d2011-09-20 16:55:49 -05003204};
Holger Machtc9263552006-10-20 14:30:29 -07003205
Len Brown4be44fc2005-08-05 00:44:28 -04003206static int __init toshiba_acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
Seth Forshee135740d2011-09-20 16:55:49 -05003208 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
3210 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
3211 if (!toshiba_proc_dir) {
Seth Forshee135740d2011-09-20 16:55:49 -05003212 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04003213 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 }
3215
Seth Forshee135740d2011-09-20 16:55:49 -05003216 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
3217 if (ret) {
3218 pr_err("Failed to register ACPI driver: %d\n", ret);
3219 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Holger Machtc9263552006-10-20 14:30:29 -07003220 }
3221
Seth Forshee135740d2011-09-20 16:55:49 -05003222 return ret;
3223}
philipl@overt.orgc41a40c2008-08-30 11:57:39 -04003224
Seth Forshee135740d2011-09-20 16:55:49 -05003225static void __exit toshiba_acpi_exit(void)
3226{
3227 acpi_bus_unregister_driver(&toshiba_acpi_driver);
3228 if (toshiba_proc_dir)
3229 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232module_init(toshiba_acpi_init);
3233module_exit(toshiba_acpi_exit);