2 * toshiba_acpi.c - Toshiba Laptop ACPI Extras
4 * Copyright (C) 2002-2004 John Belmonte
5 * Copyright (C) 2008 Philip Langdale
6 * Copyright (C) 2010 Pierre Ducroquet
7 * Copyright (C) 2014-2016 Azael Avalos
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.
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.
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
22 * The devolpment page for this driver is located at
23 * http://memebeam.org/toys/ToshibaAcpiDriver.
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
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34 #define TOSHIBA_ACPI_VERSION "0.24"
35 #define PROC_INTERFACE_VERSION 1
37 #include <linux/compiler.h>
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/moduleparam.h>
41 #include <linux/init.h>
42 #include <linux/types.h>
43 #include <linux/proc_fs.h>
44 #include <linux/seq_file.h>
45 #include <linux/backlight.h>
46 #include <linux/input.h>
47 #include <linux/input/sparse-keymap.h>
48 #include <linux/leds.h>
49 #include <linux/slab.h>
50 #include <linux/workqueue.h>
51 #include <linux/i8042.h>
52 #include <linux/acpi.h>
53 #include <linux/dmi.h>
54 #include <linux/uaccess.h>
55 #include <linux/miscdevice.h>
56 #include <linux/rfkill.h>
57 #include <linux/iio/iio.h>
58 #include <linux/toshiba.h>
59 #include <acpi/video.h>
61 MODULE_AUTHOR("John Belmonte");
62 MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
63 MODULE_LICENSE("GPL");
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_FAN 0x0004
116 #define HCI_TR_BACKLIGHT 0x0005
117 #define HCI_SYSTEM_EVENT 0x0016
118 #define HCI_VIDEO_OUT 0x001c
119 #define HCI_HOTKEY_EVENT 0x001e
120 #define HCI_LCD_BRIGHTNESS 0x002a
121 #define HCI_WIRELESS 0x0056
122 #define HCI_ACCELEROMETER 0x006d
123 #define HCI_COOLING_METHOD 0x007f
124 #define HCI_KBD_ILLUMINATION 0x0095
125 #define HCI_ECO_MODE 0x0097
126 #define HCI_ACCELEROMETER2 0x00a6
127 #define HCI_SYSTEM_INFO 0xc000
128 #define SCI_PANEL_POWER_ON 0x010d
129 #define SCI_ILLUMINATION 0x014e
130 #define SCI_USB_SLEEP_CHARGE 0x0150
131 #define SCI_KBD_ILLUM_STATUS 0x015c
132 #define SCI_USB_SLEEP_MUSIC 0x015e
133 #define SCI_USB_THREE 0x0169
134 #define SCI_TOUCHPAD 0x050e
135 #define SCI_KBD_FUNCTION_KEYS 0x0522
137 /* Field definitions */
138 #define HCI_ACCEL_MASK 0x7fff
139 #define HCI_ACCEL_DIRECTION_MASK 0x8000
140 #define HCI_HOTKEY_DISABLE 0x0b
141 #define HCI_HOTKEY_ENABLE 0x09
142 #define HCI_HOTKEY_SPECIAL_FUNCTIONS 0x10
143 #define HCI_LCD_BRIGHTNESS_BITS 3
144 #define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
145 #define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
146 #define HCI_MISC_SHIFT 0x10
147 #define HCI_SYSTEM_TYPE1 0x10
148 #define HCI_SYSTEM_TYPE2 0x11
149 #define HCI_VIDEO_OUT_LCD 0x1
150 #define HCI_VIDEO_OUT_CRT 0x2
151 #define HCI_VIDEO_OUT_TV 0x4
152 #define SCI_KBD_MODE_MASK 0x1f
153 #define SCI_KBD_MODE_FNZ 0x1
154 #define SCI_KBD_MODE_AUTO 0x2
155 #define SCI_KBD_MODE_ON 0x8
156 #define SCI_KBD_MODE_OFF 0x10
157 #define SCI_KBD_TIME_MAX 0x3c001a
158 #define HCI_WIRELESS_STATUS 0x1
159 #define HCI_WIRELESS_WWAN 0x3
160 #define HCI_WIRELESS_WWAN_STATUS 0x2000
161 #define HCI_WIRELESS_WWAN_POWER 0x4000
162 #define SCI_USB_CHARGE_MODE_MASK 0xff
163 #define SCI_USB_CHARGE_DISABLED 0x00
164 #define SCI_USB_CHARGE_ALTERNATE 0x09
165 #define SCI_USB_CHARGE_TYPICAL 0x11
166 #define SCI_USB_CHARGE_AUTO 0x21
167 #define SCI_USB_CHARGE_BAT_MASK 0x7
168 #define SCI_USB_CHARGE_BAT_LVL_OFF 0x1
169 #define SCI_USB_CHARGE_BAT_LVL_ON 0x4
170 #define SCI_USB_CHARGE_BAT_LVL 0x0200
171 #define SCI_USB_CHARGE_RAPID_DSP 0x0300
173 struct toshiba_acpi_dev
{
174 struct acpi_device
*acpi_dev
;
175 const char *method_hci
;
176 struct input_dev
*hotkey_dev
;
177 struct work_struct hotkey_work
;
178 struct backlight_device
*backlight_dev
;
179 struct led_classdev led_dev
;
180 struct led_classdev kbd_led
;
181 struct led_classdev eco_led
;
182 struct miscdevice miscdev
;
183 struct rfkill
*wwan_rfk
;
184 struct iio_dev
*indio_dev
;
194 int hotkey_event_type
;
195 int max_cooling_method
;
197 unsigned int illumination_supported
:1;
198 unsigned int video_supported
:1;
199 unsigned int fan_supported
:1;
200 unsigned int system_event_supported
:1;
201 unsigned int ntfy_supported
:1;
202 unsigned int info_supported
:1;
203 unsigned int tr_backlight_supported
:1;
204 unsigned int kbd_illum_supported
:1;
205 unsigned int touchpad_supported
:1;
206 unsigned int eco_supported
:1;
207 unsigned int accelerometer_supported
:1;
208 unsigned int usb_sleep_charge_supported
:1;
209 unsigned int usb_rapid_charge_supported
:1;
210 unsigned int usb_sleep_music_supported
:1;
211 unsigned int kbd_function_keys_supported
:1;
212 unsigned int panel_power_on_supported
:1;
213 unsigned int usb_three_supported
:1;
214 unsigned int wwan_supported
:1;
215 unsigned int cooling_method_supported
:1;
216 unsigned int sysfs_created
:1;
217 unsigned int special_functions
;
219 bool kbd_event_generated
;
220 bool kbd_led_registered
;
221 bool illumination_led_registered
;
222 bool eco_led_registered
;
226 static struct toshiba_acpi_dev
*toshiba_acpi
;
228 static bool disable_hotkeys
;
229 module_param(disable_hotkeys
, bool, 0444);
230 MODULE_PARM_DESC(disable_hotkeys
, "Disables the hotkeys activation");
232 static const struct acpi_device_id toshiba_device_ids
[] = {
239 MODULE_DEVICE_TABLE(acpi
, toshiba_device_ids
);
241 static const struct key_entry toshiba_acpi_keymap
[] = {
242 { KE_KEY
, 0x9e, { KEY_RFKILL
} },
243 { KE_KEY
, 0x101, { KEY_MUTE
} },
244 { KE_KEY
, 0x102, { KEY_ZOOMOUT
} },
245 { KE_KEY
, 0x103, { KEY_ZOOMIN
} },
246 { KE_KEY
, 0x10f, { KEY_TAB
} },
247 { KE_KEY
, 0x12c, { KEY_KBDILLUMTOGGLE
} },
248 { KE_KEY
, 0x139, { KEY_ZOOMRESET
} },
249 { KE_KEY
, 0x13b, { KEY_COFFEE
} },
250 { KE_KEY
, 0x13c, { KEY_BATTERY
} },
251 { KE_KEY
, 0x13d, { KEY_SLEEP
} },
252 { KE_KEY
, 0x13e, { KEY_SUSPEND
} },
253 { KE_KEY
, 0x13f, { KEY_SWITCHVIDEOMODE
} },
254 { KE_KEY
, 0x140, { KEY_BRIGHTNESSDOWN
} },
255 { KE_KEY
, 0x141, { KEY_BRIGHTNESSUP
} },
256 { KE_KEY
, 0x142, { KEY_WLAN
} },
257 { KE_KEY
, 0x143, { KEY_TOUCHPAD_TOGGLE
} },
258 { KE_KEY
, 0x17f, { KEY_FN
} },
259 { KE_KEY
, 0xb05, { KEY_PROG2
} },
260 { KE_KEY
, 0xb06, { KEY_WWW
} },
261 { KE_KEY
, 0xb07, { KEY_MAIL
} },
262 { KE_KEY
, 0xb30, { KEY_STOP
} },
263 { KE_KEY
, 0xb31, { KEY_PREVIOUSSONG
} },
264 { KE_KEY
, 0xb32, { KEY_NEXTSONG
} },
265 { KE_KEY
, 0xb33, { KEY_PLAYPAUSE
} },
266 { KE_KEY
, 0xb5a, { KEY_MEDIA
} },
267 { KE_IGNORE
, 0x1430, { KEY_RESERVED
} }, /* Wake from sleep */
268 { KE_IGNORE
, 0x1501, { KEY_RESERVED
} }, /* Output changed */
269 { KE_IGNORE
, 0x1502, { KEY_RESERVED
} }, /* HDMI plugged/unplugged */
270 { KE_IGNORE
, 0x1ABE, { KEY_RESERVED
} }, /* Protection level set */
271 { KE_IGNORE
, 0x1ABF, { KEY_RESERVED
} }, /* Protection level off */
275 static const struct key_entry toshiba_acpi_alt_keymap
[] = {
276 { KE_KEY
, 0x102, { KEY_ZOOMOUT
} },
277 { KE_KEY
, 0x103, { KEY_ZOOMIN
} },
278 { KE_KEY
, 0x12c, { KEY_KBDILLUMTOGGLE
} },
279 { KE_KEY
, 0x139, { KEY_ZOOMRESET
} },
280 { KE_KEY
, 0x13c, { KEY_BRIGHTNESSDOWN
} },
281 { KE_KEY
, 0x13d, { KEY_BRIGHTNESSUP
} },
282 { KE_KEY
, 0x13e, { KEY_SWITCHVIDEOMODE
} },
283 { KE_KEY
, 0x13f, { KEY_TOUCHPAD_TOGGLE
} },
284 { KE_KEY
, 0x157, { KEY_MUTE
} },
285 { KE_KEY
, 0x158, { KEY_WLAN
} },
290 * List of models which have a broken acpi-video backlight interface and thus
291 * need to use the toshiba (vendor) interface instead.
293 static const struct dmi_system_id toshiba_vendor_backlight_dmi
[] = {
301 static inline void _set_bit(u32
*word
, u32 mask
, int value
)
303 *word
= (*word
& ~mask
) | (mask
* value
);
307 * ACPI interface wrappers
310 static int write_acpi_int(const char *methodName
, int val
)
314 status
= acpi_execute_simple_method(NULL
, (char *)methodName
, val
);
315 return (status
== AE_OK
) ? 0 : -EIO
;
319 * Perform a raw configuration call. Here we don't care about input or output
322 static acpi_status
tci_raw(struct toshiba_acpi_dev
*dev
,
323 const u32 in
[TCI_WORDS
], u32 out
[TCI_WORDS
])
325 union acpi_object in_objs
[TCI_WORDS
], out_objs
[TCI_WORDS
+ 1];
326 struct acpi_object_list params
;
327 struct acpi_buffer results
;
331 params
.count
= TCI_WORDS
;
332 params
.pointer
= in_objs
;
333 for (i
= 0; i
< TCI_WORDS
; ++i
) {
334 in_objs
[i
].type
= ACPI_TYPE_INTEGER
;
335 in_objs
[i
].integer
.value
= in
[i
];
338 results
.length
= sizeof(out_objs
);
339 results
.pointer
= out_objs
;
341 status
= acpi_evaluate_object(dev
->acpi_dev
->handle
,
342 (char *)dev
->method_hci
, ¶ms
,
344 if ((status
== AE_OK
) && (out_objs
->package
.count
<= TCI_WORDS
)) {
345 for (i
= 0; i
< out_objs
->package
.count
; ++i
)
346 out
[i
] = out_objs
->package
.elements
[i
].integer
.value
;
355 * In addition to the ACPI status, the HCI system returns a result which
356 * may be useful (such as "not supported").
359 static u32
hci_write(struct toshiba_acpi_dev
*dev
, u32 reg
, u32 in1
)
361 u32 in
[TCI_WORDS
] = { HCI_SET
, reg
, in1
, 0, 0, 0 };
363 acpi_status status
= tci_raw(dev
, in
, out
);
365 return ACPI_SUCCESS(status
) ? out
[0] : TOS_FAILURE
;
368 static u32
hci_read(struct toshiba_acpi_dev
*dev
, u32 reg
, u32
*out1
)
370 u32 in
[TCI_WORDS
] = { HCI_GET
, reg
, 0, 0, 0, 0 };
372 acpi_status status
= tci_raw(dev
, in
, out
);
374 if (ACPI_FAILURE(status
))
386 static int sci_open(struct toshiba_acpi_dev
*dev
)
388 u32 in
[TCI_WORDS
] = { SCI_OPEN
, 0, 0, 0, 0, 0 };
390 acpi_status status
= tci_raw(dev
, in
, out
);
392 if (ACPI_FAILURE(status
)) {
393 pr_err("ACPI call to open SCI failed\n");
397 if (out
[0] == TOS_OPEN_CLOSE_OK
) {
399 } else if (out
[0] == TOS_ALREADY_OPEN
) {
400 pr_info("Toshiba SCI already opened\n");
402 } else if (out
[0] == TOS_NOT_SUPPORTED
) {
404 * Some BIOSes do not have the SCI open/close functions
405 * implemented and return 0x8000 (Not Supported), failing to
406 * register some supported features.
408 * Simply return 1 if we hit those affected laptops to make the
409 * supported features work.
411 * In the case that some laptops really do not support the SCI,
412 * all the SCI dependent functions check for TOS_NOT_SUPPORTED,
413 * and thus, not registering support for the queried feature.
416 } else if (out
[0] == TOS_NOT_PRESENT
) {
417 pr_info("Toshiba SCI is not present\n");
423 static void sci_close(struct toshiba_acpi_dev
*dev
)
425 u32 in
[TCI_WORDS
] = { SCI_CLOSE
, 0, 0, 0, 0, 0 };
427 acpi_status status
= tci_raw(dev
, in
, out
);
429 if (ACPI_FAILURE(status
)) {
430 pr_err("ACPI call to close SCI failed\n");
434 if (out
[0] == TOS_OPEN_CLOSE_OK
)
436 else if (out
[0] == TOS_NOT_OPENED
)
437 pr_info("Toshiba SCI not opened\n");
438 else if (out
[0] == TOS_NOT_PRESENT
)
439 pr_info("Toshiba SCI is not present\n");
442 static u32
sci_read(struct toshiba_acpi_dev
*dev
, u32 reg
, u32
*out1
)
444 u32 in
[TCI_WORDS
] = { SCI_GET
, reg
, 0, 0, 0, 0 };
446 acpi_status status
= tci_raw(dev
, in
, out
);
448 if (ACPI_FAILURE(status
))
456 static u32
sci_write(struct toshiba_acpi_dev
*dev
, u32 reg
, u32 in1
)
458 u32 in
[TCI_WORDS
] = { SCI_SET
, reg
, in1
, 0, 0, 0 };
460 acpi_status status
= tci_raw(dev
, in
, out
);
462 return ACPI_SUCCESS(status
) ? out
[0] : TOS_FAILURE
;
465 /* Illumination support */
466 static void toshiba_illumination_available(struct toshiba_acpi_dev
*dev
)
468 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_ILLUMINATION
, 0, 0, 0, 0 };
472 dev
->illumination_supported
= 0;
473 dev
->illumination_led_registered
= false;
478 status
= tci_raw(dev
, in
, out
);
480 if (ACPI_FAILURE(status
)) {
481 pr_err("ACPI call to query Illumination support failed\n");
485 if (out
[0] != TOS_SUCCESS
)
488 dev
->illumination_supported
= 1;
491 static void toshiba_illumination_set(struct led_classdev
*cdev
,
492 enum led_brightness brightness
)
494 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
495 struct toshiba_acpi_dev
, led_dev
);
499 /* First request : initialize communication. */
503 /* Switch the illumination on/off */
504 state
= brightness
? 1 : 0;
505 result
= sci_write(dev
, SCI_ILLUMINATION
, state
);
507 if (result
== TOS_FAILURE
)
508 pr_err("ACPI call for illumination failed\n");
511 static enum led_brightness
toshiba_illumination_get(struct led_classdev
*cdev
)
513 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
514 struct toshiba_acpi_dev
, led_dev
);
518 /* First request : initialize communication. */
522 /* Check the illumination */
523 result
= sci_read(dev
, SCI_ILLUMINATION
, &state
);
525 if (result
== TOS_FAILURE
) {
526 pr_err("ACPI call for illumination failed\n");
528 } else if (result
!= TOS_SUCCESS
) {
532 return state
? LED_FULL
: LED_OFF
;
535 /* KBD Illumination */
536 static void toshiba_kbd_illum_available(struct toshiba_acpi_dev
*dev
)
538 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_KBD_ILLUM_STATUS
, 0, 0, 0, 0 };
542 dev
->kbd_illum_supported
= 0;
543 dev
->kbd_led_registered
= false;
544 dev
->kbd_event_generated
= false;
549 status
= tci_raw(dev
, in
, out
);
551 if (ACPI_FAILURE(status
)) {
552 pr_err("ACPI call to query kbd illumination support failed\n");
556 if (out
[0] != TOS_SUCCESS
)
560 * Check for keyboard backlight timeout max value,
561 * previous kbd backlight implementation set this to
562 * 0x3c0003, and now the new implementation set this
563 * to 0x3c001a, use this to distinguish between them.
565 if (out
[3] == SCI_KBD_TIME_MAX
)
569 /* Get the current keyboard backlight mode */
570 dev
->kbd_mode
= out
[2] & SCI_KBD_MODE_MASK
;
571 /* Get the current time (1-60 seconds) */
572 dev
->kbd_time
= out
[2] >> HCI_MISC_SHIFT
;
573 /* Flag as supported */
574 dev
->kbd_illum_supported
= 1;
577 static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev
*dev
, u32 time
)
584 result
= sci_write(dev
, SCI_KBD_ILLUM_STATUS
, time
);
586 if (result
== TOS_FAILURE
)
587 pr_err("ACPI call to set KBD backlight status failed\n");
588 else if (result
== TOS_NOT_SUPPORTED
)
591 return result
== TOS_SUCCESS
? 0 : -EIO
;
594 static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev
*dev
, u32
*time
)
601 result
= sci_read(dev
, SCI_KBD_ILLUM_STATUS
, time
);
603 if (result
== TOS_FAILURE
)
604 pr_err("ACPI call to get KBD backlight status failed\n");
605 else if (result
== TOS_NOT_SUPPORTED
)
608 return result
== TOS_SUCCESS
? 0 : -EIO
;
611 static enum led_brightness
toshiba_kbd_backlight_get(struct led_classdev
*cdev
)
613 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
614 struct toshiba_acpi_dev
, kbd_led
);
618 /* Check the keyboard backlight state */
619 result
= hci_read(dev
, HCI_KBD_ILLUMINATION
, &state
);
620 if (result
== TOS_FAILURE
) {
621 pr_err("ACPI call to get the keyboard backlight failed\n");
623 } else if (result
!= TOS_SUCCESS
) {
627 return state
? LED_FULL
: LED_OFF
;
630 static void toshiba_kbd_backlight_set(struct led_classdev
*cdev
,
631 enum led_brightness brightness
)
633 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
634 struct toshiba_acpi_dev
, kbd_led
);
638 /* Set the keyboard backlight state */
639 state
= brightness
? 1 : 0;
640 result
= hci_write(dev
, HCI_KBD_ILLUMINATION
, state
);
641 if (result
== TOS_FAILURE
)
642 pr_err("ACPI call to set KBD Illumination mode failed\n");
645 /* TouchPad support */
646 static int toshiba_touchpad_set(struct toshiba_acpi_dev
*dev
, u32 state
)
653 result
= sci_write(dev
, SCI_TOUCHPAD
, state
);
655 if (result
== TOS_FAILURE
)
656 pr_err("ACPI call to set the touchpad failed\n");
657 else if (result
== TOS_NOT_SUPPORTED
)
660 return result
== TOS_SUCCESS
? 0 : -EIO
;
663 static int toshiba_touchpad_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
670 result
= sci_read(dev
, SCI_TOUCHPAD
, state
);
672 if (result
== TOS_FAILURE
)
673 pr_err("ACPI call to query the touchpad failed\n");
674 else if (result
== TOS_NOT_SUPPORTED
)
677 return result
== TOS_SUCCESS
? 0 : -EIO
;
680 /* Eco Mode support */
681 static void toshiba_eco_mode_available(struct toshiba_acpi_dev
*dev
)
683 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ECO_MODE
, 0, 0, 0, 0 };
687 dev
->eco_supported
= 0;
688 dev
->eco_led_registered
= false;
690 status
= tci_raw(dev
, in
, out
);
691 if (ACPI_FAILURE(status
)) {
692 pr_err("ACPI call to get ECO led failed\n");
696 if (out
[0] == TOS_INPUT_DATA_ERROR
) {
698 * If we receive 0x8300 (Input Data Error), it means that the
699 * LED device is present, but that we just screwed the input
702 * Let's query the status of the LED to see if we really have a
703 * success response, indicating the actual presense of the LED,
704 * bail out otherwise.
707 status
= tci_raw(dev
, in
, out
);
708 if (ACPI_FAILURE(status
)) {
709 pr_err("ACPI call to get ECO led failed\n");
713 if (out
[0] != TOS_SUCCESS
)
716 dev
->eco_supported
= 1;
720 static enum led_brightness
721 toshiba_eco_mode_get_status(struct led_classdev
*cdev
)
723 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
724 struct toshiba_acpi_dev
, eco_led
);
725 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ECO_MODE
, 0, 1, 0, 0 };
729 status
= tci_raw(dev
, in
, out
);
730 if (ACPI_FAILURE(status
)) {
731 pr_err("ACPI call to get ECO led failed\n");
735 if (out
[0] != TOS_SUCCESS
)
738 return out
[2] ? LED_FULL
: LED_OFF
;
741 static void toshiba_eco_mode_set_status(struct led_classdev
*cdev
,
742 enum led_brightness brightness
)
744 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
745 struct toshiba_acpi_dev
, eco_led
);
746 u32 in
[TCI_WORDS
] = { HCI_SET
, HCI_ECO_MODE
, 0, 1, 0, 0 };
750 /* Switch the Eco Mode led on/off */
751 in
[2] = (brightness
) ? 1 : 0;
752 status
= tci_raw(dev
, in
, out
);
753 if (ACPI_FAILURE(status
))
754 pr_err("ACPI call to set ECO led failed\n");
757 /* Accelerometer support */
758 static void toshiba_accelerometer_available(struct toshiba_acpi_dev
*dev
)
760 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ACCELEROMETER2
, 0, 0, 0, 0 };
764 dev
->accelerometer_supported
= 0;
767 * Check if the accelerometer call exists,
768 * this call also serves as initialization
770 status
= tci_raw(dev
, in
, out
);
771 if (ACPI_FAILURE(status
)) {
772 pr_err("ACPI call to query the accelerometer failed\n");
776 if (out
[0] != TOS_SUCCESS
)
779 dev
->accelerometer_supported
= 1;
782 static int toshiba_accelerometer_get(struct toshiba_acpi_dev
*dev
,
785 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ACCELEROMETER
, 0, 1, 0, 0 };
789 /* Check the Accelerometer status */
790 status
= tci_raw(dev
, in
, out
);
791 if (ACPI_FAILURE(status
)) {
792 pr_err("ACPI call to query the accelerometer failed\n");
796 if (out
[0] == TOS_NOT_SUPPORTED
)
799 if (out
[0] != TOS_SUCCESS
)
808 /* Sleep (Charge and Music) utilities support */
809 static void toshiba_usb_sleep_charge_available(struct toshiba_acpi_dev
*dev
)
811 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
815 dev
->usb_sleep_charge_supported
= 0;
820 status
= tci_raw(dev
, in
, out
);
821 if (ACPI_FAILURE(status
)) {
822 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
827 if (out
[0] != TOS_SUCCESS
) {
832 dev
->usbsc_mode_base
= out
[4];
834 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
835 status
= tci_raw(dev
, in
, out
);
837 if (ACPI_FAILURE(status
)) {
838 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
842 if (out
[0] != TOS_SUCCESS
)
845 dev
->usbsc_bat_level
= out
[2];
846 /* Flag as supported */
847 dev
->usb_sleep_charge_supported
= 1;
850 static int toshiba_usb_sleep_charge_get(struct toshiba_acpi_dev
*dev
,
858 result
= sci_read(dev
, SCI_USB_SLEEP_CHARGE
, mode
);
860 if (result
== TOS_FAILURE
)
861 pr_err("ACPI call to set USB S&C mode failed\n");
862 else if (result
== TOS_NOT_SUPPORTED
)
865 return result
== TOS_SUCCESS
? 0 : -EIO
;
868 static int toshiba_usb_sleep_charge_set(struct toshiba_acpi_dev
*dev
,
876 result
= sci_write(dev
, SCI_USB_SLEEP_CHARGE
, mode
);
878 if (result
== TOS_FAILURE
)
879 pr_err("ACPI call to set USB S&C mode failed\n");
880 else if (result
== TOS_NOT_SUPPORTED
)
883 return result
== TOS_SUCCESS
? 0 : -EIO
;
886 static int toshiba_sleep_functions_status_get(struct toshiba_acpi_dev
*dev
,
889 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
896 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
897 status
= tci_raw(dev
, in
, out
);
899 if (ACPI_FAILURE(status
)) {
900 pr_err("ACPI call to get USB S&C battery level failed\n");
904 if (out
[0] == TOS_NOT_SUPPORTED
)
907 if (out
[0] != TOS_SUCCESS
)
916 static int toshiba_sleep_functions_status_set(struct toshiba_acpi_dev
*dev
,
919 u32 in
[TCI_WORDS
] = { SCI_SET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
927 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
928 status
= tci_raw(dev
, in
, out
);
930 if (ACPI_FAILURE(status
)) {
931 pr_err("ACPI call to set USB S&C battery level failed\n");
935 if (out
[0] == TOS_NOT_SUPPORTED
)
938 return out
[0] == TOS_SUCCESS
? 0 : -EIO
;
941 static int toshiba_usb_rapid_charge_get(struct toshiba_acpi_dev
*dev
,
944 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
951 in
[5] = SCI_USB_CHARGE_RAPID_DSP
;
952 status
= tci_raw(dev
, in
, out
);
954 if (ACPI_FAILURE(status
)) {
955 pr_err("ACPI call to get USB Rapid Charge failed\n");
959 if (out
[0] == TOS_NOT_SUPPORTED
)
962 if (out
[0] != TOS_SUCCESS
&& out
[0] != TOS_SUCCESS2
)
970 static int toshiba_usb_rapid_charge_set(struct toshiba_acpi_dev
*dev
,
973 u32 in
[TCI_WORDS
] = { SCI_SET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
981 in
[5] = SCI_USB_CHARGE_RAPID_DSP
;
982 status
= tci_raw(dev
, in
, out
);
984 if (ACPI_FAILURE(status
)) {
985 pr_err("ACPI call to set USB Rapid Charge failed\n");
989 if (out
[0] == TOS_NOT_SUPPORTED
)
992 return (out
[0] == TOS_SUCCESS
|| out
[0] == TOS_SUCCESS2
) ? 0 : -EIO
;
995 static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1002 result
= sci_read(dev
, SCI_USB_SLEEP_MUSIC
, state
);
1004 if (result
== TOS_FAILURE
)
1005 pr_err("ACPI call to get Sleep and Music failed\n");
1006 else if (result
== TOS_NOT_SUPPORTED
)
1009 return result
== TOS_SUCCESS
? 0 : -EIO
;
1012 static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1019 result
= sci_write(dev
, SCI_USB_SLEEP_MUSIC
, state
);
1021 if (result
== TOS_FAILURE
)
1022 pr_err("ACPI call to set Sleep and Music failed\n");
1023 else if (result
== TOS_NOT_SUPPORTED
)
1026 return result
== TOS_SUCCESS
? 0 : -EIO
;
1029 /* Keyboard function keys */
1030 static int toshiba_function_keys_get(struct toshiba_acpi_dev
*dev
, u32
*mode
)
1037 result
= sci_read(dev
, SCI_KBD_FUNCTION_KEYS
, mode
);
1039 if (result
== TOS_FAILURE
)
1040 pr_err("ACPI call to get KBD function keys failed\n");
1041 else if (result
== TOS_NOT_SUPPORTED
)
1044 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1047 static int toshiba_function_keys_set(struct toshiba_acpi_dev
*dev
, u32 mode
)
1054 result
= sci_write(dev
, SCI_KBD_FUNCTION_KEYS
, mode
);
1056 if (result
== TOS_FAILURE
)
1057 pr_err("ACPI call to set KBD function keys failed\n");
1058 else if (result
== TOS_NOT_SUPPORTED
)
1061 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1064 /* Panel Power ON */
1065 static int toshiba_panel_power_on_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1072 result
= sci_read(dev
, SCI_PANEL_POWER_ON
, state
);
1074 if (result
== TOS_FAILURE
)
1075 pr_err("ACPI call to get Panel Power ON failed\n");
1076 else if (result
== TOS_NOT_SUPPORTED
)
1079 return result
== TOS_SUCCESS
? 0 : -EIO
;
1082 static int toshiba_panel_power_on_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1089 result
= sci_write(dev
, SCI_PANEL_POWER_ON
, state
);
1091 if (result
== TOS_FAILURE
)
1092 pr_err("ACPI call to set Panel Power ON failed\n");
1093 else if (result
== TOS_NOT_SUPPORTED
)
1096 return result
== TOS_SUCCESS
? 0 : -EIO
;
1100 static int toshiba_usb_three_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1107 result
= sci_read(dev
, SCI_USB_THREE
, state
);
1109 if (result
== TOS_FAILURE
)
1110 pr_err("ACPI call to get USB 3 failed\n");
1111 else if (result
== TOS_NOT_SUPPORTED
)
1114 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1117 static int toshiba_usb_three_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1124 result
= sci_write(dev
, SCI_USB_THREE
, state
);
1126 if (result
== TOS_FAILURE
)
1127 pr_err("ACPI call to set USB 3 failed\n");
1128 else if (result
== TOS_NOT_SUPPORTED
)
1131 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1134 /* Hotkey Event type */
1135 static int toshiba_hotkey_event_type_get(struct toshiba_acpi_dev
*dev
,
1138 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_SYSTEM_INFO
, 0x03, 0, 0, 0 };
1142 status
= tci_raw(dev
, in
, out
);
1143 if (ACPI_FAILURE(status
)) {
1144 pr_err("ACPI call to get System type failed\n");
1148 if (out
[0] == TOS_NOT_SUPPORTED
)
1151 if (out
[0] != TOS_SUCCESS
)
1159 /* Wireless status (RFKill, WLAN, BT, WWAN) */
1160 static int toshiba_wireless_status(struct toshiba_acpi_dev
*dev
)
1162 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_WIRELESS
, 0, 0, 0, 0 };
1166 in
[3] = HCI_WIRELESS_STATUS
;
1167 status
= tci_raw(dev
, in
, out
);
1169 if (ACPI_FAILURE(status
)) {
1170 pr_err("ACPI call to get Wireless status failed\n");
1174 if (out
[0] == TOS_NOT_SUPPORTED
)
1177 if (out
[0] != TOS_SUCCESS
)
1180 dev
->killswitch
= !!(out
[2] & HCI_WIRELESS_STATUS
);
1186 static void toshiba_wwan_available(struct toshiba_acpi_dev
*dev
)
1188 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_WIRELESS
, 0, 0, 0, 0 };
1192 dev
->wwan_supported
= 0;
1195 * WWAN support can be queried by setting the in[3] value to
1196 * HCI_WIRELESS_WWAN (0x03).
1198 * If supported, out[0] contains TOS_SUCCESS and out[2] contains
1199 * HCI_WIRELESS_WWAN_STATUS (0x2000).
1201 * If not supported, out[0] contains TOS_INPUT_DATA_ERROR (0x8300)
1202 * or TOS_NOT_SUPPORTED (0x8000).
1204 in
[3] = HCI_WIRELESS_WWAN
;
1205 status
= tci_raw(dev
, in
, out
);
1206 if (ACPI_FAILURE(status
)) {
1207 pr_err("ACPI call to get WWAN status failed\n");
1211 if (out
[0] != TOS_SUCCESS
)
1214 dev
->wwan_supported
= (out
[2] == HCI_WIRELESS_WWAN_STATUS
);
1217 static int toshiba_wwan_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1219 u32 in
[TCI_WORDS
] = { HCI_SET
, HCI_WIRELESS
, state
, 0, 0, 0 };
1223 in
[3] = HCI_WIRELESS_WWAN_STATUS
;
1224 status
= tci_raw(dev
, in
, out
);
1225 if (ACPI_FAILURE(status
)) {
1226 pr_err("ACPI call to set WWAN status failed\n");
1230 if (out
[0] == TOS_NOT_SUPPORTED
)
1233 if (out
[0] != TOS_SUCCESS
)
1237 * Some devices only need to call HCI_WIRELESS_WWAN_STATUS to
1238 * (de)activate the device, but some others need the
1239 * HCI_WIRELESS_WWAN_POWER call as well.
1241 in
[3] = HCI_WIRELESS_WWAN_POWER
;
1242 status
= tci_raw(dev
, in
, out
);
1243 if (ACPI_FAILURE(status
)) {
1244 pr_err("ACPI call to set WWAN power failed\n");
1248 if (out
[0] == TOS_NOT_SUPPORTED
)
1251 return out
[0] == TOS_SUCCESS
? 0 : -EIO
;
1254 /* Cooling Method */
1255 static void toshiba_cooling_method_available(struct toshiba_acpi_dev
*dev
)
1257 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_COOLING_METHOD
, 0, 0, 0, 0 };
1261 dev
->cooling_method_supported
= 0;
1262 dev
->max_cooling_method
= 0;
1264 status
= tci_raw(dev
, in
, out
);
1265 if (ACPI_FAILURE(status
)) {
1266 pr_err("ACPI call to get Cooling Method failed\n");
1270 if (out
[0] != TOS_SUCCESS
&& out
[0] != TOS_SUCCESS2
)
1273 dev
->cooling_method_supported
= 1;
1274 dev
->max_cooling_method
= out
[3];
1277 static int toshiba_cooling_method_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1279 u32 result
= hci_read(dev
, HCI_COOLING_METHOD
, state
);
1281 if (result
== TOS_FAILURE
)
1282 pr_err("ACPI call to get Cooling Method failed\n");
1284 if (result
== TOS_NOT_SUPPORTED
)
1287 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1290 static int toshiba_cooling_method_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1292 u32 result
= hci_write(dev
, HCI_COOLING_METHOD
, state
);
1294 if (result
== TOS_FAILURE
)
1295 pr_err("ACPI call to set Cooling Method failed\n");
1297 if (result
== TOS_NOT_SUPPORTED
)
1300 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1303 /* Transflective Backlight */
1304 static int get_tr_backlight_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1306 u32 result
= hci_read(dev
, HCI_TR_BACKLIGHT
, status
);
1308 if (result
== TOS_FAILURE
)
1309 pr_err("ACPI call to get Transflective Backlight failed\n");
1310 else if (result
== TOS_NOT_SUPPORTED
)
1313 return result
== TOS_SUCCESS
? 0 : -EIO
;
1316 static int set_tr_backlight_status(struct toshiba_acpi_dev
*dev
, u32 status
)
1318 u32 result
= hci_write(dev
, HCI_TR_BACKLIGHT
, !status
);
1320 if (result
== TOS_FAILURE
)
1321 pr_err("ACPI call to set Transflective Backlight failed\n");
1322 else if (result
== TOS_NOT_SUPPORTED
)
1325 return result
== TOS_SUCCESS
? 0 : -EIO
;
1328 static struct proc_dir_entry
*toshiba_proc_dir
;
1330 /* LCD Brightness */
1331 static int __get_lcd_brightness(struct toshiba_acpi_dev
*dev
)
1337 if (dev
->tr_backlight_supported
) {
1338 int ret
= get_tr_backlight_status(dev
, &value
);
1347 result
= hci_read(dev
, HCI_LCD_BRIGHTNESS
, &value
);
1348 if (result
== TOS_FAILURE
)
1349 pr_err("ACPI call to get LCD Brightness failed\n");
1350 else if (result
== TOS_NOT_SUPPORTED
)
1353 return result
== TOS_SUCCESS
?
1354 brightness
+ (value
>> HCI_LCD_BRIGHTNESS_SHIFT
) :
1358 static int get_lcd_brightness(struct backlight_device
*bd
)
1360 struct toshiba_acpi_dev
*dev
= bl_get_data(bd
);
1362 return __get_lcd_brightness(dev
);
1365 static int lcd_proc_show(struct seq_file
*m
, void *v
)
1367 struct toshiba_acpi_dev
*dev
= m
->private;
1371 if (!dev
->backlight_dev
)
1374 levels
= dev
->backlight_dev
->props
.max_brightness
+ 1;
1375 value
= get_lcd_brightness(dev
->backlight_dev
);
1377 pr_err("Error reading LCD brightness\n");
1381 seq_printf(m
, "brightness: %d\n", value
);
1382 seq_printf(m
, "brightness_levels: %d\n", levels
);
1387 static int lcd_proc_open(struct inode
*inode
, struct file
*file
)
1389 return single_open(file
, lcd_proc_show
, PDE_DATA(inode
));
1392 static int set_lcd_brightness(struct toshiba_acpi_dev
*dev
, int value
)
1396 if (dev
->tr_backlight_supported
) {
1397 int ret
= set_tr_backlight_status(dev
, !value
);
1405 value
= value
<< HCI_LCD_BRIGHTNESS_SHIFT
;
1406 result
= hci_write(dev
, HCI_LCD_BRIGHTNESS
, value
);
1407 if (result
== TOS_FAILURE
)
1408 pr_err("ACPI call to set LCD Brightness failed\n");
1409 else if (result
== TOS_NOT_SUPPORTED
)
1412 return result
== TOS_SUCCESS
? 0 : -EIO
;
1415 static int set_lcd_status(struct backlight_device
*bd
)
1417 struct toshiba_acpi_dev
*dev
= bl_get_data(bd
);
1419 return set_lcd_brightness(dev
, bd
->props
.brightness
);
1422 static ssize_t
lcd_proc_write(struct file
*file
, const char __user
*buf
,
1423 size_t count
, loff_t
*pos
)
1425 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1431 len
= min(count
, sizeof(cmd
) - 1);
1432 if (copy_from_user(cmd
, buf
, len
))
1436 levels
= dev
->backlight_dev
->props
.max_brightness
+ 1;
1437 if (sscanf(cmd
, " brightness : %i", &value
) != 1 &&
1438 value
< 0 && value
> levels
)
1441 if (set_lcd_brightness(dev
, value
))
1447 static const struct file_operations lcd_proc_fops
= {
1448 .owner
= THIS_MODULE
,
1449 .open
= lcd_proc_open
,
1451 .llseek
= seq_lseek
,
1452 .release
= single_release
,
1453 .write
= lcd_proc_write
,
1457 static int get_video_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1459 u32 result
= hci_read(dev
, HCI_VIDEO_OUT
, status
);
1461 if (result
== TOS_FAILURE
)
1462 pr_err("ACPI call to get Video-Out failed\n");
1463 else if (result
== TOS_NOT_SUPPORTED
)
1466 return result
== TOS_SUCCESS
? 0 : -EIO
;
1469 static int video_proc_show(struct seq_file
*m
, void *v
)
1471 struct toshiba_acpi_dev
*dev
= m
->private;
1472 int is_lcd
, is_crt
, is_tv
;
1475 if (get_video_status(dev
, &value
))
1478 is_lcd
= (value
& HCI_VIDEO_OUT_LCD
) ? 1 : 0;
1479 is_crt
= (value
& HCI_VIDEO_OUT_CRT
) ? 1 : 0;
1480 is_tv
= (value
& HCI_VIDEO_OUT_TV
) ? 1 : 0;
1482 seq_printf(m
, "lcd_out: %d\n", is_lcd
);
1483 seq_printf(m
, "crt_out: %d\n", is_crt
);
1484 seq_printf(m
, "tv_out: %d\n", is_tv
);
1489 static int video_proc_open(struct inode
*inode
, struct file
*file
)
1491 return single_open(file
, video_proc_show
, PDE_DATA(inode
));
1494 static ssize_t
video_proc_write(struct file
*file
, const char __user
*buf
,
1495 size_t count
, loff_t
*pos
)
1497 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1500 int lcd_out
, crt_out
, tv_out
;
1506 cmd
= memdup_user_nul(buf
, count
);
1508 return PTR_ERR(cmd
);
1513 * Scan expression. Multiple expressions may be delimited with ;
1514 * NOTE: To keep scanning simple, invalid fields are ignored.
1517 if (sscanf(buffer
, " lcd_out : %i", &value
) == 1)
1518 lcd_out
= value
& 1;
1519 else if (sscanf(buffer
, " crt_out : %i", &value
) == 1)
1520 crt_out
= value
& 1;
1521 else if (sscanf(buffer
, " tv_out : %i", &value
) == 1)
1523 /* Advance to one character past the next ; */
1527 } while (remain
&& *(buffer
- 1) != ';');
1532 lcd_out
= crt_out
= tv_out
= -1;
1533 ret
= get_video_status(dev
, &video_out
);
1535 unsigned int new_video_out
= video_out
;
1538 _set_bit(&new_video_out
, HCI_VIDEO_OUT_LCD
, lcd_out
);
1540 _set_bit(&new_video_out
, HCI_VIDEO_OUT_CRT
, crt_out
);
1542 _set_bit(&new_video_out
, HCI_VIDEO_OUT_TV
, tv_out
);
1544 * To avoid unnecessary video disruption, only write the new
1545 * video setting if something changed.
1547 if (new_video_out
!= video_out
)
1548 ret
= write_acpi_int(METHOD_VIDEO_OUT
, new_video_out
);
1551 return ret
? -EIO
: count
;
1554 static const struct file_operations video_proc_fops
= {
1555 .owner
= THIS_MODULE
,
1556 .open
= video_proc_open
,
1558 .llseek
= seq_lseek
,
1559 .release
= single_release
,
1560 .write
= video_proc_write
,
1564 static int get_fan_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1566 u32 result
= hci_read(dev
, HCI_FAN
, status
);
1568 if (result
== TOS_FAILURE
)
1569 pr_err("ACPI call to get Fan status failed\n");
1570 else if (result
== TOS_NOT_SUPPORTED
)
1573 return result
== TOS_SUCCESS
? 0 : -EIO
;
1576 static int set_fan_status(struct toshiba_acpi_dev
*dev
, u32 status
)
1578 u32 result
= hci_write(dev
, HCI_FAN
, status
);
1580 if (result
== TOS_FAILURE
)
1581 pr_err("ACPI call to set Fan status failed\n");
1582 else if (result
== TOS_NOT_SUPPORTED
)
1585 return result
== TOS_SUCCESS
? 0 : -EIO
;
1588 static int fan_proc_show(struct seq_file
*m
, void *v
)
1590 struct toshiba_acpi_dev
*dev
= m
->private;
1593 if (get_fan_status(dev
, &value
))
1596 seq_printf(m
, "running: %d\n", (value
> 0));
1597 seq_printf(m
, "force_on: %d\n", dev
->force_fan
);
1602 static int fan_proc_open(struct inode
*inode
, struct file
*file
)
1604 return single_open(file
, fan_proc_show
, PDE_DATA(inode
));
1607 static ssize_t
fan_proc_write(struct file
*file
, const char __user
*buf
,
1608 size_t count
, loff_t
*pos
)
1610 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1615 len
= min(count
, sizeof(cmd
) - 1);
1616 if (copy_from_user(cmd
, buf
, len
))
1620 if (sscanf(cmd
, " force_on : %i", &value
) != 1 &&
1621 value
!= 0 && value
!= 1)
1624 if (set_fan_status(dev
, value
))
1627 dev
->force_fan
= value
;
1632 static const struct file_operations fan_proc_fops
= {
1633 .owner
= THIS_MODULE
,
1634 .open
= fan_proc_open
,
1636 .llseek
= seq_lseek
,
1637 .release
= single_release
,
1638 .write
= fan_proc_write
,
1641 static int keys_proc_show(struct seq_file
*m
, void *v
)
1643 struct toshiba_acpi_dev
*dev
= m
->private;
1645 seq_printf(m
, "hotkey_ready: %d\n", dev
->key_event_valid
);
1646 seq_printf(m
, "hotkey: 0x%04x\n", dev
->last_key_event
);
1651 static int keys_proc_open(struct inode
*inode
, struct file
*file
)
1653 return single_open(file
, keys_proc_show
, PDE_DATA(inode
));
1656 static ssize_t
keys_proc_write(struct file
*file
, const char __user
*buf
,
1657 size_t count
, loff_t
*pos
)
1659 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1664 len
= min(count
, sizeof(cmd
) - 1);
1665 if (copy_from_user(cmd
, buf
, len
))
1669 if (sscanf(cmd
, " hotkey_ready : %i", &value
) == 1 && value
== 0)
1670 dev
->key_event_valid
= 0;
1677 static const struct file_operations keys_proc_fops
= {
1678 .owner
= THIS_MODULE
,
1679 .open
= keys_proc_open
,
1681 .llseek
= seq_lseek
,
1682 .release
= single_release
,
1683 .write
= keys_proc_write
,
1686 static int __maybe_unused
version_proc_show(struct seq_file
*m
, void *v
)
1688 seq_printf(m
, "driver: %s\n", TOSHIBA_ACPI_VERSION
);
1689 seq_printf(m
, "proc_interface: %d\n", PROC_INTERFACE_VERSION
);
1694 * Proc and module init
1697 #define PROC_TOSHIBA "toshiba"
1699 static void create_toshiba_proc_entries(struct toshiba_acpi_dev
*dev
)
1701 if (dev
->backlight_dev
)
1702 proc_create_data("lcd", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1703 &lcd_proc_fops
, dev
);
1704 if (dev
->video_supported
)
1705 proc_create_data("video", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1706 &video_proc_fops
, dev
);
1707 if (dev
->fan_supported
)
1708 proc_create_data("fan", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1709 &fan_proc_fops
, dev
);
1710 if (dev
->hotkey_dev
)
1711 proc_create_data("keys", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1712 &keys_proc_fops
, dev
);
1713 proc_create_single_data("version", S_IRUGO
, toshiba_proc_dir
,
1714 version_proc_show
, dev
);
1717 static void remove_toshiba_proc_entries(struct toshiba_acpi_dev
*dev
)
1719 if (dev
->backlight_dev
)
1720 remove_proc_entry("lcd", toshiba_proc_dir
);
1721 if (dev
->video_supported
)
1722 remove_proc_entry("video", toshiba_proc_dir
);
1723 if (dev
->fan_supported
)
1724 remove_proc_entry("fan", toshiba_proc_dir
);
1725 if (dev
->hotkey_dev
)
1726 remove_proc_entry("keys", toshiba_proc_dir
);
1727 remove_proc_entry("version", toshiba_proc_dir
);
1730 static const struct backlight_ops toshiba_backlight_data
= {
1731 .options
= BL_CORE_SUSPENDRESUME
,
1732 .get_brightness
= get_lcd_brightness
,
1733 .update_status
= set_lcd_status
,
1736 /* Keyboard backlight work */
1737 static void toshiba_acpi_kbd_bl_work(struct work_struct
*work
);
1739 static DECLARE_WORK(kbd_bl_work
, toshiba_acpi_kbd_bl_work
);
1744 static ssize_t
version_show(struct device
*dev
,
1745 struct device_attribute
*attr
, char *buf
)
1747 return sprintf(buf
, "%s\n", TOSHIBA_ACPI_VERSION
);
1749 static DEVICE_ATTR_RO(version
);
1751 static ssize_t
fan_store(struct device
*dev
,
1752 struct device_attribute
*attr
,
1753 const char *buf
, size_t count
)
1755 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1759 ret
= kstrtoint(buf
, 0, &state
);
1763 if (state
!= 0 && state
!= 1)
1766 ret
= set_fan_status(toshiba
, state
);
1773 static ssize_t
fan_show(struct device
*dev
,
1774 struct device_attribute
*attr
, char *buf
)
1776 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1780 ret
= get_fan_status(toshiba
, &value
);
1784 return sprintf(buf
, "%d\n", value
);
1786 static DEVICE_ATTR_RW(fan
);
1788 static ssize_t
kbd_backlight_mode_store(struct device
*dev
,
1789 struct device_attribute
*attr
,
1790 const char *buf
, size_t count
)
1792 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1797 ret
= kstrtoint(buf
, 0, &mode
);
1801 /* Check for supported modes depending on keyboard backlight type */
1802 if (toshiba
->kbd_type
== 1) {
1803 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1804 if (mode
!= SCI_KBD_MODE_FNZ
&& mode
!= SCI_KBD_MODE_AUTO
)
1806 } else if (toshiba
->kbd_type
== 2) {
1807 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1808 if (mode
!= SCI_KBD_MODE_AUTO
&& mode
!= SCI_KBD_MODE_ON
&&
1809 mode
!= SCI_KBD_MODE_OFF
)
1814 * Set the Keyboard Backlight Mode where:
1815 * Auto - KBD backlight turns off automatically in given time
1816 * FN-Z - KBD backlight "toggles" when hotkey pressed
1817 * ON - KBD backlight is always on
1818 * OFF - KBD backlight is always off
1821 /* Only make a change if the actual mode has changed */
1822 if (toshiba
->kbd_mode
!= mode
) {
1823 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1824 int time
= toshiba
->kbd_time
<< HCI_MISC_SHIFT
;
1826 /* OR the "base time" to the actual method format */
1827 if (toshiba
->kbd_type
== 1) {
1828 /* Type 1 requires the current mode */
1829 time
|= toshiba
->kbd_mode
;
1830 } else if (toshiba
->kbd_type
== 2) {
1831 /* Type 2 requires the desired mode */
1835 ret
= toshiba_kbd_illum_status_set(toshiba
, time
);
1839 toshiba
->kbd_mode
= mode
;
1840 toshiba_acpi
->kbd_mode
= mode
;
1843 * Some laptop models with the second generation backlit
1844 * keyboard (type 2) do not generate the keyboard backlight
1845 * changed event (0x92), and thus, the driver will never update
1846 * the sysfs entries.
1848 * The event is generated right when changing the keyboard
1849 * backlight mode and the *notify function will set the
1850 * kbd_event_generated to true.
1852 * In case the event is not generated, schedule the keyboard
1853 * backlight work to update the sysfs entries and emulate the
1854 * event via genetlink.
1856 if (toshiba
->kbd_type
== 2 &&
1857 !toshiba
->kbd_event_generated
)
1858 schedule_work(&kbd_bl_work
);
1864 static ssize_t
kbd_backlight_mode_show(struct device
*dev
,
1865 struct device_attribute
*attr
,
1868 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1871 if (toshiba_kbd_illum_status_get(toshiba
, &time
) < 0)
1874 return sprintf(buf
, "%i\n", time
& SCI_KBD_MODE_MASK
);
1876 static DEVICE_ATTR_RW(kbd_backlight_mode
);
1878 static ssize_t
kbd_type_show(struct device
*dev
,
1879 struct device_attribute
*attr
, char *buf
)
1881 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1883 return sprintf(buf
, "%d\n", toshiba
->kbd_type
);
1885 static DEVICE_ATTR_RO(kbd_type
);
1887 static ssize_t
available_kbd_modes_show(struct device
*dev
,
1888 struct device_attribute
*attr
,
1891 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1893 if (toshiba
->kbd_type
== 1)
1894 return sprintf(buf
, "0x%x 0x%x\n",
1895 SCI_KBD_MODE_FNZ
, SCI_KBD_MODE_AUTO
);
1897 return sprintf(buf
, "0x%x 0x%x 0x%x\n",
1898 SCI_KBD_MODE_AUTO
, SCI_KBD_MODE_ON
, SCI_KBD_MODE_OFF
);
1900 static DEVICE_ATTR_RO(available_kbd_modes
);
1902 static ssize_t
kbd_backlight_timeout_store(struct device
*dev
,
1903 struct device_attribute
*attr
,
1904 const char *buf
, size_t count
)
1906 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1910 ret
= kstrtoint(buf
, 0, &time
);
1914 /* Check for supported values depending on kbd_type */
1915 if (toshiba
->kbd_type
== 1) {
1916 if (time
< 0 || time
> 60)
1918 } else if (toshiba
->kbd_type
== 2) {
1919 if (time
< 1 || time
> 60)
1923 /* Set the Keyboard Backlight Timeout */
1925 /* Only make a change if the actual timeout has changed */
1926 if (toshiba
->kbd_time
!= time
) {
1927 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1928 time
= time
<< HCI_MISC_SHIFT
;
1929 /* OR the "base time" to the actual method format */
1930 if (toshiba
->kbd_type
== 1)
1931 time
|= SCI_KBD_MODE_FNZ
;
1932 else if (toshiba
->kbd_type
== 2)
1933 time
|= SCI_KBD_MODE_AUTO
;
1935 ret
= toshiba_kbd_illum_status_set(toshiba
, time
);
1939 toshiba
->kbd_time
= time
>> HCI_MISC_SHIFT
;
1945 static ssize_t
kbd_backlight_timeout_show(struct device
*dev
,
1946 struct device_attribute
*attr
,
1949 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1952 if (toshiba_kbd_illum_status_get(toshiba
, &time
) < 0)
1955 return sprintf(buf
, "%i\n", time
>> HCI_MISC_SHIFT
);
1957 static DEVICE_ATTR_RW(kbd_backlight_timeout
);
1959 static ssize_t
touchpad_store(struct device
*dev
,
1960 struct device_attribute
*attr
,
1961 const char *buf
, size_t count
)
1963 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1967 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
1968 ret
= kstrtoint(buf
, 0, &state
);
1971 if (state
!= 0 && state
!= 1)
1974 ret
= toshiba_touchpad_set(toshiba
, state
);
1981 static ssize_t
touchpad_show(struct device
*dev
,
1982 struct device_attribute
*attr
, char *buf
)
1984 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1988 ret
= toshiba_touchpad_get(toshiba
, &state
);
1992 return sprintf(buf
, "%i\n", state
);
1994 static DEVICE_ATTR_RW(touchpad
);
1996 static ssize_t
usb_sleep_charge_show(struct device
*dev
,
1997 struct device_attribute
*attr
, char *buf
)
1999 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2003 ret
= toshiba_usb_sleep_charge_get(toshiba
, &mode
);
2007 return sprintf(buf
, "%x\n", mode
& SCI_USB_CHARGE_MODE_MASK
);
2010 static ssize_t
usb_sleep_charge_store(struct device
*dev
,
2011 struct device_attribute
*attr
,
2012 const char *buf
, size_t count
)
2014 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2019 ret
= kstrtoint(buf
, 0, &state
);
2023 * Check for supported values, where:
2025 * 1 - Alternate (Non USB conformant devices that require more power)
2026 * 2 - Auto (USB conformant devices)
2029 if (state
!= 0 && state
!= 1 && state
!= 2 && state
!= 3)
2032 /* Set the USB charging mode to internal value */
2033 mode
= toshiba
->usbsc_mode_base
;
2035 mode
|= SCI_USB_CHARGE_DISABLED
;
2036 else if (state
== 1)
2037 mode
|= SCI_USB_CHARGE_ALTERNATE
;
2038 else if (state
== 2)
2039 mode
|= SCI_USB_CHARGE_AUTO
;
2040 else if (state
== 3)
2041 mode
|= SCI_USB_CHARGE_TYPICAL
;
2043 ret
= toshiba_usb_sleep_charge_set(toshiba
, mode
);
2049 static DEVICE_ATTR_RW(usb_sleep_charge
);
2051 static ssize_t
sleep_functions_on_battery_show(struct device
*dev
,
2052 struct device_attribute
*attr
,
2055 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2056 int bat_lvl
, status
;
2061 ret
= toshiba_sleep_functions_status_get(toshiba
, &state
);
2065 /* Determine the status: 0x4 - Enabled | 0x1 - Disabled */
2066 tmp
= state
& SCI_USB_CHARGE_BAT_MASK
;
2067 status
= (tmp
== 0x4) ? 1 : 0;
2068 /* Determine the battery level set */
2069 bat_lvl
= state
>> HCI_MISC_SHIFT
;
2071 return sprintf(buf
, "%d %d\n", status
, bat_lvl
);
2074 static ssize_t
sleep_functions_on_battery_store(struct device
*dev
,
2075 struct device_attribute
*attr
,
2076 const char *buf
, size_t count
)
2078 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2084 ret
= kstrtoint(buf
, 0, &value
);
2089 * Set the status of the function:
2093 if (value
< 0 || value
> 100)
2097 tmp
= toshiba
->usbsc_bat_level
<< HCI_MISC_SHIFT
;
2098 status
= tmp
| SCI_USB_CHARGE_BAT_LVL_OFF
;
2100 tmp
= value
<< HCI_MISC_SHIFT
;
2101 status
= tmp
| SCI_USB_CHARGE_BAT_LVL_ON
;
2103 ret
= toshiba_sleep_functions_status_set(toshiba
, status
);
2107 toshiba
->usbsc_bat_level
= status
>> HCI_MISC_SHIFT
;
2111 static DEVICE_ATTR_RW(sleep_functions_on_battery
);
2113 static ssize_t
usb_rapid_charge_show(struct device
*dev
,
2114 struct device_attribute
*attr
, char *buf
)
2116 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2120 ret
= toshiba_usb_rapid_charge_get(toshiba
, &state
);
2124 return sprintf(buf
, "%d\n", state
);
2127 static ssize_t
usb_rapid_charge_store(struct device
*dev
,
2128 struct device_attribute
*attr
,
2129 const char *buf
, size_t count
)
2131 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2135 ret
= kstrtoint(buf
, 0, &state
);
2138 if (state
!= 0 && state
!= 1)
2141 ret
= toshiba_usb_rapid_charge_set(toshiba
, state
);
2147 static DEVICE_ATTR_RW(usb_rapid_charge
);
2149 static ssize_t
usb_sleep_music_show(struct device
*dev
,
2150 struct device_attribute
*attr
, char *buf
)
2152 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2156 ret
= toshiba_usb_sleep_music_get(toshiba
, &state
);
2160 return sprintf(buf
, "%d\n", state
);
2163 static ssize_t
usb_sleep_music_store(struct device
*dev
,
2164 struct device_attribute
*attr
,
2165 const char *buf
, size_t count
)
2167 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2171 ret
= kstrtoint(buf
, 0, &state
);
2174 if (state
!= 0 && state
!= 1)
2177 ret
= toshiba_usb_sleep_music_set(toshiba
, state
);
2183 static DEVICE_ATTR_RW(usb_sleep_music
);
2185 static ssize_t
kbd_function_keys_show(struct device
*dev
,
2186 struct device_attribute
*attr
, char *buf
)
2188 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2192 ret
= toshiba_function_keys_get(toshiba
, &mode
);
2196 return sprintf(buf
, "%d\n", mode
);
2199 static ssize_t
kbd_function_keys_store(struct device
*dev
,
2200 struct device_attribute
*attr
,
2201 const char *buf
, size_t count
)
2203 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2207 ret
= kstrtoint(buf
, 0, &mode
);
2211 * Check for the function keys mode where:
2212 * 0 - Normal operation (F{1-12} as usual and hotkeys via FN-F{1-12})
2213 * 1 - Special functions (Opposite of the above setting)
2215 if (mode
!= 0 && mode
!= 1)
2218 ret
= toshiba_function_keys_set(toshiba
, mode
);
2222 pr_info("Reboot for changes to KBD Function Keys to take effect");
2226 static DEVICE_ATTR_RW(kbd_function_keys
);
2228 static ssize_t
panel_power_on_show(struct device
*dev
,
2229 struct device_attribute
*attr
, char *buf
)
2231 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2235 ret
= toshiba_panel_power_on_get(toshiba
, &state
);
2239 return sprintf(buf
, "%d\n", state
);
2242 static ssize_t
panel_power_on_store(struct device
*dev
,
2243 struct device_attribute
*attr
,
2244 const char *buf
, size_t count
)
2246 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2250 ret
= kstrtoint(buf
, 0, &state
);
2253 if (state
!= 0 && state
!= 1)
2256 ret
= toshiba_panel_power_on_set(toshiba
, state
);
2260 pr_info("Reboot for changes to Panel Power ON to take effect");
2264 static DEVICE_ATTR_RW(panel_power_on
);
2266 static ssize_t
usb_three_show(struct device
*dev
,
2267 struct device_attribute
*attr
, char *buf
)
2269 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2273 ret
= toshiba_usb_three_get(toshiba
, &state
);
2277 return sprintf(buf
, "%d\n", state
);
2280 static ssize_t
usb_three_store(struct device
*dev
,
2281 struct device_attribute
*attr
,
2282 const char *buf
, size_t count
)
2284 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2288 ret
= kstrtoint(buf
, 0, &state
);
2292 * Check for USB 3 mode where:
2293 * 0 - Disabled (Acts like a USB 2 port, saving power)
2296 if (state
!= 0 && state
!= 1)
2299 ret
= toshiba_usb_three_set(toshiba
, state
);
2303 pr_info("Reboot for changes to USB 3 to take effect");
2307 static DEVICE_ATTR_RW(usb_three
);
2309 static ssize_t
cooling_method_show(struct device
*dev
,
2310 struct device_attribute
*attr
, char *buf
)
2312 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2316 ret
= toshiba_cooling_method_get(toshiba
, &state
);
2320 return sprintf(buf
, "%d %d\n", state
, toshiba
->max_cooling_method
);
2323 static ssize_t
cooling_method_store(struct device
*dev
,
2324 struct device_attribute
*attr
,
2325 const char *buf
, size_t count
)
2327 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2331 ret
= kstrtoint(buf
, 0, &state
);
2336 * Check for supported values
2337 * Depending on the laptop model, some only support these two:
2338 * 0 - Maximum Performance
2339 * 1 - Battery Optimized
2341 * While some others support all three methods:
2342 * 0 - Maximum Performance
2344 * 2 - Battery Optimized
2346 if (state
< 0 || state
> toshiba
->max_cooling_method
)
2349 ret
= toshiba_cooling_method_set(toshiba
, state
);
2355 static DEVICE_ATTR_RW(cooling_method
);
2357 static struct attribute
*toshiba_attributes
[] = {
2358 &dev_attr_version
.attr
,
2360 &dev_attr_kbd_backlight_mode
.attr
,
2361 &dev_attr_kbd_type
.attr
,
2362 &dev_attr_available_kbd_modes
.attr
,
2363 &dev_attr_kbd_backlight_timeout
.attr
,
2364 &dev_attr_touchpad
.attr
,
2365 &dev_attr_usb_sleep_charge
.attr
,
2366 &dev_attr_sleep_functions_on_battery
.attr
,
2367 &dev_attr_usb_rapid_charge
.attr
,
2368 &dev_attr_usb_sleep_music
.attr
,
2369 &dev_attr_kbd_function_keys
.attr
,
2370 &dev_attr_panel_power_on
.attr
,
2371 &dev_attr_usb_three
.attr
,
2372 &dev_attr_cooling_method
.attr
,
2376 static umode_t
toshiba_sysfs_is_visible(struct kobject
*kobj
,
2377 struct attribute
*attr
, int idx
)
2379 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2380 struct toshiba_acpi_dev
*drv
= dev_get_drvdata(dev
);
2383 if (attr
== &dev_attr_fan
.attr
)
2384 exists
= (drv
->fan_supported
) ? true : false;
2385 else if (attr
== &dev_attr_kbd_backlight_mode
.attr
)
2386 exists
= (drv
->kbd_illum_supported
) ? true : false;
2387 else if (attr
== &dev_attr_kbd_backlight_timeout
.attr
)
2388 exists
= (drv
->kbd_mode
== SCI_KBD_MODE_AUTO
) ? true : false;
2389 else if (attr
== &dev_attr_touchpad
.attr
)
2390 exists
= (drv
->touchpad_supported
) ? true : false;
2391 else if (attr
== &dev_attr_usb_sleep_charge
.attr
)
2392 exists
= (drv
->usb_sleep_charge_supported
) ? true : false;
2393 else if (attr
== &dev_attr_sleep_functions_on_battery
.attr
)
2394 exists
= (drv
->usb_sleep_charge_supported
) ? true : false;
2395 else if (attr
== &dev_attr_usb_rapid_charge
.attr
)
2396 exists
= (drv
->usb_rapid_charge_supported
) ? true : false;
2397 else if (attr
== &dev_attr_usb_sleep_music
.attr
)
2398 exists
= (drv
->usb_sleep_music_supported
) ? true : false;
2399 else if (attr
== &dev_attr_kbd_function_keys
.attr
)
2400 exists
= (drv
->kbd_function_keys_supported
) ? true : false;
2401 else if (attr
== &dev_attr_panel_power_on
.attr
)
2402 exists
= (drv
->panel_power_on_supported
) ? true : false;
2403 else if (attr
== &dev_attr_usb_three
.attr
)
2404 exists
= (drv
->usb_three_supported
) ? true : false;
2405 else if (attr
== &dev_attr_cooling_method
.attr
)
2406 exists
= (drv
->cooling_method_supported
) ? true : false;
2408 return exists
? attr
->mode
: 0;
2411 static const struct attribute_group toshiba_attr_group
= {
2412 .is_visible
= toshiba_sysfs_is_visible
,
2413 .attrs
= toshiba_attributes
,
2416 static void toshiba_acpi_kbd_bl_work(struct work_struct
*work
)
2418 /* Update the sysfs entries */
2419 if (sysfs_update_group(&toshiba_acpi
->acpi_dev
->dev
.kobj
,
2420 &toshiba_attr_group
))
2421 pr_err("Unable to update sysfs entries\n");
2423 /* Notify LED subsystem about keyboard backlight change */
2424 if (toshiba_acpi
->kbd_type
== 2 &&
2425 toshiba_acpi
->kbd_mode
!= SCI_KBD_MODE_AUTO
)
2426 led_classdev_notify_brightness_hw_changed(&toshiba_acpi
->kbd_led
,
2427 (toshiba_acpi
->kbd_mode
== SCI_KBD_MODE_ON
) ?
2428 LED_FULL
: LED_OFF
);
2430 /* Emulate the keyboard backlight event */
2431 acpi_bus_generate_netlink_event(toshiba_acpi
->acpi_dev
->pnp
.device_class
,
2432 dev_name(&toshiba_acpi
->acpi_dev
->dev
),
2440 enum toshiba_iio_accel_chan
{
2446 static int toshiba_iio_accel_get_axis(enum toshiba_iio_accel_chan chan
)
2451 ret
= toshiba_accelerometer_get(toshiba_acpi
, &xyval
, &zval
);
2457 return xyval
& HCI_ACCEL_DIRECTION_MASK
?
2458 -(xyval
& HCI_ACCEL_MASK
) : xyval
& HCI_ACCEL_MASK
;
2460 return (xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_DIRECTION_MASK
?
2461 -((xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_MASK
) :
2462 (xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_MASK
;
2464 return zval
& HCI_ACCEL_DIRECTION_MASK
?
2465 -(zval
& HCI_ACCEL_MASK
) : zval
& HCI_ACCEL_MASK
;
2471 static int toshiba_iio_accel_read_raw(struct iio_dev
*indio_dev
,
2472 struct iio_chan_spec
const *chan
,
2473 int *val
, int *val2
, long mask
)
2478 case IIO_CHAN_INFO_RAW
:
2479 ret
= toshiba_iio_accel_get_axis(chan
->channel
);
2480 if (ret
== -EIO
|| ret
== -ENODEV
)
2491 #define TOSHIBA_IIO_ACCEL_CHANNEL(axis, chan) { \
2492 .type = IIO_ACCEL, \
2495 .channel2 = IIO_MOD_##axis, \
2497 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
2500 static const struct iio_chan_spec toshiba_iio_accel_channels
[] = {
2501 TOSHIBA_IIO_ACCEL_CHANNEL(X
, AXIS_X
),
2502 TOSHIBA_IIO_ACCEL_CHANNEL(Y
, AXIS_Y
),
2503 TOSHIBA_IIO_ACCEL_CHANNEL(Z
, AXIS_Z
),
2506 static const struct iio_info toshiba_iio_accel_info
= {
2507 .read_raw
= &toshiba_iio_accel_read_raw
,
2513 static int toshiba_acpi_smm_bridge(SMMRegisters
*regs
)
2515 u32 in
[TCI_WORDS
] = { regs
->eax
, regs
->ebx
, regs
->ecx
,
2516 regs
->edx
, regs
->esi
, regs
->edi
};
2520 status
= tci_raw(toshiba_acpi
, in
, out
);
2521 if (ACPI_FAILURE(status
)) {
2522 pr_err("ACPI call to query SMM registers failed\n");
2526 /* Fillout the SMM struct with the TCI call results */
2537 static long toshiba_acpi_ioctl(struct file
*fp
, unsigned int cmd
,
2540 SMMRegisters __user
*argp
= (SMMRegisters __user
*)arg
;
2549 if (copy_from_user(®s
, argp
, sizeof(SMMRegisters
)))
2551 ret
= toshiba_acpi_smm_bridge(®s
);
2554 if (copy_to_user(argp
, ®s
, sizeof(SMMRegisters
)))
2557 case TOSHIBA_ACPI_SCI
:
2558 if (copy_from_user(®s
, argp
, sizeof(SMMRegisters
)))
2560 /* Ensure we are being called with a SCI_{GET, SET} register */
2561 if (regs
.eax
!= SCI_GET
&& regs
.eax
!= SCI_SET
)
2563 if (!sci_open(toshiba_acpi
))
2565 ret
= toshiba_acpi_smm_bridge(®s
);
2566 sci_close(toshiba_acpi
);
2569 if (copy_to_user(argp
, ®s
, sizeof(SMMRegisters
)))
2579 static const struct file_operations toshiba_acpi_fops
= {
2580 .owner
= THIS_MODULE
,
2581 .unlocked_ioctl
= toshiba_acpi_ioctl
,
2582 .llseek
= noop_llseek
,
2586 * WWAN RFKill handlers
2588 static int toshiba_acpi_wwan_set_block(void *data
, bool blocked
)
2590 struct toshiba_acpi_dev
*dev
= data
;
2593 ret
= toshiba_wireless_status(dev
);
2597 if (!dev
->killswitch
)
2600 return toshiba_wwan_set(dev
, !blocked
);
2603 static void toshiba_acpi_wwan_poll(struct rfkill
*rfkill
, void *data
)
2605 struct toshiba_acpi_dev
*dev
= data
;
2607 if (toshiba_wireless_status(dev
))
2610 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
2613 static const struct rfkill_ops wwan_rfk_ops
= {
2614 .set_block
= toshiba_acpi_wwan_set_block
,
2615 .poll
= toshiba_acpi_wwan_poll
,
2618 static int toshiba_acpi_setup_wwan_rfkill(struct toshiba_acpi_dev
*dev
)
2620 int ret
= toshiba_wireless_status(dev
);
2625 dev
->wwan_rfk
= rfkill_alloc("Toshiba WWAN",
2626 &dev
->acpi_dev
->dev
,
2630 if (!dev
->wwan_rfk
) {
2631 pr_err("Unable to allocate WWAN rfkill device\n");
2635 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
2637 ret
= rfkill_register(dev
->wwan_rfk
);
2639 pr_err("Unable to register WWAN rfkill device\n");
2640 rfkill_destroy(dev
->wwan_rfk
);
2649 static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev
*dev
)
2654 status
= acpi_evaluate_object(dev
->acpi_dev
->handle
,
2655 "ENAB", NULL
, NULL
);
2656 if (ACPI_FAILURE(status
))
2660 * Enable the "Special Functions" mode only if they are
2661 * supported and if they are activated.
2663 if (dev
->kbd_function_keys_supported
&& dev
->special_functions
)
2664 result
= hci_write(dev
, HCI_HOTKEY_EVENT
,
2665 HCI_HOTKEY_SPECIAL_FUNCTIONS
);
2667 result
= hci_write(dev
, HCI_HOTKEY_EVENT
, HCI_HOTKEY_ENABLE
);
2669 if (result
== TOS_FAILURE
)
2671 else if (result
== TOS_NOT_SUPPORTED
)
2677 static bool toshiba_acpi_i8042_filter(unsigned char data
, unsigned char str
,
2680 if (str
& I8042_STR_AUXDATA
)
2683 if (unlikely(data
== 0xe0))
2686 if ((data
& 0x7f) == TOS1900_FN_SCAN
) {
2687 schedule_work(&toshiba_acpi
->hotkey_work
);
2694 static void toshiba_acpi_hotkey_work(struct work_struct
*work
)
2696 acpi_handle ec_handle
= ec_get_handle();
2702 status
= acpi_evaluate_object(ec_handle
, "NTFY", NULL
, NULL
);
2703 if (ACPI_FAILURE(status
))
2704 pr_err("ACPI NTFY method execution failed\n");
2708 * Returns hotkey scancode, or < 0 on failure.
2710 static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev
*dev
)
2712 unsigned long long value
;
2715 status
= acpi_evaluate_integer(dev
->acpi_dev
->handle
, "INFO",
2717 if (ACPI_FAILURE(status
)) {
2718 pr_err("ACPI INFO method execution failed\n");
2725 static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev
*dev
,
2728 if (scancode
== 0x100)
2731 /* Act on key press; ignore key release */
2732 if (scancode
& 0x80)
2735 if (!sparse_keymap_report_event(dev
->hotkey_dev
, scancode
, 1, true))
2736 pr_info("Unknown key %x\n", scancode
);
2739 static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev
*dev
)
2741 if (dev
->info_supported
) {
2742 int scancode
= toshiba_acpi_query_hotkey(dev
);
2745 pr_err("Failed to query hotkey event\n");
2746 } else if (scancode
!= 0) {
2747 toshiba_acpi_report_hotkey(dev
, scancode
);
2748 dev
->key_event_valid
= 1;
2749 dev
->last_key_event
= scancode
;
2751 } else if (dev
->system_event_supported
) {
2757 result
= hci_read(dev
, HCI_SYSTEM_EVENT
, &value
);
2760 toshiba_acpi_report_hotkey(dev
, (int)value
);
2761 dev
->key_event_valid
= 1;
2762 dev
->last_key_event
= value
;
2764 case TOS_NOT_SUPPORTED
:
2766 * This is a workaround for an unresolved
2767 * issue on some machines where system events
2768 * sporadically become disabled.
2770 result
= hci_write(dev
, HCI_SYSTEM_EVENT
, 1);
2771 if (result
== TOS_SUCCESS
)
2772 pr_notice("Re-enabled hotkeys\n");
2778 } while (retries
&& result
!= TOS_FIFO_EMPTY
);
2782 static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev
*dev
)
2784 const struct key_entry
*keymap
= toshiba_acpi_keymap
;
2785 acpi_handle ec_handle
;
2788 if (disable_hotkeys
) {
2789 pr_info("Hotkeys disabled by module parameter\n");
2793 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID
)) {
2794 pr_info("WMI event detected, hotkeys will not be monitored\n");
2798 error
= toshiba_acpi_enable_hotkeys(dev
);
2802 if (toshiba_hotkey_event_type_get(dev
, &dev
->hotkey_event_type
))
2803 pr_notice("Unable to query Hotkey Event Type\n");
2805 dev
->hotkey_dev
= input_allocate_device();
2806 if (!dev
->hotkey_dev
)
2809 dev
->hotkey_dev
->name
= "Toshiba input device";
2810 dev
->hotkey_dev
->phys
= "toshiba_acpi/input0";
2811 dev
->hotkey_dev
->id
.bustype
= BUS_HOST
;
2813 if (dev
->hotkey_event_type
== HCI_SYSTEM_TYPE1
||
2814 !dev
->kbd_function_keys_supported
)
2815 keymap
= toshiba_acpi_keymap
;
2816 else if (dev
->hotkey_event_type
== HCI_SYSTEM_TYPE2
||
2817 dev
->kbd_function_keys_supported
)
2818 keymap
= toshiba_acpi_alt_keymap
;
2820 pr_info("Unknown event type received %x\n",
2821 dev
->hotkey_event_type
);
2822 error
= sparse_keymap_setup(dev
->hotkey_dev
, keymap
, NULL
);
2827 * For some machines the SCI responsible for providing hotkey
2828 * notification doesn't fire. We can trigger the notification
2829 * whenever the Fn key is pressed using the NTFY method, if
2830 * supported, so if it's present set up an i8042 key filter
2833 ec_handle
= ec_get_handle();
2834 if (ec_handle
&& acpi_has_method(ec_handle
, "NTFY")) {
2835 INIT_WORK(&dev
->hotkey_work
, toshiba_acpi_hotkey_work
);
2837 error
= i8042_install_filter(toshiba_acpi_i8042_filter
);
2839 pr_err("Error installing key filter\n");
2843 dev
->ntfy_supported
= 1;
2847 * Determine hotkey query interface. Prefer using the INFO
2848 * method when it is available.
2850 if (acpi_has_method(dev
->acpi_dev
->handle
, "INFO"))
2851 dev
->info_supported
= 1;
2852 else if (hci_write(dev
, HCI_SYSTEM_EVENT
, 1) == TOS_SUCCESS
)
2853 dev
->system_event_supported
= 1;
2855 if (!dev
->info_supported
&& !dev
->system_event_supported
) {
2856 pr_warn("No hotkey query interface found\n");
2857 goto err_remove_filter
;
2860 error
= input_register_device(dev
->hotkey_dev
);
2862 pr_info("Unable to register input device\n");
2863 goto err_remove_filter
;
2869 if (dev
->ntfy_supported
)
2870 i8042_remove_filter(toshiba_acpi_i8042_filter
);
2872 input_free_device(dev
->hotkey_dev
);
2873 dev
->hotkey_dev
= NULL
;
2877 static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev
*dev
)
2879 struct backlight_properties props
;
2884 * Some machines don't support the backlight methods at all, and
2885 * others support it read-only. Either of these is pretty useless,
2886 * so only register the backlight device if the backlight method
2887 * supports both reads and writes.
2889 brightness
= __get_lcd_brightness(dev
);
2893 * If transflective backlight is supported and the brightness is zero
2894 * (lowest brightness level), the set_lcd_brightness function will
2895 * activate the transflective backlight, making the LCD appear to be
2896 * turned off, simply increment the brightness level to avoid that.
2898 if (dev
->tr_backlight_supported
&& brightness
== 0)
2900 ret
= set_lcd_brightness(dev
, brightness
);
2902 pr_debug("Backlight method is read-only, disabling backlight support\n");
2907 * Tell acpi-video-detect code to prefer vendor backlight on all
2908 * systems with transflective backlight and on dmi matched systems.
2910 if (dev
->tr_backlight_supported
||
2911 dmi_check_system(toshiba_vendor_backlight_dmi
))
2912 acpi_video_set_dmi_backlight_type(acpi_backlight_vendor
);
2914 if (acpi_video_get_backlight_type() != acpi_backlight_vendor
)
2917 memset(&props
, 0, sizeof(props
));
2918 props
.type
= BACKLIGHT_PLATFORM
;
2919 props
.max_brightness
= HCI_LCD_BRIGHTNESS_LEVELS
- 1;
2921 /* Adding an extra level and having 0 change to transflective mode */
2922 if (dev
->tr_backlight_supported
)
2923 props
.max_brightness
++;
2925 dev
->backlight_dev
= backlight_device_register("toshiba",
2926 &dev
->acpi_dev
->dev
,
2928 &toshiba_backlight_data
,
2930 if (IS_ERR(dev
->backlight_dev
)) {
2931 ret
= PTR_ERR(dev
->backlight_dev
);
2932 pr_err("Could not register toshiba backlight device\n");
2933 dev
->backlight_dev
= NULL
;
2937 dev
->backlight_dev
->props
.brightness
= brightness
;
2941 static void print_supported_features(struct toshiba_acpi_dev
*dev
)
2943 pr_info("Supported laptop features:");
2945 if (dev
->hotkey_dev
)
2946 pr_cont(" hotkeys");
2947 if (dev
->backlight_dev
)
2948 pr_cont(" backlight");
2949 if (dev
->video_supported
)
2950 pr_cont(" video-out");
2951 if (dev
->fan_supported
)
2953 if (dev
->tr_backlight_supported
)
2954 pr_cont(" transflective-backlight");
2955 if (dev
->illumination_supported
)
2956 pr_cont(" illumination");
2957 if (dev
->kbd_illum_supported
)
2958 pr_cont(" keyboard-backlight");
2959 if (dev
->touchpad_supported
)
2960 pr_cont(" touchpad");
2961 if (dev
->eco_supported
)
2962 pr_cont(" eco-led");
2963 if (dev
->accelerometer_supported
)
2964 pr_cont(" accelerometer-axes");
2965 if (dev
->usb_sleep_charge_supported
)
2966 pr_cont(" usb-sleep-charge");
2967 if (dev
->usb_rapid_charge_supported
)
2968 pr_cont(" usb-rapid-charge");
2969 if (dev
->usb_sleep_music_supported
)
2970 pr_cont(" usb-sleep-music");
2971 if (dev
->kbd_function_keys_supported
)
2972 pr_cont(" special-function-keys");
2973 if (dev
->panel_power_on_supported
)
2974 pr_cont(" panel-power-on");
2975 if (dev
->usb_three_supported
)
2977 if (dev
->wwan_supported
)
2979 if (dev
->cooling_method_supported
)
2980 pr_cont(" cooling-method");
2985 static int toshiba_acpi_remove(struct acpi_device
*acpi_dev
)
2987 struct toshiba_acpi_dev
*dev
= acpi_driver_data(acpi_dev
);
2989 misc_deregister(&dev
->miscdev
);
2991 remove_toshiba_proc_entries(dev
);
2993 if (dev
->accelerometer_supported
&& dev
->indio_dev
) {
2994 iio_device_unregister(dev
->indio_dev
);
2995 iio_device_free(dev
->indio_dev
);
2998 if (dev
->sysfs_created
)
2999 sysfs_remove_group(&dev
->acpi_dev
->dev
.kobj
,
3000 &toshiba_attr_group
);
3002 if (dev
->ntfy_supported
) {
3003 i8042_remove_filter(toshiba_acpi_i8042_filter
);
3004 cancel_work_sync(&dev
->hotkey_work
);
3007 if (dev
->hotkey_dev
)
3008 input_unregister_device(dev
->hotkey_dev
);
3010 backlight_device_unregister(dev
->backlight_dev
);
3012 if (dev
->illumination_led_registered
)
3013 led_classdev_unregister(&dev
->led_dev
);
3015 if (dev
->kbd_led_registered
)
3016 led_classdev_unregister(&dev
->kbd_led
);
3018 if (dev
->eco_led_registered
)
3019 led_classdev_unregister(&dev
->eco_led
);
3021 if (dev
->wwan_rfk
) {
3022 rfkill_unregister(dev
->wwan_rfk
);
3023 rfkill_destroy(dev
->wwan_rfk
);
3027 toshiba_acpi
= NULL
;
3034 static const char *find_hci_method(acpi_handle handle
)
3036 if (acpi_has_method(handle
, "GHCI"))
3039 if (acpi_has_method(handle
, "SPFC"))
3045 static int toshiba_acpi_add(struct acpi_device
*acpi_dev
)
3047 struct toshiba_acpi_dev
*dev
;
3048 const char *hci_method
;
3055 pr_info("Toshiba Laptop ACPI Extras version %s\n",
3056 TOSHIBA_ACPI_VERSION
);
3058 hci_method
= find_hci_method(acpi_dev
->handle
);
3060 pr_err("HCI interface not found\n");
3064 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
3067 dev
->acpi_dev
= acpi_dev
;
3068 dev
->method_hci
= hci_method
;
3069 dev
->miscdev
.minor
= MISC_DYNAMIC_MINOR
;
3070 dev
->miscdev
.name
= "toshiba_acpi";
3071 dev
->miscdev
.fops
= &toshiba_acpi_fops
;
3073 ret
= misc_register(&dev
->miscdev
);
3075 pr_err("Failed to register miscdevice\n");
3080 acpi_dev
->driver_data
= dev
;
3081 dev_set_drvdata(&acpi_dev
->dev
, dev
);
3083 /* Query the BIOS for supported features */
3086 * The "Special Functions" are always supported by the laptops
3087 * with the new keyboard layout, query for its presence to help
3088 * determine the keymap layout to use.
3090 ret
= toshiba_function_keys_get(dev
, &dev
->special_functions
);
3091 dev
->kbd_function_keys_supported
= !ret
;
3093 dev
->hotkey_event_type
= 0;
3094 if (toshiba_acpi_setup_keyboard(dev
))
3095 pr_info("Unable to activate hotkeys\n");
3097 /* Determine whether or not BIOS supports transflective backlight */
3098 ret
= get_tr_backlight_status(dev
, &dummy
);
3099 dev
->tr_backlight_supported
= !ret
;
3101 ret
= toshiba_acpi_setup_backlight(dev
);
3105 toshiba_illumination_available(dev
);
3106 if (dev
->illumination_supported
) {
3107 dev
->led_dev
.name
= "toshiba::illumination";
3108 dev
->led_dev
.max_brightness
= 1;
3109 dev
->led_dev
.brightness_set
= toshiba_illumination_set
;
3110 dev
->led_dev
.brightness_get
= toshiba_illumination_get
;
3111 if (!led_classdev_register(&acpi_dev
->dev
, &dev
->led_dev
))
3112 dev
->illumination_led_registered
= true;
3115 toshiba_eco_mode_available(dev
);
3116 if (dev
->eco_supported
) {
3117 dev
->eco_led
.name
= "toshiba::eco_mode";
3118 dev
->eco_led
.max_brightness
= 1;
3119 dev
->eco_led
.brightness_set
= toshiba_eco_mode_set_status
;
3120 dev
->eco_led
.brightness_get
= toshiba_eco_mode_get_status
;
3121 if (!led_classdev_register(&dev
->acpi_dev
->dev
, &dev
->eco_led
))
3122 dev
->eco_led_registered
= true;
3125 toshiba_kbd_illum_available(dev
);
3127 * Only register the LED if KBD illumination is supported
3128 * and the keyboard backlight operation mode is set to FN-Z
3129 * or we detect a second gen keyboard backlight
3131 if (dev
->kbd_illum_supported
&&
3132 (dev
->kbd_mode
== SCI_KBD_MODE_FNZ
|| dev
->kbd_type
== 2)) {
3133 dev
->kbd_led
.name
= "toshiba::kbd_backlight";
3134 dev
->kbd_led
.flags
= LED_BRIGHT_HW_CHANGED
;
3135 dev
->kbd_led
.max_brightness
= 1;
3136 dev
->kbd_led
.brightness_set
= toshiba_kbd_backlight_set
;
3137 dev
->kbd_led
.brightness_get
= toshiba_kbd_backlight_get
;
3138 if (!led_classdev_register(&dev
->acpi_dev
->dev
, &dev
->kbd_led
))
3139 dev
->kbd_led_registered
= true;
3142 ret
= toshiba_touchpad_get(dev
, &dummy
);
3143 dev
->touchpad_supported
= !ret
;
3145 toshiba_accelerometer_available(dev
);
3146 if (dev
->accelerometer_supported
) {
3147 dev
->indio_dev
= iio_device_alloc(sizeof(*dev
));
3148 if (!dev
->indio_dev
) {
3149 pr_err("Unable to allocate iio device\n");
3153 pr_info("Registering Toshiba accelerometer iio device\n");
3155 dev
->indio_dev
->info
= &toshiba_iio_accel_info
;
3156 dev
->indio_dev
->name
= "Toshiba accelerometer";
3157 dev
->indio_dev
->dev
.parent
= &acpi_dev
->dev
;
3158 dev
->indio_dev
->modes
= INDIO_DIRECT_MODE
;
3159 dev
->indio_dev
->channels
= toshiba_iio_accel_channels
;
3160 dev
->indio_dev
->num_channels
=
3161 ARRAY_SIZE(toshiba_iio_accel_channels
);
3163 ret
= iio_device_register(dev
->indio_dev
);
3165 pr_err("Unable to register iio device\n");
3166 iio_device_free(dev
->indio_dev
);
3171 toshiba_usb_sleep_charge_available(dev
);
3173 ret
= toshiba_usb_rapid_charge_get(dev
, &dummy
);
3174 dev
->usb_rapid_charge_supported
= !ret
;
3176 ret
= toshiba_usb_sleep_music_get(dev
, &dummy
);
3177 dev
->usb_sleep_music_supported
= !ret
;
3179 ret
= toshiba_panel_power_on_get(dev
, &dummy
);
3180 dev
->panel_power_on_supported
= !ret
;
3182 ret
= toshiba_usb_three_get(dev
, &dummy
);
3183 dev
->usb_three_supported
= !ret
;
3185 ret
= get_video_status(dev
, &dummy
);
3186 dev
->video_supported
= !ret
;
3188 ret
= get_fan_status(dev
, &dummy
);
3189 dev
->fan_supported
= !ret
;
3191 toshiba_wwan_available(dev
);
3192 if (dev
->wwan_supported
)
3193 toshiba_acpi_setup_wwan_rfkill(dev
);
3195 toshiba_cooling_method_available(dev
);
3197 print_supported_features(dev
);
3199 ret
= sysfs_create_group(&dev
->acpi_dev
->dev
.kobj
,
3200 &toshiba_attr_group
);
3202 dev
->sysfs_created
= 0;
3205 dev
->sysfs_created
= !ret
;
3207 create_toshiba_proc_entries(dev
);
3214 toshiba_acpi_remove(acpi_dev
);
3218 static void toshiba_acpi_notify(struct acpi_device
*acpi_dev
, u32 event
)
3220 struct toshiba_acpi_dev
*dev
= acpi_driver_data(acpi_dev
);
3223 case 0x80: /* Hotkeys and some system events */
3225 * Machines with this WMI GUID aren't supported due to bugs in
3228 * Return silently to avoid triggering a netlink event.
3230 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID
))
3232 toshiba_acpi_process_hotkeys(dev
);
3234 case 0x81: /* Dock events */
3237 pr_info("Dock event received %x\n", event
);
3239 case 0x88: /* Thermal events */
3240 pr_info("Thermal event received\n");
3242 case 0x8f: /* LID closed */
3243 case 0x90: /* LID is closed and Dock has been ejected */
3245 case 0x8c: /* SATA power events */
3247 pr_info("SATA power event received %x\n", event
);
3249 case 0x92: /* Keyboard backlight mode changed */
3250 dev
->kbd_event_generated
= true;
3251 /* Update sysfs entries */
3252 if (sysfs_update_group(&acpi_dev
->dev
.kobj
,
3253 &toshiba_attr_group
))
3254 pr_err("Unable to update sysfs entries\n");
3255 /* Notify LED subsystem about keyboard backlight change */
3256 if (dev
->kbd_type
== 2 && dev
->kbd_mode
!= SCI_KBD_MODE_AUTO
)
3257 led_classdev_notify_brightness_hw_changed(&dev
->kbd_led
,
3258 (dev
->kbd_mode
== SCI_KBD_MODE_ON
) ?
3259 LED_FULL
: LED_OFF
);
3261 case 0x85: /* Unknown */
3262 case 0x8d: /* Unknown */
3263 case 0x8e: /* Unknown */
3264 case 0x94: /* Unknown */
3265 case 0x95: /* Unknown */
3267 pr_info("Unknown event received %x\n", event
);
3271 acpi_bus_generate_netlink_event(acpi_dev
->pnp
.device_class
,
3272 dev_name(&acpi_dev
->dev
),
3273 event
, (event
== 0x80) ?
3274 dev
->last_key_event
: 0);
3277 #ifdef CONFIG_PM_SLEEP
3278 static int toshiba_acpi_suspend(struct device
*device
)
3280 struct toshiba_acpi_dev
*dev
= acpi_driver_data(to_acpi_device(device
));
3282 if (dev
->hotkey_dev
) {
3285 result
= hci_write(dev
, HCI_HOTKEY_EVENT
, HCI_HOTKEY_DISABLE
);
3286 if (result
!= TOS_SUCCESS
)
3287 pr_info("Unable to disable hotkeys\n");
3293 static int toshiba_acpi_resume(struct device
*device
)
3295 struct toshiba_acpi_dev
*dev
= acpi_driver_data(to_acpi_device(device
));
3297 if (dev
->hotkey_dev
) {
3298 if (toshiba_acpi_enable_hotkeys(dev
))
3299 pr_info("Unable to re-enable hotkeys\n");
3302 if (dev
->wwan_rfk
) {
3303 if (!toshiba_wireless_status(dev
))
3304 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
3311 static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm
,
3312 toshiba_acpi_suspend
, toshiba_acpi_resume
);
3314 static struct acpi_driver toshiba_acpi_driver
= {
3315 .name
= "Toshiba ACPI driver",
3316 .owner
= THIS_MODULE
,
3317 .ids
= toshiba_device_ids
,
3318 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
3320 .add
= toshiba_acpi_add
,
3321 .remove
= toshiba_acpi_remove
,
3322 .notify
= toshiba_acpi_notify
,
3324 .drv
.pm
= &toshiba_acpi_pm
,
3327 static int __init
toshiba_acpi_init(void)
3331 toshiba_proc_dir
= proc_mkdir(PROC_TOSHIBA
, acpi_root_dir
);
3332 if (!toshiba_proc_dir
) {
3333 pr_err("Unable to create proc dir " PROC_TOSHIBA
"\n");
3337 ret
= acpi_bus_register_driver(&toshiba_acpi_driver
);
3339 pr_err("Failed to register ACPI driver: %d\n", ret
);
3340 remove_proc_entry(PROC_TOSHIBA
, acpi_root_dir
);
3346 static void __exit
toshiba_acpi_exit(void)
3348 acpi_bus_unregister_driver(&toshiba_acpi_driver
);
3349 if (toshiba_proc_dir
)
3350 remove_proc_entry(PROC_TOSHIBA
, acpi_root_dir
);
3353 module_init(toshiba_acpi_init
);
3354 module_exit(toshiba_acpi_exit
);