1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
5 * Copyright (C) 2002-2004 John Belmonte
6 * Copyright (C) 2008 Philip Langdale
7 * Copyright (C) 2010 Pierre Ducroquet
8 * Copyright (C) 2014-2016 Azael Avalos
10 * The devolpment page for this driver is located at
11 * http://memebeam.org/toys/ToshibaAcpiDriver.
14 * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
15 * engineering the Windows drivers
16 * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
17 * Rob Miller - TV out and hotkeys help
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #define TOSHIBA_ACPI_VERSION "0.24"
23 #define PROC_INTERFACE_VERSION 1
25 #include <linux/compiler.h>
26 #include <linux/dmi.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/init.h>
31 #include <linux/types.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
34 #include <linux/backlight.h>
35 #include <linux/input.h>
36 #include <linux/input/sparse-keymap.h>
37 #include <linux/leds.h>
38 #include <linux/slab.h>
39 #include <linux/workqueue.h>
40 #include <linux/i8042.h>
41 #include <linux/acpi.h>
42 #include <linux/uaccess.h>
43 #include <linux/miscdevice.h>
44 #include <linux/rfkill.h>
45 #include <linux/hwmon.h>
46 #include <linux/iio/iio.h>
47 #include <linux/toshiba.h>
48 #include <acpi/battery.h>
49 #include <acpi/video.h>
51 MODULE_AUTHOR("John Belmonte");
52 MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
53 MODULE_LICENSE("GPL");
55 static int turn_on_panel_on_resume = -1;
56 module_param(turn_on_panel_on_resume, int, 0644);
57 MODULE_PARM_DESC(turn_on_panel_on_resume,
58 "Call HCI_PANEL_POWER_ON on resume (-1 = auto, 0 = no, 1 = yes");
60 static int hci_hotkey_quickstart = -1;
61 module_param(hci_hotkey_quickstart, int, 0644);
62 MODULE_PARM_DESC(hci_hotkey_quickstart,
63 "Call HCI_HOTKEY_EVENT with value 0x5 for quickstart button support (-1 = auto, 0 = no, 1 = yes");
65 #define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
67 /* Scan code for Fn key on TOS1900 models */
68 #define TOS1900_FN_SCAN 0x6e
70 /* Toshiba ACPI method paths */
71 #define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
74 * The Toshiba configuration interface is composed of the HCI and the SCI,
75 * which are defined as follows:
77 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
78 * be uniform across all their models. Ideally we would just call
79 * dedicated ACPI methods instead of using this primitive interface.
80 * However the ACPI methods seem to be incomplete in some areas (for
81 * example they allow setting, but not reading, the LCD brightness value),
82 * so this is still useful.
84 * SCI stands for "System Configuration Interface" which aim is to
85 * conceal differences in hardware between different models.
91 #define HCI_SET 0xff00
92 #define HCI_GET 0xfe00
93 #define SCI_OPEN 0xf100
94 #define SCI_CLOSE 0xf200
95 #define SCI_GET 0xf300
96 #define SCI_SET 0xf400
99 #define TOS_SUCCESS 0x0000
100 #define TOS_SUCCESS2 0x0001
101 #define TOS_OPEN_CLOSE_OK 0x0044
102 #define TOS_FAILURE 0x1000
103 #define TOS_NOT_SUPPORTED 0x8000
104 #define TOS_ALREADY_OPEN 0x8100
105 #define TOS_NOT_OPENED 0x8200
106 #define TOS_INPUT_DATA_ERROR 0x8300
107 #define TOS_WRITE_PROTECTED 0x8400
108 #define TOS_NOT_PRESENT 0x8600
109 #define TOS_FIFO_EMPTY 0x8c00
110 #define TOS_DATA_NOT_AVAILABLE 0x8d20
111 #define TOS_NOT_INITIALIZED 0x8d50
112 #define TOS_NOT_INSTALLED 0x8e00
115 #define HCI_PANEL_POWER_ON 0x0002
116 #define HCI_FAN 0x0004
117 #define HCI_TR_BACKLIGHT 0x0005
118 #define HCI_SYSTEM_EVENT 0x0016
119 #define HCI_VIDEO_OUT 0x001c
120 #define HCI_HOTKEY_EVENT 0x001e
121 #define HCI_LCD_BRIGHTNESS 0x002a
122 #define HCI_FAN_RPM 0x0045
123 #define HCI_WIRELESS 0x0056
124 #define HCI_ACCELEROMETER 0x006d
125 #define HCI_COOLING_METHOD 0x007f
126 #define HCI_KBD_ILLUMINATION 0x0095
127 #define HCI_ECO_MODE 0x0097
128 #define HCI_ACCELEROMETER2 0x00a6
129 #define HCI_BATTERY_CHARGE_MODE 0x00ba
130 #define HCI_SYSTEM_INFO 0xc000
131 #define SCI_PANEL_POWER_ON 0x010d
132 #define SCI_ILLUMINATION 0x014e
133 #define SCI_USB_SLEEP_CHARGE 0x0150
134 #define SCI_KBD_ILLUM_STATUS 0x015c
135 #define SCI_USB_SLEEP_MUSIC 0x015e
136 #define SCI_USB_THREE 0x0169
137 #define SCI_TOUCHPAD 0x050e
138 #define SCI_KBD_FUNCTION_KEYS 0x0522
140 /* Field definitions */
141 #define HCI_ACCEL_MASK 0x7fff
142 #define HCI_ACCEL_DIRECTION_MASK 0x8000
143 #define HCI_HOTKEY_DISABLE 0x0b
144 #define HCI_HOTKEY_ENABLE_QUICKSTART 0x05
145 #define HCI_HOTKEY_ENABLE 0x09
146 #define HCI_HOTKEY_SPECIAL_FUNCTIONS 0x10
147 #define HCI_LCD_BRIGHTNESS_BITS 3
148 #define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
149 #define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
150 #define HCI_MISC_SHIFT 0x10
151 #define HCI_SYSTEM_TYPE1 0x10
152 #define HCI_SYSTEM_TYPE2 0x11
153 #define HCI_VIDEO_OUT_LCD 0x1
154 #define HCI_VIDEO_OUT_CRT 0x2
155 #define HCI_VIDEO_OUT_TV 0x4
156 #define SCI_KBD_MODE_MASK 0x1f
157 #define SCI_KBD_MODE_FNZ 0x1
158 #define SCI_KBD_MODE_AUTO 0x2
159 #define SCI_KBD_MODE_ON 0x8
160 #define SCI_KBD_MODE_OFF 0x10
161 #define SCI_KBD_TIME_MAX 0x3c001a
162 #define HCI_WIRELESS_STATUS 0x1
163 #define HCI_WIRELESS_WWAN 0x3
164 #define HCI_WIRELESS_WWAN_STATUS 0x2000
165 #define HCI_WIRELESS_WWAN_POWER 0x4000
166 #define SCI_USB_CHARGE_MODE_MASK 0xff
167 #define SCI_USB_CHARGE_DISABLED 0x00
168 #define SCI_USB_CHARGE_ALTERNATE 0x09
169 #define SCI_USB_CHARGE_TYPICAL 0x11
170 #define SCI_USB_CHARGE_AUTO 0x21
171 #define SCI_USB_CHARGE_BAT_MASK 0x7
172 #define SCI_USB_CHARGE_BAT_LVL_OFF 0x1
173 #define SCI_USB_CHARGE_BAT_LVL_ON 0x4
174 #define SCI_USB_CHARGE_BAT_LVL 0x0200
175 #define SCI_USB_CHARGE_RAPID_DSP 0x0300
177 struct toshiba_acpi_dev {
178 struct acpi_device *acpi_dev;
179 const char *method_hci;
180 struct input_dev *hotkey_dev;
181 struct work_struct hotkey_work;
182 struct backlight_device *backlight_dev;
183 struct led_classdev led_dev;
184 struct led_classdev kbd_led;
185 struct led_classdev eco_led;
186 struct miscdevice miscdev;
187 struct rfkill *wwan_rfk;
188 struct iio_dev *indio_dev;
189 #if IS_ENABLED(CONFIG_HWMON)
190 struct device *hwmon_device;
201 int hotkey_event_type;
202 int max_cooling_method;
204 unsigned int illumination_supported:1;
205 unsigned int video_supported:1;
206 unsigned int fan_supported:1;
207 unsigned int fan_rpm_supported:1;
208 unsigned int system_event_supported:1;
209 unsigned int ntfy_supported:1;
210 unsigned int info_supported:1;
211 unsigned int tr_backlight_supported:1;
212 unsigned int kbd_illum_supported:1;
213 unsigned int touchpad_supported:1;
214 unsigned int eco_supported:1;
215 unsigned int accelerometer_supported:1;
216 unsigned int usb_sleep_charge_supported:1;
217 unsigned int usb_rapid_charge_supported:1;
218 unsigned int usb_sleep_music_supported:1;
219 unsigned int kbd_function_keys_supported:1;
220 unsigned int panel_power_on_supported:1;
221 unsigned int usb_three_supported:1;
222 unsigned int wwan_supported:1;
223 unsigned int cooling_method_supported:1;
224 unsigned int battery_charge_mode_supported:1;
225 unsigned int sysfs_created:1;
226 unsigned int special_functions;
228 bool kbd_event_generated;
232 static struct toshiba_acpi_dev *toshiba_acpi;
234 static bool disable_hotkeys;
235 module_param(disable_hotkeys, bool, 0444);
236 MODULE_PARM_DESC(disable_hotkeys, "Disables the hotkeys activation");
238 static const struct acpi_device_id toshiba_device_ids[] = {
245 MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
247 static const struct key_entry toshiba_acpi_keymap[] = {
248 { KE_KEY, 0x9e, { KEY_RFKILL } },
249 { KE_KEY, 0x101, { KEY_MUTE } },
250 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
251 { KE_KEY, 0x103, { KEY_ZOOMIN } },
252 { KE_KEY, 0x10f, { KEY_TAB } },
253 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
254 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
255 { KE_KEY, 0x13b, { KEY_COFFEE } },
256 { KE_KEY, 0x13c, { KEY_BATTERY } },
257 { KE_KEY, 0x13d, { KEY_SLEEP } },
258 { KE_KEY, 0x13e, { KEY_SUSPEND } },
259 { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } },
260 { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } },
261 { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } },
262 { KE_KEY, 0x142, { KEY_WLAN } },
263 { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } },
264 { KE_KEY, 0x17f, { KEY_FN } },
265 { KE_KEY, 0xb05, { KEY_PROG2 } },
266 { KE_KEY, 0xb06, { KEY_WWW } },
267 { KE_KEY, 0xb07, { KEY_MAIL } },
268 { KE_KEY, 0xb30, { KEY_STOP } },
269 { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } },
270 { KE_KEY, 0xb32, { KEY_NEXTSONG } },
271 { KE_KEY, 0xb33, { KEY_PLAYPAUSE } },
272 { KE_KEY, 0xb5a, { KEY_MEDIA } },
273 { KE_IGNORE, 0x0e00, { KEY_RESERVED } }, /* Wake from sleep */
274 { KE_IGNORE, 0x1430, { KEY_RESERVED } }, /* Wake from sleep */
275 { KE_IGNORE, 0x1501, { KEY_RESERVED } }, /* Output changed */
276 { KE_IGNORE, 0x1502, { KEY_RESERVED } }, /* HDMI plugged/unplugged */
277 { KE_IGNORE, 0x1ABE, { KEY_RESERVED } }, /* Protection level set */
278 { KE_IGNORE, 0x1ABF, { KEY_RESERVED } }, /* Protection level off */
282 static const struct key_entry toshiba_acpi_alt_keymap[] = {
283 { KE_KEY, 0x102, { KEY_ZOOMOUT } },
284 { KE_KEY, 0x103, { KEY_ZOOMIN } },
285 { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } },
286 { KE_KEY, 0x139, { KEY_ZOOMRESET } },
287 { KE_KEY, 0x13c, { KEY_BRIGHTNESSDOWN } },
288 { KE_KEY, 0x13d, { KEY_BRIGHTNESSUP } },
289 { KE_KEY, 0x13e, { KEY_SWITCHVIDEOMODE } },
290 { KE_KEY, 0x13f, { KEY_TOUCHPAD_TOGGLE } },
291 { KE_KEY, 0x157, { KEY_MUTE } },
292 { KE_KEY, 0x158, { KEY_WLAN } },
300 static inline void _set_bit(u32 *word, u32 mask, int value)
302 *word = (*word & ~mask) | (mask * value);
306 * ACPI interface wrappers
309 static int write_acpi_int(const char *methodName, int val)
313 status = acpi_execute_simple_method(NULL, (char *)methodName, val);
314 return (status == AE_OK) ? 0 : -EIO;
318 * Perform a raw configuration call. Here we don't care about input or output
321 static acpi_status tci_raw(struct toshiba_acpi_dev *dev,
322 const u32 in[TCI_WORDS], u32 out[TCI_WORDS])
324 union acpi_object in_objs[TCI_WORDS], out_objs[TCI_WORDS + 1];
325 struct acpi_object_list params;
326 struct acpi_buffer results;
330 params.count = TCI_WORDS;
331 params.pointer = in_objs;
332 for (i = 0; i < TCI_WORDS; ++i) {
333 in_objs[i].type = ACPI_TYPE_INTEGER;
334 in_objs[i].integer.value = in[i];
337 results.length = sizeof(out_objs);
338 results.pointer = out_objs;
340 status = acpi_evaluate_object(dev->acpi_dev->handle,
341 (char *)dev->method_hci, ¶ms,
343 if ((status == AE_OK) && (out_objs->package.count <= TCI_WORDS)) {
344 for (i = 0; i < out_objs->package.count; ++i)
345 out[i] = out_objs->package.elements[i].integer.value;
354 * In addition to the ACPI status, the HCI system returns a result which
355 * may be useful (such as "not supported").
358 static u32 hci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
360 u32 in[TCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
362 acpi_status status = tci_raw(dev, in, out);
364 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
367 static u32 hci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
369 u32 in[TCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
371 acpi_status status = tci_raw(dev, in, out);
373 if (ACPI_FAILURE(status))
385 static int sci_open(struct toshiba_acpi_dev *dev)
387 u32 in[TCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 };
389 acpi_status status = tci_raw(dev, in, out);
391 if (ACPI_FAILURE(status)) {
392 pr_err("ACPI call to open SCI failed\n");
396 if (out[0] == TOS_OPEN_CLOSE_OK) {
398 } else if (out[0] == TOS_ALREADY_OPEN) {
399 pr_info("Toshiba SCI already opened\n");
401 } else if (out[0] == TOS_NOT_SUPPORTED) {
403 * Some BIOSes do not have the SCI open/close functions
404 * implemented and return 0x8000 (Not Supported), failing to
405 * register some supported features.
407 * Simply return 1 if we hit those affected laptops to make the
408 * supported features work.
410 * In the case that some laptops really do not support the SCI,
411 * all the SCI dependent functions check for TOS_NOT_SUPPORTED,
412 * and thus, not registering support for the queried feature.
415 } else if (out[0] == TOS_NOT_PRESENT) {
416 pr_info("Toshiba SCI is not present\n");
422 static void sci_close(struct toshiba_acpi_dev *dev)
424 u32 in[TCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 };
426 acpi_status status = tci_raw(dev, in, out);
428 if (ACPI_FAILURE(status)) {
429 pr_err("ACPI call to close SCI failed\n");
433 if (out[0] == TOS_OPEN_CLOSE_OK)
435 else if (out[0] == TOS_NOT_OPENED)
436 pr_info("Toshiba SCI not opened\n");
437 else if (out[0] == TOS_NOT_PRESENT)
438 pr_info("Toshiba SCI is not present\n");
441 static u32 sci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
443 u32 in[TCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 };
445 acpi_status status = tci_raw(dev, in, out);
447 if (ACPI_FAILURE(status))
455 static u32 sci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
457 u32 in[TCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 };
459 acpi_status status = tci_raw(dev, in, out);
461 return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
464 /* Illumination support */
465 static void toshiba_illumination_available(struct toshiba_acpi_dev *dev)
467 u32 in[TCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 };
471 dev->illumination_supported = 0;
476 status = tci_raw(dev, in, out);
478 if (ACPI_FAILURE(status)) {
479 pr_err("ACPI call to query Illumination support failed\n");
483 if (out[0] != TOS_SUCCESS)
486 dev->illumination_supported = 1;
489 static void toshiba_illumination_set(struct led_classdev *cdev,
490 enum led_brightness brightness)
492 struct toshiba_acpi_dev *dev = container_of(cdev,
493 struct toshiba_acpi_dev, led_dev);
497 /* First request : initialize communication. */
501 /* Switch the illumination on/off */
502 state = brightness ? 1 : 0;
503 result = sci_write(dev, SCI_ILLUMINATION, state);
505 if (result == TOS_FAILURE)
506 pr_err("ACPI call for illumination failed\n");
509 static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
511 struct toshiba_acpi_dev *dev = container_of(cdev,
512 struct toshiba_acpi_dev, led_dev);
516 /* First request : initialize communication. */
520 /* Check the illumination */
521 result = sci_read(dev, SCI_ILLUMINATION, &state);
523 if (result == TOS_FAILURE) {
524 pr_err("ACPI call for illumination failed\n");
526 } else if (result != TOS_SUCCESS) {
530 return state ? LED_FULL : LED_OFF;
533 /* KBD Illumination */
534 static void toshiba_kbd_illum_available(struct toshiba_acpi_dev *dev)
536 u32 in[TCI_WORDS] = { SCI_GET, SCI_KBD_ILLUM_STATUS, 0, 0, 0, 0 };
540 dev->kbd_illum_supported = 0;
541 dev->kbd_event_generated = false;
546 status = tci_raw(dev, in, out);
548 if (ACPI_FAILURE(status)) {
549 pr_err("ACPI call to query kbd illumination support failed\n");
553 if (out[0] != TOS_SUCCESS)
557 * Check for keyboard backlight timeout max value,
558 * previous kbd backlight implementation set this to
559 * 0x3c0003, and now the new implementation set this
560 * to 0x3c001a, use this to distinguish between them.
562 if (out[3] == SCI_KBD_TIME_MAX)
566 /* Get the current keyboard backlight mode */
567 dev->kbd_mode = out[2] & SCI_KBD_MODE_MASK;
568 /* Get the current time (1-60 seconds) */
569 dev->kbd_time = out[2] >> HCI_MISC_SHIFT;
570 /* Flag as supported */
571 dev->kbd_illum_supported = 1;
574 static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time)
581 result = sci_write(dev, SCI_KBD_ILLUM_STATUS, time);
583 if (result == TOS_FAILURE)
584 pr_err("ACPI call to set KBD backlight status failed\n");
585 else if (result == TOS_NOT_SUPPORTED)
588 return result == TOS_SUCCESS ? 0 : -EIO;
591 static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time)
598 result = sci_read(dev, SCI_KBD_ILLUM_STATUS, time);
600 if (result == TOS_FAILURE)
601 pr_err("ACPI call to get KBD backlight status failed\n");
602 else if (result == TOS_NOT_SUPPORTED)
605 return result == TOS_SUCCESS ? 0 : -EIO;
608 static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev)
610 struct toshiba_acpi_dev *dev = container_of(cdev,
611 struct toshiba_acpi_dev, kbd_led);
615 /* Check the keyboard backlight state */
616 result = hci_read(dev, HCI_KBD_ILLUMINATION, &state);
617 if (result == TOS_FAILURE) {
618 pr_err("ACPI call to get the keyboard backlight failed\n");
620 } else if (result != TOS_SUCCESS) {
624 return state ? LED_FULL : LED_OFF;
627 static void toshiba_kbd_backlight_set(struct led_classdev *cdev,
628 enum led_brightness brightness)
630 struct toshiba_acpi_dev *dev = container_of(cdev,
631 struct toshiba_acpi_dev, kbd_led);
635 /* Set the keyboard backlight state */
636 state = brightness ? 1 : 0;
637 result = hci_write(dev, HCI_KBD_ILLUMINATION, state);
638 if (result == TOS_FAILURE)
639 pr_err("ACPI call to set KBD Illumination mode failed\n");
642 /* TouchPad support */
643 static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state)
650 result = sci_write(dev, SCI_TOUCHPAD, state);
652 if (result == TOS_FAILURE)
653 pr_err("ACPI call to set the touchpad failed\n");
654 else if (result == TOS_NOT_SUPPORTED)
657 return result == TOS_SUCCESS ? 0 : -EIO;
660 static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state)
667 result = sci_read(dev, SCI_TOUCHPAD, state);
669 if (result == TOS_FAILURE)
670 pr_err("ACPI call to query the touchpad failed\n");
671 else if (result == TOS_NOT_SUPPORTED)
674 return result == TOS_SUCCESS ? 0 : -EIO;
677 /* Eco Mode support */
678 static void toshiba_eco_mode_available(struct toshiba_acpi_dev *dev)
680 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 0, 0, 0 };
684 dev->eco_supported = 0;
686 status = tci_raw(dev, in, out);
687 if (ACPI_FAILURE(status)) {
688 pr_err("ACPI call to get ECO led failed\n");
692 if (out[0] == TOS_INPUT_DATA_ERROR || out[0] == TOS_NOT_SUPPORTED) {
694 * If we receive 0x8300 (Input Data Error), it means that the
695 * LED device is present, but that we just screwed the input
698 * On some laptops 0x8000 (Not supported) is also returned in
699 * this case, so we need to allow for that as well.
701 * Let's query the status of the LED to see if we really have a
702 * success response, indicating the actual presense of the LED,
703 * bail out otherwise.
706 status = tci_raw(dev, in, out);
707 if (ACPI_FAILURE(status)) {
708 pr_err("ACPI call to get ECO led failed\n");
712 if (out[0] != TOS_SUCCESS)
715 dev->eco_supported = 1;
719 static enum led_brightness
720 toshiba_eco_mode_get_status(struct led_classdev *cdev)
722 struct toshiba_acpi_dev *dev = container_of(cdev,
723 struct toshiba_acpi_dev, eco_led);
724 u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 };
728 status = tci_raw(dev, in, out);
729 if (ACPI_FAILURE(status)) {
730 pr_err("ACPI call to get ECO led failed\n");
734 if (out[0] != TOS_SUCCESS)
737 return out[2] ? LED_FULL : LED_OFF;
740 static void toshiba_eco_mode_set_status(struct led_classdev *cdev,
741 enum led_brightness brightness)
743 struct toshiba_acpi_dev *dev = container_of(cdev,
744 struct toshiba_acpi_dev, eco_led);
745 u32 in[TCI_WORDS] = { HCI_SET, HCI_ECO_MODE, 0, 1, 0, 0 };
749 /* Switch the Eco Mode led on/off */
750 in[2] = (brightness) ? 1 : 0;
751 status = tci_raw(dev, in, out);
752 if (ACPI_FAILURE(status))
753 pr_err("ACPI call to set ECO led failed\n");
756 /* Accelerometer support */
757 static void toshiba_accelerometer_available(struct toshiba_acpi_dev *dev)
759 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER2, 0, 0, 0, 0 };
763 dev->accelerometer_supported = 0;
766 * Check if the accelerometer call exists,
767 * this call also serves as initialization
769 status = tci_raw(dev, in, out);
770 if (ACPI_FAILURE(status)) {
771 pr_err("ACPI call to query the accelerometer failed\n");
775 if (out[0] != TOS_SUCCESS)
778 dev->accelerometer_supported = 1;
781 static int toshiba_accelerometer_get(struct toshiba_acpi_dev *dev,
784 u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER, 0, 1, 0, 0 };
788 /* Check the Accelerometer status */
789 status = tci_raw(dev, in, out);
790 if (ACPI_FAILURE(status)) {
791 pr_err("ACPI call to query the accelerometer failed\n");
795 if (out[0] == TOS_NOT_SUPPORTED)
798 if (out[0] != TOS_SUCCESS)
807 /* Sleep (Charge and Music) utilities support */
808 static void toshiba_usb_sleep_charge_available(struct toshiba_acpi_dev *dev)
810 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
814 dev->usb_sleep_charge_supported = 0;
819 status = tci_raw(dev, in, out);
820 if (ACPI_FAILURE(status)) {
821 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
826 if (out[0] != TOS_SUCCESS) {
831 dev->usbsc_mode_base = out[4];
833 in[5] = SCI_USB_CHARGE_BAT_LVL;
834 status = tci_raw(dev, in, out);
836 if (ACPI_FAILURE(status)) {
837 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
841 if (out[0] != TOS_SUCCESS)
844 dev->usbsc_bat_level = out[2];
845 /* Flag as supported */
846 dev->usb_sleep_charge_supported = 1;
849 static int toshiba_usb_sleep_charge_get(struct toshiba_acpi_dev *dev,
857 result = sci_read(dev, SCI_USB_SLEEP_CHARGE, mode);
859 if (result == TOS_FAILURE)
860 pr_err("ACPI call to set USB S&C mode failed\n");
861 else if (result == TOS_NOT_SUPPORTED)
864 return result == TOS_SUCCESS ? 0 : -EIO;
867 static int toshiba_usb_sleep_charge_set(struct toshiba_acpi_dev *dev,
875 result = sci_write(dev, SCI_USB_SLEEP_CHARGE, mode);
877 if (result == TOS_FAILURE)
878 pr_err("ACPI call to set USB S&C mode failed\n");
879 else if (result == TOS_NOT_SUPPORTED)
882 return result == TOS_SUCCESS ? 0 : -EIO;
885 static int toshiba_sleep_functions_status_get(struct toshiba_acpi_dev *dev,
888 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
895 in[5] = SCI_USB_CHARGE_BAT_LVL;
896 status = tci_raw(dev, in, out);
898 if (ACPI_FAILURE(status)) {
899 pr_err("ACPI call to get USB S&C battery level failed\n");
903 if (out[0] == TOS_NOT_SUPPORTED)
906 if (out[0] != TOS_SUCCESS)
915 static int toshiba_sleep_functions_status_set(struct toshiba_acpi_dev *dev,
918 u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
926 in[5] = SCI_USB_CHARGE_BAT_LVL;
927 status = tci_raw(dev, in, out);
929 if (ACPI_FAILURE(status)) {
930 pr_err("ACPI call to set USB S&C battery level failed\n");
934 if (out[0] == TOS_NOT_SUPPORTED)
937 return out[0] == TOS_SUCCESS ? 0 : -EIO;
940 static int toshiba_usb_rapid_charge_get(struct toshiba_acpi_dev *dev,
943 u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
950 in[5] = SCI_USB_CHARGE_RAPID_DSP;
951 status = tci_raw(dev, in, out);
953 if (ACPI_FAILURE(status)) {
954 pr_err("ACPI call to get USB Rapid Charge failed\n");
958 if (out[0] == TOS_NOT_SUPPORTED)
961 if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
969 static int toshiba_usb_rapid_charge_set(struct toshiba_acpi_dev *dev,
972 u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
980 in[5] = SCI_USB_CHARGE_RAPID_DSP;
981 status = tci_raw(dev, in, out);
983 if (ACPI_FAILURE(status)) {
984 pr_err("ACPI call to set USB Rapid Charge failed\n");
988 if (out[0] == TOS_NOT_SUPPORTED)
991 return (out[0] == TOS_SUCCESS || out[0] == TOS_SUCCESS2) ? 0 : -EIO;
994 static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev *dev, u32 *state)
1001 result = sci_read(dev, SCI_USB_SLEEP_MUSIC, state);
1003 if (result == TOS_FAILURE)
1004 pr_err("ACPI call to get Sleep and Music failed\n");
1005 else if (result == TOS_NOT_SUPPORTED)
1008 return result == TOS_SUCCESS ? 0 : -EIO;
1011 static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev *dev, u32 state)
1018 result = sci_write(dev, SCI_USB_SLEEP_MUSIC, state);
1020 if (result == TOS_FAILURE)
1021 pr_err("ACPI call to set Sleep and Music failed\n");
1022 else if (result == TOS_NOT_SUPPORTED)
1025 return result == TOS_SUCCESS ? 0 : -EIO;
1028 /* Keyboard function keys */
1029 static int toshiba_function_keys_get(struct toshiba_acpi_dev *dev, u32 *mode)
1036 result = sci_read(dev, SCI_KBD_FUNCTION_KEYS, mode);
1038 if (result == TOS_FAILURE)
1039 pr_err("ACPI call to get KBD function keys failed\n");
1040 else if (result == TOS_NOT_SUPPORTED)
1043 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1046 static int toshiba_function_keys_set(struct toshiba_acpi_dev *dev, u32 mode)
1053 result = sci_write(dev, SCI_KBD_FUNCTION_KEYS, mode);
1055 if (result == TOS_FAILURE)
1056 pr_err("ACPI call to set KBD function keys failed\n");
1057 else if (result == TOS_NOT_SUPPORTED)
1060 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1063 /* Panel Power ON */
1064 static int toshiba_panel_power_on_get(struct toshiba_acpi_dev *dev, u32 *state)
1071 result = sci_read(dev, SCI_PANEL_POWER_ON, state);
1073 if (result == TOS_FAILURE)
1074 pr_err("ACPI call to get Panel Power ON failed\n");
1075 else if (result == TOS_NOT_SUPPORTED)
1078 return result == TOS_SUCCESS ? 0 : -EIO;
1081 static int toshiba_panel_power_on_set(struct toshiba_acpi_dev *dev, u32 state)
1088 result = sci_write(dev, SCI_PANEL_POWER_ON, state);
1090 if (result == TOS_FAILURE)
1091 pr_err("ACPI call to set Panel Power ON failed\n");
1092 else if (result == TOS_NOT_SUPPORTED)
1095 return result == TOS_SUCCESS ? 0 : -EIO;
1099 static int toshiba_usb_three_get(struct toshiba_acpi_dev *dev, u32 *state)
1106 result = sci_read(dev, SCI_USB_THREE, state);
1108 if (result == TOS_FAILURE)
1109 pr_err("ACPI call to get USB 3 failed\n");
1110 else if (result == TOS_NOT_SUPPORTED)
1113 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1116 static int toshiba_usb_three_set(struct toshiba_acpi_dev *dev, u32 state)
1123 result = sci_write(dev, SCI_USB_THREE, state);
1125 if (result == TOS_FAILURE)
1126 pr_err("ACPI call to set USB 3 failed\n");
1127 else if (result == TOS_NOT_SUPPORTED)
1130 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1133 /* Hotkey Event type */
1134 static int toshiba_hotkey_event_type_get(struct toshiba_acpi_dev *dev,
1137 u32 in[TCI_WORDS] = { HCI_GET, HCI_SYSTEM_INFO, 0x03, 0, 0, 0 };
1141 status = tci_raw(dev, in, out);
1142 if (ACPI_FAILURE(status)) {
1143 pr_err("ACPI call to get System type failed\n");
1147 if (out[0] == TOS_NOT_SUPPORTED)
1150 if (out[0] != TOS_SUCCESS)
1158 /* Wireless status (RFKill, WLAN, BT, WWAN) */
1159 static int toshiba_wireless_status(struct toshiba_acpi_dev *dev)
1161 u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1165 in[3] = HCI_WIRELESS_STATUS;
1166 status = tci_raw(dev, in, out);
1168 if (ACPI_FAILURE(status)) {
1169 pr_err("ACPI call to get Wireless status failed\n");
1173 if (out[0] == TOS_NOT_SUPPORTED)
1176 if (out[0] != TOS_SUCCESS)
1179 dev->killswitch = !!(out[2] & HCI_WIRELESS_STATUS);
1185 static void toshiba_wwan_available(struct toshiba_acpi_dev *dev)
1187 u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1191 dev->wwan_supported = 0;
1194 * WWAN support can be queried by setting the in[3] value to
1195 * HCI_WIRELESS_WWAN (0x03).
1197 * If supported, out[0] contains TOS_SUCCESS and out[2] contains
1198 * HCI_WIRELESS_WWAN_STATUS (0x2000).
1200 * If not supported, out[0] contains TOS_INPUT_DATA_ERROR (0x8300)
1201 * or TOS_NOT_SUPPORTED (0x8000).
1203 in[3] = HCI_WIRELESS_WWAN;
1204 status = tci_raw(dev, in, out);
1205 if (ACPI_FAILURE(status)) {
1206 pr_err("ACPI call to get WWAN status failed\n");
1210 if (out[0] != TOS_SUCCESS)
1213 dev->wwan_supported = (out[2] == HCI_WIRELESS_WWAN_STATUS);
1216 static int toshiba_wwan_set(struct toshiba_acpi_dev *dev, u32 state)
1218 u32 in[TCI_WORDS] = { HCI_SET, HCI_WIRELESS, state, 0, 0, 0 };
1222 in[3] = HCI_WIRELESS_WWAN_STATUS;
1223 status = tci_raw(dev, in, out);
1224 if (ACPI_FAILURE(status)) {
1225 pr_err("ACPI call to set WWAN status failed\n");
1229 if (out[0] == TOS_NOT_SUPPORTED)
1232 if (out[0] != TOS_SUCCESS)
1236 * Some devices only need to call HCI_WIRELESS_WWAN_STATUS to
1237 * (de)activate the device, but some others need the
1238 * HCI_WIRELESS_WWAN_POWER call as well.
1240 in[3] = HCI_WIRELESS_WWAN_POWER;
1241 status = tci_raw(dev, in, out);
1242 if (ACPI_FAILURE(status)) {
1243 pr_err("ACPI call to set WWAN power failed\n");
1247 if (out[0] == TOS_NOT_SUPPORTED)
1250 return out[0] == TOS_SUCCESS ? 0 : -EIO;
1253 /* Cooling Method */
1254 static void toshiba_cooling_method_available(struct toshiba_acpi_dev *dev)
1256 u32 in[TCI_WORDS] = { HCI_GET, HCI_COOLING_METHOD, 0, 0, 0, 0 };
1260 dev->cooling_method_supported = 0;
1261 dev->max_cooling_method = 0;
1263 status = tci_raw(dev, in, out);
1264 if (ACPI_FAILURE(status)) {
1265 pr_err("ACPI call to get Cooling Method failed\n");
1269 if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
1272 dev->cooling_method_supported = 1;
1273 dev->max_cooling_method = out[3];
1276 static int toshiba_cooling_method_get(struct toshiba_acpi_dev *dev, u32 *state)
1278 u32 result = hci_read(dev, HCI_COOLING_METHOD, state);
1280 if (result == TOS_FAILURE)
1281 pr_err("ACPI call to get Cooling Method failed\n");
1283 if (result == TOS_NOT_SUPPORTED)
1286 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1289 static int toshiba_cooling_method_set(struct toshiba_acpi_dev *dev, u32 state)
1291 u32 result = hci_write(dev, HCI_COOLING_METHOD, state);
1293 if (result == TOS_FAILURE)
1294 pr_err("ACPI call to set Cooling Method failed\n");
1296 if (result == TOS_NOT_SUPPORTED)
1299 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1302 /* Battery charge control */
1303 static void toshiba_battery_charge_mode_available(struct toshiba_acpi_dev *dev)
1305 u32 in[TCI_WORDS] = { HCI_GET, HCI_BATTERY_CHARGE_MODE, 0, 0, 0, 0 };
1309 dev->battery_charge_mode_supported = 0;
1311 status = tci_raw(dev, in, out);
1312 if (ACPI_FAILURE(status)) {
1313 pr_err("ACPI call to get Battery Charge Mode failed\n");
1317 if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
1320 dev->battery_charge_mode_supported = 1;
1323 static int toshiba_battery_charge_mode_get(struct toshiba_acpi_dev *dev, u32 *state)
1325 u32 in[TCI_WORDS] = { HCI_GET, HCI_BATTERY_CHARGE_MODE, 0, 0, 0, 0x1 };
1330 acpi_status status = tci_raw(dev, in, out);
1332 if (ACPI_FAILURE(status))
1333 pr_err("ACPI call to get Battery Charge Mode failed\n");
1339 case TOS_NOT_SUPPORTED:
1341 case TOS_DATA_NOT_AVAILABLE:
1352 static int toshiba_battery_charge_mode_set(struct toshiba_acpi_dev *dev, u32 state)
1354 u32 result = hci_write(dev, HCI_BATTERY_CHARGE_MODE, state);
1356 if (result == TOS_FAILURE)
1357 pr_err("ACPI call to set Battery Charge Mode failed\n");
1359 if (result == TOS_NOT_SUPPORTED)
1362 return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1365 /* Transflective Backlight */
1366 static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 *status)
1368 u32 result = hci_read(dev, HCI_TR_BACKLIGHT, status);
1370 if (result == TOS_FAILURE)
1371 pr_err("ACPI call to get Transflective Backlight failed\n");
1372 else if (result == TOS_NOT_SUPPORTED)
1375 return result == TOS_SUCCESS ? 0 : -EIO;
1378 static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 status)
1380 u32 result = hci_write(dev, HCI_TR_BACKLIGHT, !status);
1382 if (result == TOS_FAILURE)
1383 pr_err("ACPI call to set Transflective Backlight failed\n");
1384 else if (result == TOS_NOT_SUPPORTED)
1387 return result == TOS_SUCCESS ? 0 : -EIO;
1390 static struct proc_dir_entry *toshiba_proc_dir;
1392 /* LCD Brightness */
1393 static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
1399 if (dev->tr_backlight_supported) {
1400 int ret = get_tr_backlight_status(dev, &value);
1409 result = hci_read(dev, HCI_LCD_BRIGHTNESS, &value);
1410 if (result == TOS_FAILURE)
1411 pr_err("ACPI call to get LCD Brightness failed\n");
1412 else if (result == TOS_NOT_SUPPORTED)
1415 return result == TOS_SUCCESS ?
1416 brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT) :
1420 static int get_lcd_brightness(struct backlight_device *bd)
1422 struct toshiba_acpi_dev *dev = bl_get_data(bd);
1424 return __get_lcd_brightness(dev);
1427 static int lcd_proc_show(struct seq_file *m, void *v)
1429 struct toshiba_acpi_dev *dev = m->private;
1433 if (!dev->backlight_dev)
1436 levels = dev->backlight_dev->props.max_brightness + 1;
1437 value = get_lcd_brightness(dev->backlight_dev);
1439 pr_err("Error reading LCD brightness\n");
1443 seq_printf(m, "brightness: %d\n", value);
1444 seq_printf(m, "brightness_levels: %d\n", levels);
1449 static int lcd_proc_open(struct inode *inode, struct file *file)
1451 return single_open(file, lcd_proc_show, pde_data(inode));
1454 static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
1458 if (dev->tr_backlight_supported) {
1459 int ret = set_tr_backlight_status(dev, !value);
1467 value = value << HCI_LCD_BRIGHTNESS_SHIFT;
1468 result = hci_write(dev, HCI_LCD_BRIGHTNESS, value);
1469 if (result == TOS_FAILURE)
1470 pr_err("ACPI call to set LCD Brightness failed\n");
1471 else if (result == TOS_NOT_SUPPORTED)
1474 return result == TOS_SUCCESS ? 0 : -EIO;
1477 static int set_lcd_status(struct backlight_device *bd)
1479 struct toshiba_acpi_dev *dev = bl_get_data(bd);
1481 return set_lcd_brightness(dev, bd->props.brightness);
1484 static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
1485 size_t count, loff_t *pos)
1487 struct toshiba_acpi_dev *dev = pde_data(file_inode(file));
1493 len = min(count, sizeof(cmd) - 1);
1494 if (copy_from_user(cmd, buf, len))
1498 levels = dev->backlight_dev->props.max_brightness + 1;
1499 if (sscanf(cmd, " brightness : %i", &value) != 1 &&
1500 value < 0 && value > levels)
1503 if (set_lcd_brightness(dev, value))
1509 static const struct proc_ops lcd_proc_ops = {
1510 .proc_open = lcd_proc_open,
1511 .proc_read = seq_read,
1512 .proc_lseek = seq_lseek,
1513 .proc_release = single_release,
1514 .proc_write = lcd_proc_write,
1518 static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
1520 u32 result = hci_read(dev, HCI_VIDEO_OUT, status);
1522 if (result == TOS_FAILURE)
1523 pr_err("ACPI call to get Video-Out failed\n");
1524 else if (result == TOS_NOT_SUPPORTED)
1527 return result == TOS_SUCCESS ? 0 : -EIO;
1530 static int video_proc_show(struct seq_file *m, void *v)
1532 struct toshiba_acpi_dev *dev = m->private;
1533 int is_lcd, is_crt, is_tv;
1536 if (get_video_status(dev, &value))
1539 is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0;
1540 is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0;
1541 is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0;
1543 seq_printf(m, "lcd_out: %d\n", is_lcd);
1544 seq_printf(m, "crt_out: %d\n", is_crt);
1545 seq_printf(m, "tv_out: %d\n", is_tv);
1550 static int video_proc_open(struct inode *inode, struct file *file)
1552 return single_open(file, video_proc_show, pde_data(inode));
1555 static ssize_t video_proc_write(struct file *file, const char __user *buf,
1556 size_t count, loff_t *pos)
1558 struct toshiba_acpi_dev *dev = pde_data(file_inode(file));
1561 int lcd_out = -1, crt_out = -1, tv_out = -1;
1567 cmd = memdup_user_nul(buf, count);
1569 return PTR_ERR(cmd);
1574 * Scan expression. Multiple expressions may be delimited with ;
1575 * NOTE: To keep scanning simple, invalid fields are ignored.
1578 if (sscanf(buffer, " lcd_out : %i", &value) == 1)
1579 lcd_out = value & 1;
1580 else if (sscanf(buffer, " crt_out : %i", &value) == 1)
1581 crt_out = value & 1;
1582 else if (sscanf(buffer, " tv_out : %i", &value) == 1)
1584 /* Advance to one character past the next ; */
1588 } while (remain && *(buffer - 1) != ';');
1593 ret = get_video_status(dev, &video_out);
1595 unsigned int new_video_out = video_out;
1598 _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
1600 _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
1602 _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
1604 * To avoid unnecessary video disruption, only write the new
1605 * video setting if something changed.
1607 if (new_video_out != video_out)
1608 ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
1611 return ret ? -EIO : count;
1614 static const struct proc_ops video_proc_ops = {
1615 .proc_open = video_proc_open,
1616 .proc_read = seq_read,
1617 .proc_lseek = seq_lseek,
1618 .proc_release = single_release,
1619 .proc_write = video_proc_write,
1623 static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
1625 u32 result = hci_read(dev, HCI_FAN, status);
1627 if (result == TOS_FAILURE)
1628 pr_err("ACPI call to get Fan status failed\n");
1629 else if (result == TOS_NOT_SUPPORTED)
1632 return result == TOS_SUCCESS ? 0 : -EIO;
1635 static int set_fan_status(struct toshiba_acpi_dev *dev, u32 status)
1637 u32 result = hci_write(dev, HCI_FAN, status);
1639 if (result == TOS_FAILURE)
1640 pr_err("ACPI call to set Fan status failed\n");
1641 else if (result == TOS_NOT_SUPPORTED)
1644 return result == TOS_SUCCESS ? 0 : -EIO;
1647 static int fan_proc_show(struct seq_file *m, void *v)
1649 struct toshiba_acpi_dev *dev = m->private;
1652 if (get_fan_status(dev, &value))
1655 seq_printf(m, "running: %d\n", (value > 0));
1656 seq_printf(m, "force_on: %d\n", dev->force_fan);
1661 static int fan_proc_open(struct inode *inode, struct file *file)
1663 return single_open(file, fan_proc_show, pde_data(inode));
1666 static ssize_t fan_proc_write(struct file *file, const char __user *buf,
1667 size_t count, loff_t *pos)
1669 struct toshiba_acpi_dev *dev = pde_data(file_inode(file));
1674 len = min(count, sizeof(cmd) - 1);
1675 if (copy_from_user(cmd, buf, len))
1679 if (sscanf(cmd, " force_on : %i", &value) != 1 &&
1680 value != 0 && value != 1)
1683 if (set_fan_status(dev, value))
1686 dev->force_fan = value;
1691 static const struct proc_ops fan_proc_ops = {
1692 .proc_open = fan_proc_open,
1693 .proc_read = seq_read,
1694 .proc_lseek = seq_lseek,
1695 .proc_release = single_release,
1696 .proc_write = fan_proc_write,
1700 static int get_fan_rpm(struct toshiba_acpi_dev *dev, u32 *rpm)
1702 u32 in[TCI_WORDS] = { HCI_GET, HCI_FAN_RPM, 0, 1, 0, 0 };
1704 acpi_status status = tci_raw(dev, in, out);
1706 if (ACPI_FAILURE(status)) {
1707 pr_err("ACPI call to get Fan speed failed\n");
1711 if (out[0] == TOS_NOT_SUPPORTED)
1714 if (out[0] == TOS_SUCCESS) {
1722 static int keys_proc_show(struct seq_file *m, void *v)
1724 struct toshiba_acpi_dev *dev = m->private;
1726 seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid);
1727 seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event);
1732 static int keys_proc_open(struct inode *inode, struct file *file)
1734 return single_open(file, keys_proc_show, pde_data(inode));
1737 static ssize_t keys_proc_write(struct file *file, const char __user *buf,
1738 size_t count, loff_t *pos)
1740 struct toshiba_acpi_dev *dev = pde_data(file_inode(file));
1745 len = min(count, sizeof(cmd) - 1);
1746 if (copy_from_user(cmd, buf, len))
1750 if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0)
1751 dev->key_event_valid = 0;
1758 static const struct proc_ops keys_proc_ops = {
1759 .proc_open = keys_proc_open,
1760 .proc_read = seq_read,
1761 .proc_lseek = seq_lseek,
1762 .proc_release = single_release,
1763 .proc_write = keys_proc_write,
1766 static int __maybe_unused version_proc_show(struct seq_file *m, void *v)
1768 seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION);
1769 seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION);
1774 * Proc and module init
1777 #define PROC_TOSHIBA "toshiba"
1779 static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
1781 if (dev->backlight_dev)
1782 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1783 &lcd_proc_ops, dev);
1784 if (dev->video_supported)
1785 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1786 &video_proc_ops, dev);
1787 if (dev->fan_supported)
1788 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1789 &fan_proc_ops, dev);
1790 if (dev->hotkey_dev)
1791 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1792 &keys_proc_ops, dev);
1793 proc_create_single_data("version", S_IRUGO, toshiba_proc_dir,
1794 version_proc_show, dev);
1797 static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
1799 if (dev->backlight_dev)
1800 remove_proc_entry("lcd", toshiba_proc_dir);
1801 if (dev->video_supported)
1802 remove_proc_entry("video", toshiba_proc_dir);
1803 if (dev->fan_supported)
1804 remove_proc_entry("fan", toshiba_proc_dir);
1805 if (dev->hotkey_dev)
1806 remove_proc_entry("keys", toshiba_proc_dir);
1807 remove_proc_entry("version", toshiba_proc_dir);
1810 static const struct backlight_ops toshiba_backlight_data = {
1811 .options = BL_CORE_SUSPENDRESUME,
1812 .get_brightness = get_lcd_brightness,
1813 .update_status = set_lcd_status,
1816 /* Keyboard backlight work */
1817 static void toshiba_acpi_kbd_bl_work(struct work_struct *work);
1819 static DECLARE_WORK(kbd_bl_work, toshiba_acpi_kbd_bl_work);
1824 static DEVICE_STRING_ATTR_RO(version, 0444, TOSHIBA_ACPI_VERSION);
1826 static ssize_t fan_store(struct device *dev,
1827 struct device_attribute *attr,
1828 const char *buf, size_t count)
1830 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1834 ret = kstrtoint(buf, 0, &state);
1838 if (state != 0 && state != 1)
1841 ret = set_fan_status(toshiba, state);
1848 static ssize_t fan_show(struct device *dev,
1849 struct device_attribute *attr, char *buf)
1851 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1855 ret = get_fan_status(toshiba, &value);
1859 return sprintf(buf, "%d\n", value);
1861 static DEVICE_ATTR_RW(fan);
1863 static ssize_t kbd_backlight_mode_store(struct device *dev,
1864 struct device_attribute *attr,
1865 const char *buf, size_t count)
1867 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1872 ret = kstrtoint(buf, 0, &mode);
1876 /* Check for supported modes depending on keyboard backlight type */
1877 if (toshiba->kbd_type == 1) {
1878 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1879 if (mode != SCI_KBD_MODE_FNZ && mode != SCI_KBD_MODE_AUTO)
1881 } else if (toshiba->kbd_type == 2) {
1882 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1883 if (mode != SCI_KBD_MODE_AUTO && mode != SCI_KBD_MODE_ON &&
1884 mode != SCI_KBD_MODE_OFF)
1889 * Set the Keyboard Backlight Mode where:
1890 * Auto - KBD backlight turns off automatically in given time
1891 * FN-Z - KBD backlight "toggles" when hotkey pressed
1892 * ON - KBD backlight is always on
1893 * OFF - KBD backlight is always off
1896 /* Only make a change if the actual mode has changed */
1897 if (toshiba->kbd_mode != mode) {
1898 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1899 int time = toshiba->kbd_time << HCI_MISC_SHIFT;
1901 /* OR the "base time" to the actual method format */
1902 if (toshiba->kbd_type == 1) {
1903 /* Type 1 requires the current mode */
1904 time |= toshiba->kbd_mode;
1905 } else if (toshiba->kbd_type == 2) {
1906 /* Type 2 requires the desired mode */
1910 ret = toshiba_kbd_illum_status_set(toshiba, time);
1914 toshiba->kbd_mode = mode;
1915 toshiba_acpi->kbd_mode = mode;
1918 * Some laptop models with the second generation backlit
1919 * keyboard (type 2) do not generate the keyboard backlight
1920 * changed event (0x92), and thus, the driver will never update
1921 * the sysfs entries.
1923 * The event is generated right when changing the keyboard
1924 * backlight mode and the *notify function will set the
1925 * kbd_event_generated to true.
1927 * In case the event is not generated, schedule the keyboard
1928 * backlight work to update the sysfs entries and emulate the
1929 * event via genetlink.
1931 if (toshiba->kbd_type == 2 &&
1932 !toshiba->kbd_event_generated)
1933 schedule_work(&kbd_bl_work);
1939 static ssize_t kbd_backlight_mode_show(struct device *dev,
1940 struct device_attribute *attr,
1943 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1946 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1949 return sprintf(buf, "%i\n", time & SCI_KBD_MODE_MASK);
1951 static DEVICE_ATTR_RW(kbd_backlight_mode);
1953 static ssize_t kbd_type_show(struct device *dev,
1954 struct device_attribute *attr, char *buf)
1956 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1958 return sprintf(buf, "%d\n", toshiba->kbd_type);
1960 static DEVICE_ATTR_RO(kbd_type);
1962 static ssize_t available_kbd_modes_show(struct device *dev,
1963 struct device_attribute *attr,
1966 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1968 if (toshiba->kbd_type == 1)
1969 return sprintf(buf, "0x%x 0x%x\n",
1970 SCI_KBD_MODE_FNZ, SCI_KBD_MODE_AUTO);
1972 return sprintf(buf, "0x%x 0x%x 0x%x\n",
1973 SCI_KBD_MODE_AUTO, SCI_KBD_MODE_ON, SCI_KBD_MODE_OFF);
1975 static DEVICE_ATTR_RO(available_kbd_modes);
1977 static ssize_t kbd_backlight_timeout_store(struct device *dev,
1978 struct device_attribute *attr,
1979 const char *buf, size_t count)
1981 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1985 ret = kstrtoint(buf, 0, &time);
1989 /* Check for supported values depending on kbd_type */
1990 if (toshiba->kbd_type == 1) {
1991 if (time < 0 || time > 60)
1993 } else if (toshiba->kbd_type == 2) {
1994 if (time < 1 || time > 60)
1998 /* Set the Keyboard Backlight Timeout */
2000 /* Only make a change if the actual timeout has changed */
2001 if (toshiba->kbd_time != time) {
2002 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
2003 time = time << HCI_MISC_SHIFT;
2004 /* OR the "base time" to the actual method format */
2005 if (toshiba->kbd_type == 1)
2006 time |= SCI_KBD_MODE_FNZ;
2007 else if (toshiba->kbd_type == 2)
2008 time |= SCI_KBD_MODE_AUTO;
2010 ret = toshiba_kbd_illum_status_set(toshiba, time);
2014 toshiba->kbd_time = time >> HCI_MISC_SHIFT;
2020 static ssize_t kbd_backlight_timeout_show(struct device *dev,
2021 struct device_attribute *attr,
2024 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2027 if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
2030 return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT);
2032 static DEVICE_ATTR_RW(kbd_backlight_timeout);
2034 static ssize_t touchpad_store(struct device *dev,
2035 struct device_attribute *attr,
2036 const char *buf, size_t count)
2038 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2042 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
2043 ret = kstrtoint(buf, 0, &state);
2046 if (state != 0 && state != 1)
2049 ret = toshiba_touchpad_set(toshiba, state);
2056 static ssize_t touchpad_show(struct device *dev,
2057 struct device_attribute *attr, char *buf)
2059 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2063 ret = toshiba_touchpad_get(toshiba, &state);
2067 return sprintf(buf, "%i\n", state);
2069 static DEVICE_ATTR_RW(touchpad);
2071 static ssize_t usb_sleep_charge_show(struct device *dev,
2072 struct device_attribute *attr, char *buf)
2074 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2078 ret = toshiba_usb_sleep_charge_get(toshiba, &mode);
2082 return sprintf(buf, "%x\n", mode & SCI_USB_CHARGE_MODE_MASK);
2085 static ssize_t usb_sleep_charge_store(struct device *dev,
2086 struct device_attribute *attr,
2087 const char *buf, size_t count)
2089 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2094 ret = kstrtoint(buf, 0, &state);
2098 * Check for supported values, where:
2100 * 1 - Alternate (Non USB conformant devices that require more power)
2101 * 2 - Auto (USB conformant devices)
2104 if (state != 0 && state != 1 && state != 2 && state != 3)
2107 /* Set the USB charging mode to internal value */
2108 mode = toshiba->usbsc_mode_base;
2110 mode |= SCI_USB_CHARGE_DISABLED;
2111 else if (state == 1)
2112 mode |= SCI_USB_CHARGE_ALTERNATE;
2113 else if (state == 2)
2114 mode |= SCI_USB_CHARGE_AUTO;
2115 else if (state == 3)
2116 mode |= SCI_USB_CHARGE_TYPICAL;
2118 ret = toshiba_usb_sleep_charge_set(toshiba, mode);
2124 static DEVICE_ATTR_RW(usb_sleep_charge);
2126 static ssize_t sleep_functions_on_battery_show(struct device *dev,
2127 struct device_attribute *attr,
2130 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2131 int bat_lvl, status;
2136 ret = toshiba_sleep_functions_status_get(toshiba, &state);
2140 /* Determine the status: 0x4 - Enabled | 0x1 - Disabled */
2141 tmp = state & SCI_USB_CHARGE_BAT_MASK;
2142 status = (tmp == 0x4) ? 1 : 0;
2143 /* Determine the battery level set */
2144 bat_lvl = state >> HCI_MISC_SHIFT;
2146 return sprintf(buf, "%d %d\n", status, bat_lvl);
2149 static ssize_t sleep_functions_on_battery_store(struct device *dev,
2150 struct device_attribute *attr,
2151 const char *buf, size_t count)
2153 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2159 ret = kstrtoint(buf, 0, &value);
2164 * Set the status of the function:
2168 if (value < 0 || value > 100)
2172 tmp = toshiba->usbsc_bat_level << HCI_MISC_SHIFT;
2173 status = tmp | SCI_USB_CHARGE_BAT_LVL_OFF;
2175 tmp = value << HCI_MISC_SHIFT;
2176 status = tmp | SCI_USB_CHARGE_BAT_LVL_ON;
2178 ret = toshiba_sleep_functions_status_set(toshiba, status);
2182 toshiba->usbsc_bat_level = status >> HCI_MISC_SHIFT;
2186 static DEVICE_ATTR_RW(sleep_functions_on_battery);
2188 static ssize_t usb_rapid_charge_show(struct device *dev,
2189 struct device_attribute *attr, char *buf)
2191 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2195 ret = toshiba_usb_rapid_charge_get(toshiba, &state);
2199 return sprintf(buf, "%d\n", state);
2202 static ssize_t usb_rapid_charge_store(struct device *dev,
2203 struct device_attribute *attr,
2204 const char *buf, size_t count)
2206 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2210 ret = kstrtoint(buf, 0, &state);
2213 if (state != 0 && state != 1)
2216 ret = toshiba_usb_rapid_charge_set(toshiba, state);
2222 static DEVICE_ATTR_RW(usb_rapid_charge);
2224 static ssize_t usb_sleep_music_show(struct device *dev,
2225 struct device_attribute *attr, char *buf)
2227 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2231 ret = toshiba_usb_sleep_music_get(toshiba, &state);
2235 return sprintf(buf, "%d\n", state);
2238 static ssize_t usb_sleep_music_store(struct device *dev,
2239 struct device_attribute *attr,
2240 const char *buf, size_t count)
2242 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2246 ret = kstrtoint(buf, 0, &state);
2249 if (state != 0 && state != 1)
2252 ret = toshiba_usb_sleep_music_set(toshiba, state);
2258 static DEVICE_ATTR_RW(usb_sleep_music);
2260 static ssize_t kbd_function_keys_show(struct device *dev,
2261 struct device_attribute *attr, char *buf)
2263 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2267 ret = toshiba_function_keys_get(toshiba, &mode);
2271 return sprintf(buf, "%d\n", mode);
2274 static ssize_t kbd_function_keys_store(struct device *dev,
2275 struct device_attribute *attr,
2276 const char *buf, size_t count)
2278 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2282 ret = kstrtoint(buf, 0, &mode);
2286 * Check for the function keys mode where:
2287 * 0 - Normal operation (F{1-12} as usual and hotkeys via FN-F{1-12})
2288 * 1 - Special functions (Opposite of the above setting)
2290 if (mode != 0 && mode != 1)
2293 ret = toshiba_function_keys_set(toshiba, mode);
2297 pr_info("Reboot for changes to KBD Function Keys to take effect");
2301 static DEVICE_ATTR_RW(kbd_function_keys);
2303 static ssize_t panel_power_on_show(struct device *dev,
2304 struct device_attribute *attr, char *buf)
2306 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2310 ret = toshiba_panel_power_on_get(toshiba, &state);
2314 return sprintf(buf, "%d\n", state);
2317 static ssize_t panel_power_on_store(struct device *dev,
2318 struct device_attribute *attr,
2319 const char *buf, size_t count)
2321 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2325 ret = kstrtoint(buf, 0, &state);
2328 if (state != 0 && state != 1)
2331 ret = toshiba_panel_power_on_set(toshiba, state);
2335 pr_info("Reboot for changes to Panel Power ON to take effect");
2339 static DEVICE_ATTR_RW(panel_power_on);
2341 static ssize_t usb_three_show(struct device *dev,
2342 struct device_attribute *attr, char *buf)
2344 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2348 ret = toshiba_usb_three_get(toshiba, &state);
2352 return sprintf(buf, "%d\n", state);
2355 static ssize_t usb_three_store(struct device *dev,
2356 struct device_attribute *attr,
2357 const char *buf, size_t count)
2359 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2363 ret = kstrtoint(buf, 0, &state);
2367 * Check for USB 3 mode where:
2368 * 0 - Disabled (Acts like a USB 2 port, saving power)
2371 if (state != 0 && state != 1)
2374 ret = toshiba_usb_three_set(toshiba, state);
2378 pr_info("Reboot for changes to USB 3 to take effect");
2382 static DEVICE_ATTR_RW(usb_three);
2384 static ssize_t cooling_method_show(struct device *dev,
2385 struct device_attribute *attr, char *buf)
2387 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2391 ret = toshiba_cooling_method_get(toshiba, &state);
2395 return sprintf(buf, "%d %d\n", state, toshiba->max_cooling_method);
2398 static ssize_t cooling_method_store(struct device *dev,
2399 struct device_attribute *attr,
2400 const char *buf, size_t count)
2402 struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2406 ret = kstrtoint(buf, 0, &state);
2411 * Check for supported values
2412 * Depending on the laptop model, some only support these two:
2413 * 0 - Maximum Performance
2414 * 1 - Battery Optimized
2416 * While some others support all three methods:
2417 * 0 - Maximum Performance
2419 * 2 - Battery Optimized
2421 if (state < 0 || state > toshiba->max_cooling_method)
2424 ret = toshiba_cooling_method_set(toshiba, state);
2430 static DEVICE_ATTR_RW(cooling_method);
2432 static struct attribute *toshiba_attributes[] = {
2433 &dev_attr_version.attr.attr,
2435 &dev_attr_kbd_backlight_mode.attr,
2436 &dev_attr_kbd_type.attr,
2437 &dev_attr_available_kbd_modes.attr,
2438 &dev_attr_kbd_backlight_timeout.attr,
2439 &dev_attr_touchpad.attr,
2440 &dev_attr_usb_sleep_charge.attr,
2441 &dev_attr_sleep_functions_on_battery.attr,
2442 &dev_attr_usb_rapid_charge.attr,
2443 &dev_attr_usb_sleep_music.attr,
2444 &dev_attr_kbd_function_keys.attr,
2445 &dev_attr_panel_power_on.attr,
2446 &dev_attr_usb_three.attr,
2447 &dev_attr_cooling_method.attr,
2451 static umode_t toshiba_sysfs_is_visible(struct kobject *kobj,
2452 struct attribute *attr, int idx)
2454 struct device *dev = kobj_to_dev(kobj);
2455 struct toshiba_acpi_dev *drv = dev_get_drvdata(dev);
2458 if (attr == &dev_attr_fan.attr)
2459 exists = (drv->fan_supported) ? true : false;
2460 else if (attr == &dev_attr_kbd_backlight_mode.attr)
2461 exists = (drv->kbd_illum_supported) ? true : false;
2462 else if (attr == &dev_attr_kbd_backlight_timeout.attr)
2463 exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false;
2464 else if (attr == &dev_attr_touchpad.attr)
2465 exists = (drv->touchpad_supported) ? true : false;
2466 else if (attr == &dev_attr_usb_sleep_charge.attr)
2467 exists = (drv->usb_sleep_charge_supported) ? true : false;
2468 else if (attr == &dev_attr_sleep_functions_on_battery.attr)
2469 exists = (drv->usb_sleep_charge_supported) ? true : false;
2470 else if (attr == &dev_attr_usb_rapid_charge.attr)
2471 exists = (drv->usb_rapid_charge_supported) ? true : false;
2472 else if (attr == &dev_attr_usb_sleep_music.attr)
2473 exists = (drv->usb_sleep_music_supported) ? true : false;
2474 else if (attr == &dev_attr_kbd_function_keys.attr)
2475 exists = (drv->kbd_function_keys_supported) ? true : false;
2476 else if (attr == &dev_attr_panel_power_on.attr)
2477 exists = (drv->panel_power_on_supported) ? true : false;
2478 else if (attr == &dev_attr_usb_three.attr)
2479 exists = (drv->usb_three_supported) ? true : false;
2480 else if (attr == &dev_attr_cooling_method.attr)
2481 exists = (drv->cooling_method_supported) ? true : false;
2483 return exists ? attr->mode : 0;
2486 static const struct attribute_group toshiba_attr_group = {
2487 .is_visible = toshiba_sysfs_is_visible,
2488 .attrs = toshiba_attributes,
2491 static void toshiba_acpi_kbd_bl_work(struct work_struct *work)
2493 /* Update the sysfs entries */
2494 if (sysfs_update_group(&toshiba_acpi->acpi_dev->dev.kobj,
2495 &toshiba_attr_group))
2496 pr_err("Unable to update sysfs entries\n");
2498 /* Notify LED subsystem about keyboard backlight change */
2499 if (toshiba_acpi->kbd_type == 2 &&
2500 toshiba_acpi->kbd_mode != SCI_KBD_MODE_AUTO)
2501 led_classdev_notify_brightness_hw_changed(&toshiba_acpi->kbd_led,
2502 (toshiba_acpi->kbd_mode == SCI_KBD_MODE_ON) ?
2503 LED_FULL : LED_OFF);
2505 /* Emulate the keyboard backlight event */
2506 acpi_bus_generate_netlink_event(toshiba_acpi->acpi_dev->pnp.device_class,
2507 dev_name(&toshiba_acpi->acpi_dev->dev),
2515 enum toshiba_iio_accel_chan {
2521 static int toshiba_iio_accel_get_axis(enum toshiba_iio_accel_chan chan)
2526 ret = toshiba_accelerometer_get(toshiba_acpi, &xyval, &zval);
2532 return xyval & HCI_ACCEL_DIRECTION_MASK ?
2533 -(xyval & HCI_ACCEL_MASK) : xyval & HCI_ACCEL_MASK;
2535 return (xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_DIRECTION_MASK ?
2536 -((xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_MASK) :
2537 (xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_MASK;
2539 return zval & HCI_ACCEL_DIRECTION_MASK ?
2540 -(zval & HCI_ACCEL_MASK) : zval & HCI_ACCEL_MASK;
2546 static int toshiba_iio_accel_read_raw(struct iio_dev *indio_dev,
2547 struct iio_chan_spec const *chan,
2548 int *val, int *val2, long mask)
2553 case IIO_CHAN_INFO_RAW:
2554 ret = toshiba_iio_accel_get_axis(chan->channel);
2555 if (ret == -EIO || ret == -ENODEV)
2566 #define TOSHIBA_IIO_ACCEL_CHANNEL(axis, chan) { \
2567 .type = IIO_ACCEL, \
2570 .channel2 = IIO_MOD_##axis, \
2572 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
2575 static const struct iio_chan_spec toshiba_iio_accel_channels[] = {
2576 TOSHIBA_IIO_ACCEL_CHANNEL(X, AXIS_X),
2577 TOSHIBA_IIO_ACCEL_CHANNEL(Y, AXIS_Y),
2578 TOSHIBA_IIO_ACCEL_CHANNEL(Z, AXIS_Z),
2581 static const struct iio_info toshiba_iio_accel_info = {
2582 .read_raw = &toshiba_iio_accel_read_raw,
2588 static int toshiba_acpi_smm_bridge(SMMRegisters *regs)
2590 u32 in[TCI_WORDS] = { regs->eax, regs->ebx, regs->ecx,
2591 regs->edx, regs->esi, regs->edi };
2595 status = tci_raw(toshiba_acpi, in, out);
2596 if (ACPI_FAILURE(status)) {
2597 pr_err("ACPI call to query SMM registers failed\n");
2601 /* Fillout the SMM struct with the TCI call results */
2612 static long toshiba_acpi_ioctl(struct file *fp, unsigned int cmd,
2615 SMMRegisters __user *argp = (SMMRegisters __user *)arg;
2624 if (copy_from_user(®s, argp, sizeof(SMMRegisters)))
2626 ret = toshiba_acpi_smm_bridge(®s);
2629 if (copy_to_user(argp, ®s, sizeof(SMMRegisters)))
2632 case TOSHIBA_ACPI_SCI:
2633 if (copy_from_user(®s, argp, sizeof(SMMRegisters)))
2635 /* Ensure we are being called with a SCI_{GET, SET} register */
2636 if (regs.eax != SCI_GET && regs.eax != SCI_SET)
2638 if (!sci_open(toshiba_acpi))
2640 ret = toshiba_acpi_smm_bridge(®s);
2641 sci_close(toshiba_acpi);
2644 if (copy_to_user(argp, ®s, sizeof(SMMRegisters)))
2654 static const struct file_operations toshiba_acpi_fops = {
2655 .owner = THIS_MODULE,
2656 .unlocked_ioctl = toshiba_acpi_ioctl,
2657 .llseek = noop_llseek,
2661 * WWAN RFKill handlers
2663 static int toshiba_acpi_wwan_set_block(void *data, bool blocked)
2665 struct toshiba_acpi_dev *dev = data;
2668 ret = toshiba_wireless_status(dev);
2672 if (!dev->killswitch)
2675 return toshiba_wwan_set(dev, !blocked);
2678 static void toshiba_acpi_wwan_poll(struct rfkill *rfkill, void *data)
2680 struct toshiba_acpi_dev *dev = data;
2682 if (toshiba_wireless_status(dev))
2685 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2688 static const struct rfkill_ops wwan_rfk_ops = {
2689 .set_block = toshiba_acpi_wwan_set_block,
2690 .poll = toshiba_acpi_wwan_poll,
2693 static int toshiba_acpi_setup_wwan_rfkill(struct toshiba_acpi_dev *dev)
2695 int ret = toshiba_wireless_status(dev);
2700 dev->wwan_rfk = rfkill_alloc("Toshiba WWAN",
2701 &dev->acpi_dev->dev,
2705 if (!dev->wwan_rfk) {
2706 pr_err("Unable to allocate WWAN rfkill device\n");
2710 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2712 ret = rfkill_register(dev->wwan_rfk);
2714 pr_err("Unable to register WWAN rfkill device\n");
2715 rfkill_destroy(dev->wwan_rfk);
2724 static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev *dev)
2729 status = acpi_evaluate_object(dev->acpi_dev->handle,
2730 "ENAB", NULL, NULL);
2731 if (ACPI_FAILURE(status))
2735 * Enable quickstart buttons if supported.
2737 * Enable the "Special Functions" mode only if they are
2738 * supported and if they are activated.
2740 if (hci_hotkey_quickstart)
2741 result = hci_write(dev, HCI_HOTKEY_EVENT,
2742 HCI_HOTKEY_ENABLE_QUICKSTART);
2743 else if (dev->kbd_function_keys_supported && dev->special_functions)
2744 result = hci_write(dev, HCI_HOTKEY_EVENT,
2745 HCI_HOTKEY_SPECIAL_FUNCTIONS);
2747 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE);
2749 if (result == TOS_FAILURE)
2751 else if (result == TOS_NOT_SUPPORTED)
2757 static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
2760 if (str & I8042_STR_AUXDATA)
2763 if (unlikely(data == 0xe0))
2766 if ((data & 0x7f) == TOS1900_FN_SCAN) {
2767 schedule_work(&toshiba_acpi->hotkey_work);
2774 static void toshiba_acpi_hotkey_work(struct work_struct *work)
2776 acpi_handle ec_handle = ec_get_handle();
2782 status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
2783 if (ACPI_FAILURE(status))
2784 pr_err("ACPI NTFY method execution failed\n");
2788 * Returns hotkey scancode, or < 0 on failure.
2790 static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
2792 unsigned long long value;
2795 status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
2797 if (ACPI_FAILURE(status)) {
2798 pr_err("ACPI INFO method execution failed\n");
2805 static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
2808 if (scancode == 0x100)
2811 /* Act on key press; ignore key release */
2812 if (scancode & 0x80)
2815 if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
2816 pr_info("Unknown key %x\n", scancode);
2819 static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev *dev)
2821 if (dev->info_supported) {
2822 int scancode = toshiba_acpi_query_hotkey(dev);
2825 pr_err("Failed to query hotkey event\n");
2826 } else if (scancode != 0) {
2827 toshiba_acpi_report_hotkey(dev, scancode);
2828 dev->key_event_valid = 1;
2829 dev->last_key_event = scancode;
2831 } else if (dev->system_event_supported) {
2837 result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
2840 toshiba_acpi_report_hotkey(dev, (int)value);
2841 dev->key_event_valid = 1;
2842 dev->last_key_event = value;
2844 case TOS_NOT_SUPPORTED:
2846 * This is a workaround for an unresolved
2847 * issue on some machines where system events
2848 * sporadically become disabled.
2850 result = hci_write(dev, HCI_SYSTEM_EVENT, 1);
2851 if (result == TOS_SUCCESS)
2852 pr_notice("Re-enabled hotkeys\n");
2858 } while (retries && result != TOS_FIFO_EMPTY);
2862 static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
2864 const struct key_entry *keymap = toshiba_acpi_keymap;
2865 acpi_handle ec_handle;
2868 if (disable_hotkeys) {
2869 pr_info("Hotkeys disabled by module parameter\n");
2873 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) {
2874 pr_info("WMI event detected, hotkeys will not be monitored\n");
2878 error = toshiba_acpi_enable_hotkeys(dev);
2882 if (toshiba_hotkey_event_type_get(dev, &dev->hotkey_event_type))
2883 pr_notice("Unable to query Hotkey Event Type\n");
2885 dev->hotkey_dev = input_allocate_device();
2886 if (!dev->hotkey_dev)
2889 dev->hotkey_dev->name = "Toshiba input device";
2890 dev->hotkey_dev->phys = "toshiba_acpi/input0";
2891 dev->hotkey_dev->id.bustype = BUS_HOST;
2892 dev->hotkey_dev->dev.parent = &dev->acpi_dev->dev;
2894 if (dev->hotkey_event_type == HCI_SYSTEM_TYPE1 ||
2895 !dev->kbd_function_keys_supported)
2896 keymap = toshiba_acpi_keymap;
2897 else if (dev->hotkey_event_type == HCI_SYSTEM_TYPE2 ||
2898 dev->kbd_function_keys_supported)
2899 keymap = toshiba_acpi_alt_keymap;
2901 pr_info("Unknown event type received %x\n",
2902 dev->hotkey_event_type);
2903 error = sparse_keymap_setup(dev->hotkey_dev, keymap, NULL);
2908 * For some machines the SCI responsible for providing hotkey
2909 * notification doesn't fire. We can trigger the notification
2910 * whenever the Fn key is pressed using the NTFY method, if
2911 * supported, so if it's present set up an i8042 key filter
2914 ec_handle = ec_get_handle();
2915 if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
2916 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
2918 error = i8042_install_filter(toshiba_acpi_i8042_filter);
2920 pr_err("Error installing key filter\n");
2924 dev->ntfy_supported = 1;
2928 * Determine hotkey query interface. Prefer using the INFO
2929 * method when it is available.
2931 if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
2932 dev->info_supported = 1;
2933 else if (hci_write(dev, HCI_SYSTEM_EVENT, 1) == TOS_SUCCESS)
2934 dev->system_event_supported = 1;
2936 if (!dev->info_supported && !dev->system_event_supported) {
2937 pr_warn("No hotkey query interface found\n");
2939 goto err_remove_filter;
2942 error = input_register_device(dev->hotkey_dev);
2944 pr_info("Unable to register input device\n");
2945 goto err_remove_filter;
2951 if (dev->ntfy_supported)
2952 i8042_remove_filter(toshiba_acpi_i8042_filter);
2954 input_free_device(dev->hotkey_dev);
2955 dev->hotkey_dev = NULL;
2959 static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
2961 struct backlight_properties props;
2966 * Some machines don't support the backlight methods at all, and
2967 * others support it read-only. Either of these is pretty useless,
2968 * so only register the backlight device if the backlight method
2969 * supports both reads and writes.
2971 brightness = __get_lcd_brightness(dev);
2975 * If transflective backlight is supported and the brightness is zero
2976 * (lowest brightness level), the set_lcd_brightness function will
2977 * activate the transflective backlight, making the LCD appear to be
2978 * turned off, simply increment the brightness level to avoid that.
2980 if (dev->tr_backlight_supported && brightness == 0)
2982 ret = set_lcd_brightness(dev, brightness);
2984 pr_debug("Backlight method is read-only, disabling backlight support\n");
2988 if (acpi_video_get_backlight_type() != acpi_backlight_vendor)
2991 memset(&props, 0, sizeof(props));
2992 props.type = BACKLIGHT_PLATFORM;
2993 props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
2995 /* Adding an extra level and having 0 change to transflective mode */
2996 if (dev->tr_backlight_supported)
2997 props.max_brightness++;
2999 dev->backlight_dev = backlight_device_register("toshiba",
3000 &dev->acpi_dev->dev,
3002 &toshiba_backlight_data,
3004 if (IS_ERR(dev->backlight_dev)) {
3005 ret = PTR_ERR(dev->backlight_dev);
3006 pr_err("Could not register toshiba backlight device\n");
3007 dev->backlight_dev = NULL;
3011 dev->backlight_dev->props.brightness = brightness;
3015 /* HWMON support for fan */
3016 #if IS_ENABLED(CONFIG_HWMON)
3017 static umode_t toshiba_acpi_hwmon_is_visible(const void *drvdata,
3018 enum hwmon_sensor_types type,
3019 u32 attr, int channel)
3024 static int toshiba_acpi_hwmon_read(struct device *dev, enum hwmon_sensor_types type,
3025 u32 attr, int channel, long *val)
3028 * There is only a single channel and single attribute (for the
3029 * fan) at this point.
3030 * This can be replaced with more advanced logic in the future,
3031 * should the need arise.
3033 if (type == hwmon_fan && channel == 0 && attr == hwmon_fan_input) {
3037 ret = get_fan_rpm(toshiba_acpi, &value);
3047 static const struct hwmon_channel_info * const toshiba_acpi_hwmon_info[] = {
3048 HWMON_CHANNEL_INFO(fan, HWMON_F_INPUT),
3052 static const struct hwmon_ops toshiba_acpi_hwmon_ops = {
3053 .is_visible = toshiba_acpi_hwmon_is_visible,
3054 .read = toshiba_acpi_hwmon_read,
3057 static const struct hwmon_chip_info toshiba_acpi_hwmon_chip_info = {
3058 .ops = &toshiba_acpi_hwmon_ops,
3059 .info = toshiba_acpi_hwmon_info,
3063 /* ACPI battery hooking */
3064 static ssize_t charge_control_end_threshold_show(struct device *device,
3065 struct device_attribute *attr,
3071 if (toshiba_acpi == NULL) {
3072 pr_err("Toshiba ACPI object invalid\n");
3076 status = toshiba_battery_charge_mode_get(toshiba_acpi, &state);
3082 return sprintf(buf, "80\n");
3084 return sprintf(buf, "100\n");
3087 static ssize_t charge_control_end_threshold_store(struct device *dev,
3088 struct device_attribute *attr,
3095 if (toshiba_acpi == NULL) {
3096 pr_err("Toshiba ACPI object invalid\n");
3100 rval = kstrtou32(buf, 10, &value);
3104 if (value < 1 || value > 100)
3106 rval = toshiba_battery_charge_mode_set(toshiba_acpi,
3107 (value < 90) ? 1 : 0);
3114 static DEVICE_ATTR_RW(charge_control_end_threshold);
3116 static struct attribute *toshiba_acpi_battery_attrs[] = {
3117 &dev_attr_charge_control_end_threshold.attr,
3121 ATTRIBUTE_GROUPS(toshiba_acpi_battery);
3123 static int toshiba_acpi_battery_add(struct power_supply *battery, struct acpi_battery_hook *hook)
3125 if (toshiba_acpi == NULL) {
3126 pr_err("Init order issue\n");
3129 if (!toshiba_acpi->battery_charge_mode_supported)
3131 if (device_add_groups(&battery->dev, toshiba_acpi_battery_groups))
3136 static int toshiba_acpi_battery_remove(struct power_supply *battery, struct acpi_battery_hook *hook)
3138 device_remove_groups(&battery->dev, toshiba_acpi_battery_groups);
3142 static struct acpi_battery_hook battery_hook = {
3143 .add_battery = toshiba_acpi_battery_add,
3144 .remove_battery = toshiba_acpi_battery_remove,
3145 .name = "Toshiba Battery Extension",
3148 static void print_supported_features(struct toshiba_acpi_dev *dev)
3150 pr_info("Supported laptop features:");
3152 if (dev->hotkey_dev)
3153 pr_cont(" hotkeys");
3154 if (dev->backlight_dev)
3155 pr_cont(" backlight");
3156 if (dev->video_supported)
3157 pr_cont(" video-out");
3158 if (dev->fan_supported)
3160 if (dev->fan_rpm_supported)
3161 pr_cont(" fan-rpm");
3162 if (dev->tr_backlight_supported)
3163 pr_cont(" transflective-backlight");
3164 if (dev->illumination_supported)
3165 pr_cont(" illumination");
3166 if (dev->kbd_illum_supported)
3167 pr_cont(" keyboard-backlight");
3168 if (dev->touchpad_supported)
3169 pr_cont(" touchpad");
3170 if (dev->eco_supported)
3171 pr_cont(" eco-led");
3172 if (dev->accelerometer_supported)
3173 pr_cont(" accelerometer-axes");
3174 if (dev->usb_sleep_charge_supported)
3175 pr_cont(" usb-sleep-charge");
3176 if (dev->usb_rapid_charge_supported)
3177 pr_cont(" usb-rapid-charge");
3178 if (dev->usb_sleep_music_supported)
3179 pr_cont(" usb-sleep-music");
3180 if (dev->kbd_function_keys_supported)
3181 pr_cont(" special-function-keys");
3182 if (dev->panel_power_on_supported)
3183 pr_cont(" panel-power-on");
3184 if (dev->usb_three_supported)
3186 if (dev->wwan_supported)
3188 if (dev->cooling_method_supported)
3189 pr_cont(" cooling-method");
3190 if (dev->battery_charge_mode_supported)
3191 pr_cont(" battery-charge-mode");
3196 static void toshiba_acpi_remove(struct acpi_device *acpi_dev)
3198 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
3200 misc_deregister(&dev->miscdev);
3202 remove_toshiba_proc_entries(dev);
3204 #if IS_ENABLED(CONFIG_HWMON)
3205 if (dev->hwmon_device)
3206 hwmon_device_unregister(dev->hwmon_device);
3209 if (dev->accelerometer_supported && dev->indio_dev) {
3210 iio_device_unregister(dev->indio_dev);
3211 iio_device_free(dev->indio_dev);
3214 if (dev->sysfs_created)
3215 sysfs_remove_group(&dev->acpi_dev->dev.kobj,
3216 &toshiba_attr_group);
3218 if (dev->ntfy_supported) {
3219 i8042_remove_filter(toshiba_acpi_i8042_filter);
3220 cancel_work_sync(&dev->hotkey_work);
3223 if (dev->hotkey_dev)
3224 input_unregister_device(dev->hotkey_dev);
3226 backlight_device_unregister(dev->backlight_dev);
3228 led_classdev_unregister(&dev->led_dev);
3229 led_classdev_unregister(&dev->kbd_led);
3230 led_classdev_unregister(&dev->eco_led);
3232 if (dev->wwan_rfk) {
3233 rfkill_unregister(dev->wwan_rfk);
3234 rfkill_destroy(dev->wwan_rfk);
3237 if (dev->battery_charge_mode_supported)
3238 battery_hook_unregister(&battery_hook);
3241 toshiba_acpi = NULL;
3246 static const char *find_hci_method(acpi_handle handle)
3248 if (acpi_has_method(handle, "GHCI"))
3251 if (acpi_has_method(handle, "SPFC"))
3258 * Some Toshibas have a broken acpi-video interface for brightness control,
3259 * these are quirked in drivers/acpi/video_detect.c to use the GPU native
3260 * (/sys/class/backlight/intel_backlight) instead.
3261 * But these need a HCI_SET call to actually turn the panel back on at resume,
3262 * without this call the screen stays black at resume.
3263 * Either HCI_LCD_BRIGHTNESS (used by acpi_video's _BCM) or HCI_PANEL_POWER_ON
3264 * works. toshiba_acpi_resume() uses HCI_PANEL_POWER_ON to avoid changing
3265 * the configured brightness level.
3267 #define QUIRK_TURN_ON_PANEL_ON_RESUME BIT(0)
3269 * Some Toshibas use "quickstart" keys. On these, HCI_HOTKEY_EVENT must use
3270 * the value HCI_HOTKEY_ENABLE_QUICKSTART.
3272 #define QUIRK_HCI_HOTKEY_QUICKSTART BIT(1)
3274 static const struct dmi_system_id toshiba_dmi_quirks[] __initconst = {
3276 /* Toshiba Portégé R700 */
3277 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
3279 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
3280 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
3282 .driver_data = (void *)QUIRK_TURN_ON_PANEL_ON_RESUME,
3285 /* Toshiba Satellite/Portégé R830 */
3286 /* Portégé: https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
3287 /* Satellite: https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
3289 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
3290 DMI_MATCH(DMI_PRODUCT_NAME, "R830"),
3292 .driver_data = (void *)QUIRK_TURN_ON_PANEL_ON_RESUME,
3295 /* Toshiba Satellite/Portégé Z830 */
3297 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
3298 DMI_MATCH(DMI_PRODUCT_NAME, "Z830"),
3300 .driver_data = (void *)(QUIRK_TURN_ON_PANEL_ON_RESUME | QUIRK_HCI_HOTKEY_QUICKSTART),
3305 static int toshiba_acpi_add(struct acpi_device *acpi_dev)
3307 struct toshiba_acpi_dev *dev;
3308 const char *hci_method;
3315 pr_info("Toshiba Laptop ACPI Extras version %s\n",
3316 TOSHIBA_ACPI_VERSION);
3318 hci_method = find_hci_method(acpi_dev->handle);
3320 pr_err("HCI interface not found\n");
3324 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3327 dev->acpi_dev = acpi_dev;
3328 dev->method_hci = hci_method;
3329 dev->miscdev.minor = MISC_DYNAMIC_MINOR;
3330 dev->miscdev.name = "toshiba_acpi";
3331 dev->miscdev.fops = &toshiba_acpi_fops;
3333 ret = misc_register(&dev->miscdev);
3335 pr_err("Failed to register miscdevice\n");
3340 acpi_dev->driver_data = dev;
3341 dev_set_drvdata(&acpi_dev->dev, dev);
3343 /* Query the BIOS for supported features */
3346 * The "Special Functions" are always supported by the laptops
3347 * with the new keyboard layout, query for its presence to help
3348 * determine the keymap layout to use.
3350 ret = toshiba_function_keys_get(dev, &dev->special_functions);
3351 dev->kbd_function_keys_supported = !ret;
3353 dev->hotkey_event_type = 0;
3354 if (toshiba_acpi_setup_keyboard(dev))
3355 pr_info("Unable to activate hotkeys\n");
3357 /* Determine whether or not BIOS supports transflective backlight */
3358 ret = get_tr_backlight_status(dev, &dummy);
3359 dev->tr_backlight_supported = !ret;
3361 ret = toshiba_acpi_setup_backlight(dev);
3365 toshiba_illumination_available(dev);
3366 if (dev->illumination_supported) {
3367 dev->led_dev.name = "toshiba::illumination";
3368 dev->led_dev.max_brightness = 1;
3369 dev->led_dev.brightness_set = toshiba_illumination_set;
3370 dev->led_dev.brightness_get = toshiba_illumination_get;
3371 led_classdev_register(&acpi_dev->dev, &dev->led_dev);
3374 toshiba_eco_mode_available(dev);
3375 if (dev->eco_supported) {
3376 dev->eco_led.name = "toshiba::eco_mode";
3377 dev->eco_led.max_brightness = 1;
3378 dev->eco_led.brightness_set = toshiba_eco_mode_set_status;
3379 dev->eco_led.brightness_get = toshiba_eco_mode_get_status;
3380 led_classdev_register(&dev->acpi_dev->dev, &dev->eco_led);
3383 toshiba_kbd_illum_available(dev);
3385 * Only register the LED if KBD illumination is supported
3386 * and the keyboard backlight operation mode is set to FN-Z
3387 * or we detect a second gen keyboard backlight
3389 if (dev->kbd_illum_supported &&
3390 (dev->kbd_mode == SCI_KBD_MODE_FNZ || dev->kbd_type == 2)) {
3391 dev->kbd_led.name = "toshiba::kbd_backlight";
3392 dev->kbd_led.flags = LED_BRIGHT_HW_CHANGED;
3393 dev->kbd_led.max_brightness = 1;
3394 dev->kbd_led.brightness_set = toshiba_kbd_backlight_set;
3395 dev->kbd_led.brightness_get = toshiba_kbd_backlight_get;
3396 led_classdev_register(&dev->acpi_dev->dev, &dev->kbd_led);
3399 ret = toshiba_touchpad_get(dev, &dummy);
3400 dev->touchpad_supported = !ret;
3402 toshiba_accelerometer_available(dev);
3403 if (dev->accelerometer_supported) {
3404 dev->indio_dev = iio_device_alloc(&acpi_dev->dev, sizeof(*dev));
3405 if (!dev->indio_dev) {
3406 pr_err("Unable to allocate iio device\n");
3410 pr_info("Registering Toshiba accelerometer iio device\n");
3412 dev->indio_dev->info = &toshiba_iio_accel_info;
3413 dev->indio_dev->name = "Toshiba accelerometer";
3414 dev->indio_dev->modes = INDIO_DIRECT_MODE;
3415 dev->indio_dev->channels = toshiba_iio_accel_channels;
3416 dev->indio_dev->num_channels =
3417 ARRAY_SIZE(toshiba_iio_accel_channels);
3419 ret = iio_device_register(dev->indio_dev);
3421 pr_err("Unable to register iio device\n");
3422 iio_device_free(dev->indio_dev);
3427 toshiba_usb_sleep_charge_available(dev);
3429 ret = toshiba_usb_rapid_charge_get(dev, &dummy);
3430 dev->usb_rapid_charge_supported = !ret;
3432 ret = toshiba_usb_sleep_music_get(dev, &dummy);
3433 dev->usb_sleep_music_supported = !ret;
3435 ret = toshiba_panel_power_on_get(dev, &dummy);
3436 dev->panel_power_on_supported = !ret;
3438 ret = toshiba_usb_three_get(dev, &dummy);
3439 dev->usb_three_supported = !ret;
3441 ret = get_video_status(dev, &dummy);
3442 dev->video_supported = !ret;
3444 ret = get_fan_status(dev, &dummy);
3445 dev->fan_supported = !ret;
3447 ret = get_fan_rpm(dev, &dummy);
3448 dev->fan_rpm_supported = !ret;
3450 #if IS_ENABLED(CONFIG_HWMON)
3451 if (dev->fan_rpm_supported) {
3452 dev->hwmon_device = hwmon_device_register_with_info(
3453 &dev->acpi_dev->dev, "toshiba_acpi_sensors", NULL,
3454 &toshiba_acpi_hwmon_chip_info, NULL);
3455 if (IS_ERR(dev->hwmon_device)) {
3456 dev->hwmon_device = NULL;
3457 pr_warn("unable to register hwmon device, skipping\n");
3462 toshiba_wwan_available(dev);
3463 if (dev->wwan_supported)
3464 toshiba_acpi_setup_wwan_rfkill(dev);
3466 toshiba_cooling_method_available(dev);
3468 toshiba_battery_charge_mode_available(dev);
3470 print_supported_features(dev);
3472 ret = sysfs_create_group(&dev->acpi_dev->dev.kobj,
3473 &toshiba_attr_group);
3475 dev->sysfs_created = 0;
3478 dev->sysfs_created = !ret;
3480 create_toshiba_proc_entries(dev);
3485 * As the battery hook relies on the static variable toshiba_acpi being
3486 * set, this must be done after toshiba_acpi is assigned.
3488 if (dev->battery_charge_mode_supported)
3489 battery_hook_register(&battery_hook);
3494 toshiba_acpi_remove(acpi_dev);
3498 static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
3500 struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
3503 case 0x80: /* Hotkeys and some system events */
3505 * Machines with this WMI GUID aren't supported due to bugs in
3508 * Return silently to avoid triggering a netlink event.
3510 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
3512 toshiba_acpi_process_hotkeys(dev);
3514 case 0x81: /* Dock events */
3517 pr_info("Dock event received %x\n", event);
3519 case 0x88: /* Thermal events */
3520 pr_info("Thermal event received\n");
3522 case 0x8f: /* LID closed */
3523 case 0x90: /* LID is closed and Dock has been ejected */
3525 case 0x8c: /* SATA power events */
3527 pr_info("SATA power event received %x\n", event);
3529 case 0x92: /* Keyboard backlight mode changed */
3530 dev->kbd_event_generated = true;
3531 /* Update sysfs entries */
3532 if (sysfs_update_group(&acpi_dev->dev.kobj,
3533 &toshiba_attr_group))
3534 pr_err("Unable to update sysfs entries\n");
3535 /* Notify LED subsystem about keyboard backlight change */
3536 if (dev->kbd_type == 2 && dev->kbd_mode != SCI_KBD_MODE_AUTO)
3537 led_classdev_notify_brightness_hw_changed(&dev->kbd_led,
3538 (dev->kbd_mode == SCI_KBD_MODE_ON) ?
3539 LED_FULL : LED_OFF);
3541 case 0x8e: /* Power button pressed */
3543 case 0x85: /* Unknown */
3544 case 0x8d: /* Unknown */
3545 case 0x94: /* Unknown */
3546 case 0x95: /* Unknown */
3548 pr_info("Unknown event received %x\n", event);
3552 acpi_bus_generate_netlink_event(acpi_dev->pnp.device_class,
3553 dev_name(&acpi_dev->dev),
3554 event, (event == 0x80) ?
3555 dev->last_key_event : 0);
3558 #ifdef CONFIG_PM_SLEEP
3559 static int toshiba_acpi_suspend(struct device *device)
3561 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
3563 if (dev->hotkey_dev) {
3566 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE);
3567 if (result != TOS_SUCCESS)
3568 pr_info("Unable to disable hotkeys\n");
3574 static int toshiba_acpi_resume(struct device *device)
3576 struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
3578 if (dev->hotkey_dev) {
3579 if (toshiba_acpi_enable_hotkeys(dev))
3580 pr_info("Unable to re-enable hotkeys\n");
3583 if (dev->wwan_rfk) {
3584 if (!toshiba_wireless_status(dev))
3585 rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
3588 if (turn_on_panel_on_resume)
3589 hci_write(dev, HCI_PANEL_POWER_ON, 1);
3595 static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
3596 toshiba_acpi_suspend, toshiba_acpi_resume);
3598 static struct acpi_driver toshiba_acpi_driver = {
3599 .name = "Toshiba ACPI driver",
3600 .ids = toshiba_device_ids,
3601 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
3603 .add = toshiba_acpi_add,
3604 .remove = toshiba_acpi_remove,
3605 .notify = toshiba_acpi_notify,
3607 .drv.pm = &toshiba_acpi_pm,
3610 static void __init toshiba_dmi_init(void)
3612 const struct dmi_system_id *dmi_id;
3615 dmi_id = dmi_first_match(toshiba_dmi_quirks);
3617 quirks = (long)dmi_id->driver_data;
3619 if (turn_on_panel_on_resume == -1)
3620 turn_on_panel_on_resume = !!(quirks & QUIRK_TURN_ON_PANEL_ON_RESUME);
3622 if (hci_hotkey_quickstart == -1)
3623 hci_hotkey_quickstart = !!(quirks & QUIRK_HCI_HOTKEY_QUICKSTART);
3626 static int __init toshiba_acpi_init(void)
3631 toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir);
3632 if (!toshiba_proc_dir) {
3633 pr_err("Unable to create proc dir " PROC_TOSHIBA "\n");
3637 ret = acpi_bus_register_driver(&toshiba_acpi_driver);
3639 pr_err("Failed to register ACPI driver: %d\n", ret);
3640 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
3646 static void __exit toshiba_acpi_exit(void)
3648 acpi_bus_unregister_driver(&toshiba_acpi_driver);
3649 if (toshiba_proc_dir)
3650 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
3653 module_init(toshiba_acpi_init);
3654 module_exit(toshiba_acpi_exit);