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/kernel.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/init.h>
30 #include <linux/types.h>
31 #include <linux/proc_fs.h>
32 #include <linux/seq_file.h>
33 #include <linux/backlight.h>
34 #include <linux/input.h>
35 #include <linux/input/sparse-keymap.h>
36 #include <linux/leds.h>
37 #include <linux/slab.h>
38 #include <linux/workqueue.h>
39 #include <linux/i8042.h>
40 #include <linux/acpi.h>
41 #include <linux/dmi.h>
42 #include <linux/uaccess.h>
43 #include <linux/miscdevice.h>
44 #include <linux/rfkill.h>
45 #include <linux/iio/iio.h>
46 #include <linux/toshiba.h>
47 #include <acpi/video.h>
49 MODULE_AUTHOR("John Belmonte");
50 MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
51 MODULE_LICENSE("GPL");
53 #define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
55 /* Scan code for Fn key on TOS1900 models */
56 #define TOS1900_FN_SCAN 0x6e
58 /* Toshiba ACPI method paths */
59 #define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX"
62 * The Toshiba configuration interface is composed of the HCI and the SCI,
63 * which are defined as follows:
65 * HCI is Toshiba's "Hardware Control Interface" which is supposed to
66 * be uniform across all their models. Ideally we would just call
67 * dedicated ACPI methods instead of using this primitive interface.
68 * However the ACPI methods seem to be incomplete in some areas (for
69 * example they allow setting, but not reading, the LCD brightness value),
70 * so this is still useful.
72 * SCI stands for "System Configuration Interface" which aim is to
73 * conceal differences in hardware between different models.
79 #define HCI_SET 0xff00
80 #define HCI_GET 0xfe00
81 #define SCI_OPEN 0xf100
82 #define SCI_CLOSE 0xf200
83 #define SCI_GET 0xf300
84 #define SCI_SET 0xf400
87 #define TOS_SUCCESS 0x0000
88 #define TOS_SUCCESS2 0x0001
89 #define TOS_OPEN_CLOSE_OK 0x0044
90 #define TOS_FAILURE 0x1000
91 #define TOS_NOT_SUPPORTED 0x8000
92 #define TOS_ALREADY_OPEN 0x8100
93 #define TOS_NOT_OPENED 0x8200
94 #define TOS_INPUT_DATA_ERROR 0x8300
95 #define TOS_WRITE_PROTECTED 0x8400
96 #define TOS_NOT_PRESENT 0x8600
97 #define TOS_FIFO_EMPTY 0x8c00
98 #define TOS_DATA_NOT_AVAILABLE 0x8d20
99 #define TOS_NOT_INITIALIZED 0x8d50
100 #define TOS_NOT_INSTALLED 0x8e00
103 #define HCI_FAN 0x0004
104 #define HCI_TR_BACKLIGHT 0x0005
105 #define HCI_SYSTEM_EVENT 0x0016
106 #define HCI_VIDEO_OUT 0x001c
107 #define HCI_HOTKEY_EVENT 0x001e
108 #define HCI_LCD_BRIGHTNESS 0x002a
109 #define HCI_WIRELESS 0x0056
110 #define HCI_ACCELEROMETER 0x006d
111 #define HCI_COOLING_METHOD 0x007f
112 #define HCI_KBD_ILLUMINATION 0x0095
113 #define HCI_ECO_MODE 0x0097
114 #define HCI_ACCELEROMETER2 0x00a6
115 #define HCI_SYSTEM_INFO 0xc000
116 #define SCI_PANEL_POWER_ON 0x010d
117 #define SCI_ILLUMINATION 0x014e
118 #define SCI_USB_SLEEP_CHARGE 0x0150
119 #define SCI_KBD_ILLUM_STATUS 0x015c
120 #define SCI_USB_SLEEP_MUSIC 0x015e
121 #define SCI_USB_THREE 0x0169
122 #define SCI_TOUCHPAD 0x050e
123 #define SCI_KBD_FUNCTION_KEYS 0x0522
125 /* Field definitions */
126 #define HCI_ACCEL_MASK 0x7fff
127 #define HCI_ACCEL_DIRECTION_MASK 0x8000
128 #define HCI_HOTKEY_DISABLE 0x0b
129 #define HCI_HOTKEY_ENABLE 0x09
130 #define HCI_HOTKEY_SPECIAL_FUNCTIONS 0x10
131 #define HCI_LCD_BRIGHTNESS_BITS 3
132 #define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS)
133 #define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS)
134 #define HCI_MISC_SHIFT 0x10
135 #define HCI_SYSTEM_TYPE1 0x10
136 #define HCI_SYSTEM_TYPE2 0x11
137 #define HCI_VIDEO_OUT_LCD 0x1
138 #define HCI_VIDEO_OUT_CRT 0x2
139 #define HCI_VIDEO_OUT_TV 0x4
140 #define SCI_KBD_MODE_MASK 0x1f
141 #define SCI_KBD_MODE_FNZ 0x1
142 #define SCI_KBD_MODE_AUTO 0x2
143 #define SCI_KBD_MODE_ON 0x8
144 #define SCI_KBD_MODE_OFF 0x10
145 #define SCI_KBD_TIME_MAX 0x3c001a
146 #define HCI_WIRELESS_STATUS 0x1
147 #define HCI_WIRELESS_WWAN 0x3
148 #define HCI_WIRELESS_WWAN_STATUS 0x2000
149 #define HCI_WIRELESS_WWAN_POWER 0x4000
150 #define SCI_USB_CHARGE_MODE_MASK 0xff
151 #define SCI_USB_CHARGE_DISABLED 0x00
152 #define SCI_USB_CHARGE_ALTERNATE 0x09
153 #define SCI_USB_CHARGE_TYPICAL 0x11
154 #define SCI_USB_CHARGE_AUTO 0x21
155 #define SCI_USB_CHARGE_BAT_MASK 0x7
156 #define SCI_USB_CHARGE_BAT_LVL_OFF 0x1
157 #define SCI_USB_CHARGE_BAT_LVL_ON 0x4
158 #define SCI_USB_CHARGE_BAT_LVL 0x0200
159 #define SCI_USB_CHARGE_RAPID_DSP 0x0300
161 struct toshiba_acpi_dev
{
162 struct acpi_device
*acpi_dev
;
163 const char *method_hci
;
164 struct input_dev
*hotkey_dev
;
165 struct work_struct hotkey_work
;
166 struct backlight_device
*backlight_dev
;
167 struct led_classdev led_dev
;
168 struct led_classdev kbd_led
;
169 struct led_classdev eco_led
;
170 struct miscdevice miscdev
;
171 struct rfkill
*wwan_rfk
;
172 struct iio_dev
*indio_dev
;
182 int hotkey_event_type
;
183 int max_cooling_method
;
185 unsigned int illumination_supported
:1;
186 unsigned int video_supported
:1;
187 unsigned int fan_supported
:1;
188 unsigned int system_event_supported
:1;
189 unsigned int ntfy_supported
:1;
190 unsigned int info_supported
:1;
191 unsigned int tr_backlight_supported
:1;
192 unsigned int kbd_illum_supported
:1;
193 unsigned int touchpad_supported
:1;
194 unsigned int eco_supported
:1;
195 unsigned int accelerometer_supported
:1;
196 unsigned int usb_sleep_charge_supported
:1;
197 unsigned int usb_rapid_charge_supported
:1;
198 unsigned int usb_sleep_music_supported
:1;
199 unsigned int kbd_function_keys_supported
:1;
200 unsigned int panel_power_on_supported
:1;
201 unsigned int usb_three_supported
:1;
202 unsigned int wwan_supported
:1;
203 unsigned int cooling_method_supported
:1;
204 unsigned int sysfs_created
:1;
205 unsigned int special_functions
;
207 bool kbd_event_generated
;
208 bool kbd_led_registered
;
209 bool illumination_led_registered
;
210 bool eco_led_registered
;
214 static struct toshiba_acpi_dev
*toshiba_acpi
;
216 static bool disable_hotkeys
;
217 module_param(disable_hotkeys
, bool, 0444);
218 MODULE_PARM_DESC(disable_hotkeys
, "Disables the hotkeys activation");
220 static const struct acpi_device_id toshiba_device_ids
[] = {
227 MODULE_DEVICE_TABLE(acpi
, toshiba_device_ids
);
229 static const struct key_entry toshiba_acpi_keymap
[] = {
230 { KE_KEY
, 0x9e, { KEY_RFKILL
} },
231 { KE_KEY
, 0x101, { KEY_MUTE
} },
232 { KE_KEY
, 0x102, { KEY_ZOOMOUT
} },
233 { KE_KEY
, 0x103, { KEY_ZOOMIN
} },
234 { KE_KEY
, 0x10f, { KEY_TAB
} },
235 { KE_KEY
, 0x12c, { KEY_KBDILLUMTOGGLE
} },
236 { KE_KEY
, 0x139, { KEY_ZOOMRESET
} },
237 { KE_KEY
, 0x13b, { KEY_COFFEE
} },
238 { KE_KEY
, 0x13c, { KEY_BATTERY
} },
239 { KE_KEY
, 0x13d, { KEY_SLEEP
} },
240 { KE_KEY
, 0x13e, { KEY_SUSPEND
} },
241 { KE_KEY
, 0x13f, { KEY_SWITCHVIDEOMODE
} },
242 { KE_KEY
, 0x140, { KEY_BRIGHTNESSDOWN
} },
243 { KE_KEY
, 0x141, { KEY_BRIGHTNESSUP
} },
244 { KE_KEY
, 0x142, { KEY_WLAN
} },
245 { KE_KEY
, 0x143, { KEY_TOUCHPAD_TOGGLE
} },
246 { KE_KEY
, 0x17f, { KEY_FN
} },
247 { KE_KEY
, 0xb05, { KEY_PROG2
} },
248 { KE_KEY
, 0xb06, { KEY_WWW
} },
249 { KE_KEY
, 0xb07, { KEY_MAIL
} },
250 { KE_KEY
, 0xb30, { KEY_STOP
} },
251 { KE_KEY
, 0xb31, { KEY_PREVIOUSSONG
} },
252 { KE_KEY
, 0xb32, { KEY_NEXTSONG
} },
253 { KE_KEY
, 0xb33, { KEY_PLAYPAUSE
} },
254 { KE_KEY
, 0xb5a, { KEY_MEDIA
} },
255 { KE_IGNORE
, 0x1430, { KEY_RESERVED
} }, /* Wake from sleep */
256 { KE_IGNORE
, 0x1501, { KEY_RESERVED
} }, /* Output changed */
257 { KE_IGNORE
, 0x1502, { KEY_RESERVED
} }, /* HDMI plugged/unplugged */
258 { KE_IGNORE
, 0x1ABE, { KEY_RESERVED
} }, /* Protection level set */
259 { KE_IGNORE
, 0x1ABF, { KEY_RESERVED
} }, /* Protection level off */
263 static const struct key_entry toshiba_acpi_alt_keymap
[] = {
264 { KE_KEY
, 0x102, { KEY_ZOOMOUT
} },
265 { KE_KEY
, 0x103, { KEY_ZOOMIN
} },
266 { KE_KEY
, 0x12c, { KEY_KBDILLUMTOGGLE
} },
267 { KE_KEY
, 0x139, { KEY_ZOOMRESET
} },
268 { KE_KEY
, 0x13c, { KEY_BRIGHTNESSDOWN
} },
269 { KE_KEY
, 0x13d, { KEY_BRIGHTNESSUP
} },
270 { KE_KEY
, 0x13e, { KEY_SWITCHVIDEOMODE
} },
271 { KE_KEY
, 0x13f, { KEY_TOUCHPAD_TOGGLE
} },
272 { KE_KEY
, 0x157, { KEY_MUTE
} },
273 { KE_KEY
, 0x158, { KEY_WLAN
} },
278 * List of models which have a broken acpi-video backlight interface and thus
279 * need to use the toshiba (vendor) interface instead.
281 static const struct dmi_system_id toshiba_vendor_backlight_dmi
[] = {
289 static inline void _set_bit(u32
*word
, u32 mask
, int value
)
291 *word
= (*word
& ~mask
) | (mask
* value
);
295 * ACPI interface wrappers
298 static int write_acpi_int(const char *methodName
, int val
)
302 status
= acpi_execute_simple_method(NULL
, (char *)methodName
, val
);
303 return (status
== AE_OK
) ? 0 : -EIO
;
307 * Perform a raw configuration call. Here we don't care about input or output
310 static acpi_status
tci_raw(struct toshiba_acpi_dev
*dev
,
311 const u32 in
[TCI_WORDS
], u32 out
[TCI_WORDS
])
313 union acpi_object in_objs
[TCI_WORDS
], out_objs
[TCI_WORDS
+ 1];
314 struct acpi_object_list params
;
315 struct acpi_buffer results
;
319 params
.count
= TCI_WORDS
;
320 params
.pointer
= in_objs
;
321 for (i
= 0; i
< TCI_WORDS
; ++i
) {
322 in_objs
[i
].type
= ACPI_TYPE_INTEGER
;
323 in_objs
[i
].integer
.value
= in
[i
];
326 results
.length
= sizeof(out_objs
);
327 results
.pointer
= out_objs
;
329 status
= acpi_evaluate_object(dev
->acpi_dev
->handle
,
330 (char *)dev
->method_hci
, ¶ms
,
332 if ((status
== AE_OK
) && (out_objs
->package
.count
<= TCI_WORDS
)) {
333 for (i
= 0; i
< out_objs
->package
.count
; ++i
)
334 out
[i
] = out_objs
->package
.elements
[i
].integer
.value
;
343 * In addition to the ACPI status, the HCI system returns a result which
344 * may be useful (such as "not supported").
347 static u32
hci_write(struct toshiba_acpi_dev
*dev
, u32 reg
, u32 in1
)
349 u32 in
[TCI_WORDS
] = { HCI_SET
, reg
, in1
, 0, 0, 0 };
351 acpi_status status
= tci_raw(dev
, in
, out
);
353 return ACPI_SUCCESS(status
) ? out
[0] : TOS_FAILURE
;
356 static u32
hci_read(struct toshiba_acpi_dev
*dev
, u32 reg
, u32
*out1
)
358 u32 in
[TCI_WORDS
] = { HCI_GET
, reg
, 0, 0, 0, 0 };
360 acpi_status status
= tci_raw(dev
, in
, out
);
362 if (ACPI_FAILURE(status
))
374 static int sci_open(struct toshiba_acpi_dev
*dev
)
376 u32 in
[TCI_WORDS
] = { SCI_OPEN
, 0, 0, 0, 0, 0 };
378 acpi_status status
= tci_raw(dev
, in
, out
);
380 if (ACPI_FAILURE(status
)) {
381 pr_err("ACPI call to open SCI failed\n");
385 if (out
[0] == TOS_OPEN_CLOSE_OK
) {
387 } else if (out
[0] == TOS_ALREADY_OPEN
) {
388 pr_info("Toshiba SCI already opened\n");
390 } else if (out
[0] == TOS_NOT_SUPPORTED
) {
392 * Some BIOSes do not have the SCI open/close functions
393 * implemented and return 0x8000 (Not Supported), failing to
394 * register some supported features.
396 * Simply return 1 if we hit those affected laptops to make the
397 * supported features work.
399 * In the case that some laptops really do not support the SCI,
400 * all the SCI dependent functions check for TOS_NOT_SUPPORTED,
401 * and thus, not registering support for the queried feature.
404 } else if (out
[0] == TOS_NOT_PRESENT
) {
405 pr_info("Toshiba SCI is not present\n");
411 static void sci_close(struct toshiba_acpi_dev
*dev
)
413 u32 in
[TCI_WORDS
] = { SCI_CLOSE
, 0, 0, 0, 0, 0 };
415 acpi_status status
= tci_raw(dev
, in
, out
);
417 if (ACPI_FAILURE(status
)) {
418 pr_err("ACPI call to close SCI failed\n");
422 if (out
[0] == TOS_OPEN_CLOSE_OK
)
424 else if (out
[0] == TOS_NOT_OPENED
)
425 pr_info("Toshiba SCI not opened\n");
426 else if (out
[0] == TOS_NOT_PRESENT
)
427 pr_info("Toshiba SCI is not present\n");
430 static u32
sci_read(struct toshiba_acpi_dev
*dev
, u32 reg
, u32
*out1
)
432 u32 in
[TCI_WORDS
] = { SCI_GET
, reg
, 0, 0, 0, 0 };
434 acpi_status status
= tci_raw(dev
, in
, out
);
436 if (ACPI_FAILURE(status
))
444 static u32
sci_write(struct toshiba_acpi_dev
*dev
, u32 reg
, u32 in1
)
446 u32 in
[TCI_WORDS
] = { SCI_SET
, reg
, in1
, 0, 0, 0 };
448 acpi_status status
= tci_raw(dev
, in
, out
);
450 return ACPI_SUCCESS(status
) ? out
[0] : TOS_FAILURE
;
453 /* Illumination support */
454 static void toshiba_illumination_available(struct toshiba_acpi_dev
*dev
)
456 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_ILLUMINATION
, 0, 0, 0, 0 };
460 dev
->illumination_supported
= 0;
461 dev
->illumination_led_registered
= false;
466 status
= tci_raw(dev
, in
, out
);
468 if (ACPI_FAILURE(status
)) {
469 pr_err("ACPI call to query Illumination support failed\n");
473 if (out
[0] != TOS_SUCCESS
)
476 dev
->illumination_supported
= 1;
479 static void toshiba_illumination_set(struct led_classdev
*cdev
,
480 enum led_brightness brightness
)
482 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
483 struct toshiba_acpi_dev
, led_dev
);
487 /* First request : initialize communication. */
491 /* Switch the illumination on/off */
492 state
= brightness
? 1 : 0;
493 result
= sci_write(dev
, SCI_ILLUMINATION
, state
);
495 if (result
== TOS_FAILURE
)
496 pr_err("ACPI call for illumination failed\n");
499 static enum led_brightness
toshiba_illumination_get(struct led_classdev
*cdev
)
501 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
502 struct toshiba_acpi_dev
, led_dev
);
506 /* First request : initialize communication. */
510 /* Check the illumination */
511 result
= sci_read(dev
, SCI_ILLUMINATION
, &state
);
513 if (result
== TOS_FAILURE
) {
514 pr_err("ACPI call for illumination failed\n");
516 } else if (result
!= TOS_SUCCESS
) {
520 return state
? LED_FULL
: LED_OFF
;
523 /* KBD Illumination */
524 static void toshiba_kbd_illum_available(struct toshiba_acpi_dev
*dev
)
526 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_KBD_ILLUM_STATUS
, 0, 0, 0, 0 };
530 dev
->kbd_illum_supported
= 0;
531 dev
->kbd_led_registered
= false;
532 dev
->kbd_event_generated
= false;
537 status
= tci_raw(dev
, in
, out
);
539 if (ACPI_FAILURE(status
)) {
540 pr_err("ACPI call to query kbd illumination support failed\n");
544 if (out
[0] != TOS_SUCCESS
)
548 * Check for keyboard backlight timeout max value,
549 * previous kbd backlight implementation set this to
550 * 0x3c0003, and now the new implementation set this
551 * to 0x3c001a, use this to distinguish between them.
553 if (out
[3] == SCI_KBD_TIME_MAX
)
557 /* Get the current keyboard backlight mode */
558 dev
->kbd_mode
= out
[2] & SCI_KBD_MODE_MASK
;
559 /* Get the current time (1-60 seconds) */
560 dev
->kbd_time
= out
[2] >> HCI_MISC_SHIFT
;
561 /* Flag as supported */
562 dev
->kbd_illum_supported
= 1;
565 static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev
*dev
, u32 time
)
572 result
= sci_write(dev
, SCI_KBD_ILLUM_STATUS
, time
);
574 if (result
== TOS_FAILURE
)
575 pr_err("ACPI call to set KBD backlight status failed\n");
576 else if (result
== TOS_NOT_SUPPORTED
)
579 return result
== TOS_SUCCESS
? 0 : -EIO
;
582 static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev
*dev
, u32
*time
)
589 result
= sci_read(dev
, SCI_KBD_ILLUM_STATUS
, time
);
591 if (result
== TOS_FAILURE
)
592 pr_err("ACPI call to get KBD backlight status failed\n");
593 else if (result
== TOS_NOT_SUPPORTED
)
596 return result
== TOS_SUCCESS
? 0 : -EIO
;
599 static enum led_brightness
toshiba_kbd_backlight_get(struct led_classdev
*cdev
)
601 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
602 struct toshiba_acpi_dev
, kbd_led
);
606 /* Check the keyboard backlight state */
607 result
= hci_read(dev
, HCI_KBD_ILLUMINATION
, &state
);
608 if (result
== TOS_FAILURE
) {
609 pr_err("ACPI call to get the keyboard backlight failed\n");
611 } else if (result
!= TOS_SUCCESS
) {
615 return state
? LED_FULL
: LED_OFF
;
618 static void toshiba_kbd_backlight_set(struct led_classdev
*cdev
,
619 enum led_brightness brightness
)
621 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
622 struct toshiba_acpi_dev
, kbd_led
);
626 /* Set the keyboard backlight state */
627 state
= brightness
? 1 : 0;
628 result
= hci_write(dev
, HCI_KBD_ILLUMINATION
, state
);
629 if (result
== TOS_FAILURE
)
630 pr_err("ACPI call to set KBD Illumination mode failed\n");
633 /* TouchPad support */
634 static int toshiba_touchpad_set(struct toshiba_acpi_dev
*dev
, u32 state
)
641 result
= sci_write(dev
, SCI_TOUCHPAD
, state
);
643 if (result
== TOS_FAILURE
)
644 pr_err("ACPI call to set the touchpad failed\n");
645 else if (result
== TOS_NOT_SUPPORTED
)
648 return result
== TOS_SUCCESS
? 0 : -EIO
;
651 static int toshiba_touchpad_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
658 result
= sci_read(dev
, SCI_TOUCHPAD
, state
);
660 if (result
== TOS_FAILURE
)
661 pr_err("ACPI call to query the touchpad failed\n");
662 else if (result
== TOS_NOT_SUPPORTED
)
665 return result
== TOS_SUCCESS
? 0 : -EIO
;
668 /* Eco Mode support */
669 static void toshiba_eco_mode_available(struct toshiba_acpi_dev
*dev
)
671 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ECO_MODE
, 0, 0, 0, 0 };
675 dev
->eco_supported
= 0;
676 dev
->eco_led_registered
= false;
678 status
= tci_raw(dev
, in
, out
);
679 if (ACPI_FAILURE(status
)) {
680 pr_err("ACPI call to get ECO led failed\n");
684 if (out
[0] == TOS_INPUT_DATA_ERROR
) {
686 * If we receive 0x8300 (Input Data Error), it means that the
687 * LED device is present, but that we just screwed the input
690 * Let's query the status of the LED to see if we really have a
691 * success response, indicating the actual presense of the LED,
692 * bail out otherwise.
695 status
= tci_raw(dev
, in
, out
);
696 if (ACPI_FAILURE(status
)) {
697 pr_err("ACPI call to get ECO led failed\n");
701 if (out
[0] != TOS_SUCCESS
)
704 dev
->eco_supported
= 1;
708 static enum led_brightness
709 toshiba_eco_mode_get_status(struct led_classdev
*cdev
)
711 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
712 struct toshiba_acpi_dev
, eco_led
);
713 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ECO_MODE
, 0, 1, 0, 0 };
717 status
= tci_raw(dev
, in
, out
);
718 if (ACPI_FAILURE(status
)) {
719 pr_err("ACPI call to get ECO led failed\n");
723 if (out
[0] != TOS_SUCCESS
)
726 return out
[2] ? LED_FULL
: LED_OFF
;
729 static void toshiba_eco_mode_set_status(struct led_classdev
*cdev
,
730 enum led_brightness brightness
)
732 struct toshiba_acpi_dev
*dev
= container_of(cdev
,
733 struct toshiba_acpi_dev
, eco_led
);
734 u32 in
[TCI_WORDS
] = { HCI_SET
, HCI_ECO_MODE
, 0, 1, 0, 0 };
738 /* Switch the Eco Mode led on/off */
739 in
[2] = (brightness
) ? 1 : 0;
740 status
= tci_raw(dev
, in
, out
);
741 if (ACPI_FAILURE(status
))
742 pr_err("ACPI call to set ECO led failed\n");
745 /* Accelerometer support */
746 static void toshiba_accelerometer_available(struct toshiba_acpi_dev
*dev
)
748 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ACCELEROMETER2
, 0, 0, 0, 0 };
752 dev
->accelerometer_supported
= 0;
755 * Check if the accelerometer call exists,
756 * this call also serves as initialization
758 status
= tci_raw(dev
, in
, out
);
759 if (ACPI_FAILURE(status
)) {
760 pr_err("ACPI call to query the accelerometer failed\n");
764 if (out
[0] != TOS_SUCCESS
)
767 dev
->accelerometer_supported
= 1;
770 static int toshiba_accelerometer_get(struct toshiba_acpi_dev
*dev
,
773 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_ACCELEROMETER
, 0, 1, 0, 0 };
777 /* Check the Accelerometer status */
778 status
= tci_raw(dev
, in
, out
);
779 if (ACPI_FAILURE(status
)) {
780 pr_err("ACPI call to query the accelerometer failed\n");
784 if (out
[0] == TOS_NOT_SUPPORTED
)
787 if (out
[0] != TOS_SUCCESS
)
796 /* Sleep (Charge and Music) utilities support */
797 static void toshiba_usb_sleep_charge_available(struct toshiba_acpi_dev
*dev
)
799 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
803 dev
->usb_sleep_charge_supported
= 0;
808 status
= tci_raw(dev
, in
, out
);
809 if (ACPI_FAILURE(status
)) {
810 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
815 if (out
[0] != TOS_SUCCESS
) {
820 dev
->usbsc_mode_base
= out
[4];
822 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
823 status
= tci_raw(dev
, in
, out
);
825 if (ACPI_FAILURE(status
)) {
826 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
830 if (out
[0] != TOS_SUCCESS
)
833 dev
->usbsc_bat_level
= out
[2];
834 /* Flag as supported */
835 dev
->usb_sleep_charge_supported
= 1;
838 static int toshiba_usb_sleep_charge_get(struct toshiba_acpi_dev
*dev
,
846 result
= sci_read(dev
, SCI_USB_SLEEP_CHARGE
, mode
);
848 if (result
== TOS_FAILURE
)
849 pr_err("ACPI call to set USB S&C mode failed\n");
850 else if (result
== TOS_NOT_SUPPORTED
)
853 return result
== TOS_SUCCESS
? 0 : -EIO
;
856 static int toshiba_usb_sleep_charge_set(struct toshiba_acpi_dev
*dev
,
864 result
= sci_write(dev
, SCI_USB_SLEEP_CHARGE
, mode
);
866 if (result
== TOS_FAILURE
)
867 pr_err("ACPI call to set USB S&C mode failed\n");
868 else if (result
== TOS_NOT_SUPPORTED
)
871 return result
== TOS_SUCCESS
? 0 : -EIO
;
874 static int toshiba_sleep_functions_status_get(struct toshiba_acpi_dev
*dev
,
877 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
884 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
885 status
= tci_raw(dev
, in
, out
);
887 if (ACPI_FAILURE(status
)) {
888 pr_err("ACPI call to get USB S&C battery level failed\n");
892 if (out
[0] == TOS_NOT_SUPPORTED
)
895 if (out
[0] != TOS_SUCCESS
)
904 static int toshiba_sleep_functions_status_set(struct toshiba_acpi_dev
*dev
,
907 u32 in
[TCI_WORDS
] = { SCI_SET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
915 in
[5] = SCI_USB_CHARGE_BAT_LVL
;
916 status
= tci_raw(dev
, in
, out
);
918 if (ACPI_FAILURE(status
)) {
919 pr_err("ACPI call to set USB S&C battery level failed\n");
923 if (out
[0] == TOS_NOT_SUPPORTED
)
926 return out
[0] == TOS_SUCCESS
? 0 : -EIO
;
929 static int toshiba_usb_rapid_charge_get(struct toshiba_acpi_dev
*dev
,
932 u32 in
[TCI_WORDS
] = { SCI_GET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
939 in
[5] = SCI_USB_CHARGE_RAPID_DSP
;
940 status
= tci_raw(dev
, in
, out
);
942 if (ACPI_FAILURE(status
)) {
943 pr_err("ACPI call to get USB Rapid Charge failed\n");
947 if (out
[0] == TOS_NOT_SUPPORTED
)
950 if (out
[0] != TOS_SUCCESS
&& out
[0] != TOS_SUCCESS2
)
958 static int toshiba_usb_rapid_charge_set(struct toshiba_acpi_dev
*dev
,
961 u32 in
[TCI_WORDS
] = { SCI_SET
, SCI_USB_SLEEP_CHARGE
, 0, 0, 0, 0 };
969 in
[5] = SCI_USB_CHARGE_RAPID_DSP
;
970 status
= tci_raw(dev
, in
, out
);
972 if (ACPI_FAILURE(status
)) {
973 pr_err("ACPI call to set USB Rapid Charge failed\n");
977 if (out
[0] == TOS_NOT_SUPPORTED
)
980 return (out
[0] == TOS_SUCCESS
|| out
[0] == TOS_SUCCESS2
) ? 0 : -EIO
;
983 static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
990 result
= sci_read(dev
, SCI_USB_SLEEP_MUSIC
, state
);
992 if (result
== TOS_FAILURE
)
993 pr_err("ACPI call to get Sleep and Music failed\n");
994 else if (result
== TOS_NOT_SUPPORTED
)
997 return result
== TOS_SUCCESS
? 0 : -EIO
;
1000 static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1007 result
= sci_write(dev
, SCI_USB_SLEEP_MUSIC
, state
);
1009 if (result
== TOS_FAILURE
)
1010 pr_err("ACPI call to set Sleep and Music failed\n");
1011 else if (result
== TOS_NOT_SUPPORTED
)
1014 return result
== TOS_SUCCESS
? 0 : -EIO
;
1017 /* Keyboard function keys */
1018 static int toshiba_function_keys_get(struct toshiba_acpi_dev
*dev
, u32
*mode
)
1025 result
= sci_read(dev
, SCI_KBD_FUNCTION_KEYS
, mode
);
1027 if (result
== TOS_FAILURE
)
1028 pr_err("ACPI call to get KBD function keys failed\n");
1029 else if (result
== TOS_NOT_SUPPORTED
)
1032 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1035 static int toshiba_function_keys_set(struct toshiba_acpi_dev
*dev
, u32 mode
)
1042 result
= sci_write(dev
, SCI_KBD_FUNCTION_KEYS
, mode
);
1044 if (result
== TOS_FAILURE
)
1045 pr_err("ACPI call to set KBD function keys failed\n");
1046 else if (result
== TOS_NOT_SUPPORTED
)
1049 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1052 /* Panel Power ON */
1053 static int toshiba_panel_power_on_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1060 result
= sci_read(dev
, SCI_PANEL_POWER_ON
, state
);
1062 if (result
== TOS_FAILURE
)
1063 pr_err("ACPI call to get Panel Power ON failed\n");
1064 else if (result
== TOS_NOT_SUPPORTED
)
1067 return result
== TOS_SUCCESS
? 0 : -EIO
;
1070 static int toshiba_panel_power_on_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1077 result
= sci_write(dev
, SCI_PANEL_POWER_ON
, state
);
1079 if (result
== TOS_FAILURE
)
1080 pr_err("ACPI call to set Panel Power ON failed\n");
1081 else if (result
== TOS_NOT_SUPPORTED
)
1084 return result
== TOS_SUCCESS
? 0 : -EIO
;
1088 static int toshiba_usb_three_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1095 result
= sci_read(dev
, SCI_USB_THREE
, state
);
1097 if (result
== TOS_FAILURE
)
1098 pr_err("ACPI call to get USB 3 failed\n");
1099 else if (result
== TOS_NOT_SUPPORTED
)
1102 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1105 static int toshiba_usb_three_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1112 result
= sci_write(dev
, SCI_USB_THREE
, state
);
1114 if (result
== TOS_FAILURE
)
1115 pr_err("ACPI call to set USB 3 failed\n");
1116 else if (result
== TOS_NOT_SUPPORTED
)
1119 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1122 /* Hotkey Event type */
1123 static int toshiba_hotkey_event_type_get(struct toshiba_acpi_dev
*dev
,
1126 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_SYSTEM_INFO
, 0x03, 0, 0, 0 };
1130 status
= tci_raw(dev
, in
, out
);
1131 if (ACPI_FAILURE(status
)) {
1132 pr_err("ACPI call to get System type failed\n");
1136 if (out
[0] == TOS_NOT_SUPPORTED
)
1139 if (out
[0] != TOS_SUCCESS
)
1147 /* Wireless status (RFKill, WLAN, BT, WWAN) */
1148 static int toshiba_wireless_status(struct toshiba_acpi_dev
*dev
)
1150 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_WIRELESS
, 0, 0, 0, 0 };
1154 in
[3] = HCI_WIRELESS_STATUS
;
1155 status
= tci_raw(dev
, in
, out
);
1157 if (ACPI_FAILURE(status
)) {
1158 pr_err("ACPI call to get Wireless status failed\n");
1162 if (out
[0] == TOS_NOT_SUPPORTED
)
1165 if (out
[0] != TOS_SUCCESS
)
1168 dev
->killswitch
= !!(out
[2] & HCI_WIRELESS_STATUS
);
1174 static void toshiba_wwan_available(struct toshiba_acpi_dev
*dev
)
1176 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_WIRELESS
, 0, 0, 0, 0 };
1180 dev
->wwan_supported
= 0;
1183 * WWAN support can be queried by setting the in[3] value to
1184 * HCI_WIRELESS_WWAN (0x03).
1186 * If supported, out[0] contains TOS_SUCCESS and out[2] contains
1187 * HCI_WIRELESS_WWAN_STATUS (0x2000).
1189 * If not supported, out[0] contains TOS_INPUT_DATA_ERROR (0x8300)
1190 * or TOS_NOT_SUPPORTED (0x8000).
1192 in
[3] = HCI_WIRELESS_WWAN
;
1193 status
= tci_raw(dev
, in
, out
);
1194 if (ACPI_FAILURE(status
)) {
1195 pr_err("ACPI call to get WWAN status failed\n");
1199 if (out
[0] != TOS_SUCCESS
)
1202 dev
->wwan_supported
= (out
[2] == HCI_WIRELESS_WWAN_STATUS
);
1205 static int toshiba_wwan_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1207 u32 in
[TCI_WORDS
] = { HCI_SET
, HCI_WIRELESS
, state
, 0, 0, 0 };
1211 in
[3] = HCI_WIRELESS_WWAN_STATUS
;
1212 status
= tci_raw(dev
, in
, out
);
1213 if (ACPI_FAILURE(status
)) {
1214 pr_err("ACPI call to set WWAN status failed\n");
1218 if (out
[0] == TOS_NOT_SUPPORTED
)
1221 if (out
[0] != TOS_SUCCESS
)
1225 * Some devices only need to call HCI_WIRELESS_WWAN_STATUS to
1226 * (de)activate the device, but some others need the
1227 * HCI_WIRELESS_WWAN_POWER call as well.
1229 in
[3] = HCI_WIRELESS_WWAN_POWER
;
1230 status
= tci_raw(dev
, in
, out
);
1231 if (ACPI_FAILURE(status
)) {
1232 pr_err("ACPI call to set WWAN power failed\n");
1236 if (out
[0] == TOS_NOT_SUPPORTED
)
1239 return out
[0] == TOS_SUCCESS
? 0 : -EIO
;
1242 /* Cooling Method */
1243 static void toshiba_cooling_method_available(struct toshiba_acpi_dev
*dev
)
1245 u32 in
[TCI_WORDS
] = { HCI_GET
, HCI_COOLING_METHOD
, 0, 0, 0, 0 };
1249 dev
->cooling_method_supported
= 0;
1250 dev
->max_cooling_method
= 0;
1252 status
= tci_raw(dev
, in
, out
);
1253 if (ACPI_FAILURE(status
)) {
1254 pr_err("ACPI call to get Cooling Method failed\n");
1258 if (out
[0] != TOS_SUCCESS
&& out
[0] != TOS_SUCCESS2
)
1261 dev
->cooling_method_supported
= 1;
1262 dev
->max_cooling_method
= out
[3];
1265 static int toshiba_cooling_method_get(struct toshiba_acpi_dev
*dev
, u32
*state
)
1267 u32 result
= hci_read(dev
, HCI_COOLING_METHOD
, state
);
1269 if (result
== TOS_FAILURE
)
1270 pr_err("ACPI call to get Cooling Method failed\n");
1272 if (result
== TOS_NOT_SUPPORTED
)
1275 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1278 static int toshiba_cooling_method_set(struct toshiba_acpi_dev
*dev
, u32 state
)
1280 u32 result
= hci_write(dev
, HCI_COOLING_METHOD
, state
);
1282 if (result
== TOS_FAILURE
)
1283 pr_err("ACPI call to set Cooling Method failed\n");
1285 if (result
== TOS_NOT_SUPPORTED
)
1288 return (result
== TOS_SUCCESS
|| result
== TOS_SUCCESS2
) ? 0 : -EIO
;
1291 /* Transflective Backlight */
1292 static int get_tr_backlight_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1294 u32 result
= hci_read(dev
, HCI_TR_BACKLIGHT
, status
);
1296 if (result
== TOS_FAILURE
)
1297 pr_err("ACPI call to get Transflective Backlight failed\n");
1298 else if (result
== TOS_NOT_SUPPORTED
)
1301 return result
== TOS_SUCCESS
? 0 : -EIO
;
1304 static int set_tr_backlight_status(struct toshiba_acpi_dev
*dev
, u32 status
)
1306 u32 result
= hci_write(dev
, HCI_TR_BACKLIGHT
, !status
);
1308 if (result
== TOS_FAILURE
)
1309 pr_err("ACPI call to set Transflective Backlight failed\n");
1310 else if (result
== TOS_NOT_SUPPORTED
)
1313 return result
== TOS_SUCCESS
? 0 : -EIO
;
1316 static struct proc_dir_entry
*toshiba_proc_dir
;
1318 /* LCD Brightness */
1319 static int __get_lcd_brightness(struct toshiba_acpi_dev
*dev
)
1325 if (dev
->tr_backlight_supported
) {
1326 int ret
= get_tr_backlight_status(dev
, &value
);
1335 result
= hci_read(dev
, HCI_LCD_BRIGHTNESS
, &value
);
1336 if (result
== TOS_FAILURE
)
1337 pr_err("ACPI call to get LCD Brightness failed\n");
1338 else if (result
== TOS_NOT_SUPPORTED
)
1341 return result
== TOS_SUCCESS
?
1342 brightness
+ (value
>> HCI_LCD_BRIGHTNESS_SHIFT
) :
1346 static int get_lcd_brightness(struct backlight_device
*bd
)
1348 struct toshiba_acpi_dev
*dev
= bl_get_data(bd
);
1350 return __get_lcd_brightness(dev
);
1353 static int lcd_proc_show(struct seq_file
*m
, void *v
)
1355 struct toshiba_acpi_dev
*dev
= m
->private;
1359 if (!dev
->backlight_dev
)
1362 levels
= dev
->backlight_dev
->props
.max_brightness
+ 1;
1363 value
= get_lcd_brightness(dev
->backlight_dev
);
1365 pr_err("Error reading LCD brightness\n");
1369 seq_printf(m
, "brightness: %d\n", value
);
1370 seq_printf(m
, "brightness_levels: %d\n", levels
);
1375 static int lcd_proc_open(struct inode
*inode
, struct file
*file
)
1377 return single_open(file
, lcd_proc_show
, PDE_DATA(inode
));
1380 static int set_lcd_brightness(struct toshiba_acpi_dev
*dev
, int value
)
1384 if (dev
->tr_backlight_supported
) {
1385 int ret
= set_tr_backlight_status(dev
, !value
);
1393 value
= value
<< HCI_LCD_BRIGHTNESS_SHIFT
;
1394 result
= hci_write(dev
, HCI_LCD_BRIGHTNESS
, value
);
1395 if (result
== TOS_FAILURE
)
1396 pr_err("ACPI call to set LCD Brightness failed\n");
1397 else if (result
== TOS_NOT_SUPPORTED
)
1400 return result
== TOS_SUCCESS
? 0 : -EIO
;
1403 static int set_lcd_status(struct backlight_device
*bd
)
1405 struct toshiba_acpi_dev
*dev
= bl_get_data(bd
);
1407 return set_lcd_brightness(dev
, bd
->props
.brightness
);
1410 static ssize_t
lcd_proc_write(struct file
*file
, const char __user
*buf
,
1411 size_t count
, loff_t
*pos
)
1413 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1419 len
= min(count
, sizeof(cmd
) - 1);
1420 if (copy_from_user(cmd
, buf
, len
))
1424 levels
= dev
->backlight_dev
->props
.max_brightness
+ 1;
1425 if (sscanf(cmd
, " brightness : %i", &value
) != 1 &&
1426 value
< 0 && value
> levels
)
1429 if (set_lcd_brightness(dev
, value
))
1435 static const struct proc_ops lcd_proc_ops
= {
1436 .proc_open
= lcd_proc_open
,
1437 .proc_read
= seq_read
,
1438 .proc_lseek
= seq_lseek
,
1439 .proc_release
= single_release
,
1440 .proc_write
= lcd_proc_write
,
1444 static int get_video_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1446 u32 result
= hci_read(dev
, HCI_VIDEO_OUT
, status
);
1448 if (result
== TOS_FAILURE
)
1449 pr_err("ACPI call to get Video-Out failed\n");
1450 else if (result
== TOS_NOT_SUPPORTED
)
1453 return result
== TOS_SUCCESS
? 0 : -EIO
;
1456 static int video_proc_show(struct seq_file
*m
, void *v
)
1458 struct toshiba_acpi_dev
*dev
= m
->private;
1459 int is_lcd
, is_crt
, is_tv
;
1462 if (get_video_status(dev
, &value
))
1465 is_lcd
= (value
& HCI_VIDEO_OUT_LCD
) ? 1 : 0;
1466 is_crt
= (value
& HCI_VIDEO_OUT_CRT
) ? 1 : 0;
1467 is_tv
= (value
& HCI_VIDEO_OUT_TV
) ? 1 : 0;
1469 seq_printf(m
, "lcd_out: %d\n", is_lcd
);
1470 seq_printf(m
, "crt_out: %d\n", is_crt
);
1471 seq_printf(m
, "tv_out: %d\n", is_tv
);
1476 static int video_proc_open(struct inode
*inode
, struct file
*file
)
1478 return single_open(file
, video_proc_show
, PDE_DATA(inode
));
1481 static ssize_t
video_proc_write(struct file
*file
, const char __user
*buf
,
1482 size_t count
, loff_t
*pos
)
1484 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1487 int lcd_out
, crt_out
, tv_out
;
1493 cmd
= memdup_user_nul(buf
, count
);
1495 return PTR_ERR(cmd
);
1500 * Scan expression. Multiple expressions may be delimited with ;
1501 * NOTE: To keep scanning simple, invalid fields are ignored.
1504 if (sscanf(buffer
, " lcd_out : %i", &value
) == 1)
1505 lcd_out
= value
& 1;
1506 else if (sscanf(buffer
, " crt_out : %i", &value
) == 1)
1507 crt_out
= value
& 1;
1508 else if (sscanf(buffer
, " tv_out : %i", &value
) == 1)
1510 /* Advance to one character past the next ; */
1514 } while (remain
&& *(buffer
- 1) != ';');
1519 lcd_out
= crt_out
= tv_out
= -1;
1520 ret
= get_video_status(dev
, &video_out
);
1522 unsigned int new_video_out
= video_out
;
1525 _set_bit(&new_video_out
, HCI_VIDEO_OUT_LCD
, lcd_out
);
1527 _set_bit(&new_video_out
, HCI_VIDEO_OUT_CRT
, crt_out
);
1529 _set_bit(&new_video_out
, HCI_VIDEO_OUT_TV
, tv_out
);
1531 * To avoid unnecessary video disruption, only write the new
1532 * video setting if something changed.
1534 if (new_video_out
!= video_out
)
1535 ret
= write_acpi_int(METHOD_VIDEO_OUT
, new_video_out
);
1538 return ret
? -EIO
: count
;
1541 static const struct proc_ops video_proc_ops
= {
1542 .proc_open
= video_proc_open
,
1543 .proc_read
= seq_read
,
1544 .proc_lseek
= seq_lseek
,
1545 .proc_release
= single_release
,
1546 .proc_write
= video_proc_write
,
1550 static int get_fan_status(struct toshiba_acpi_dev
*dev
, u32
*status
)
1552 u32 result
= hci_read(dev
, HCI_FAN
, status
);
1554 if (result
== TOS_FAILURE
)
1555 pr_err("ACPI call to get Fan status failed\n");
1556 else if (result
== TOS_NOT_SUPPORTED
)
1559 return result
== TOS_SUCCESS
? 0 : -EIO
;
1562 static int set_fan_status(struct toshiba_acpi_dev
*dev
, u32 status
)
1564 u32 result
= hci_write(dev
, HCI_FAN
, status
);
1566 if (result
== TOS_FAILURE
)
1567 pr_err("ACPI call to set Fan status failed\n");
1568 else if (result
== TOS_NOT_SUPPORTED
)
1571 return result
== TOS_SUCCESS
? 0 : -EIO
;
1574 static int fan_proc_show(struct seq_file
*m
, void *v
)
1576 struct toshiba_acpi_dev
*dev
= m
->private;
1579 if (get_fan_status(dev
, &value
))
1582 seq_printf(m
, "running: %d\n", (value
> 0));
1583 seq_printf(m
, "force_on: %d\n", dev
->force_fan
);
1588 static int fan_proc_open(struct inode
*inode
, struct file
*file
)
1590 return single_open(file
, fan_proc_show
, PDE_DATA(inode
));
1593 static ssize_t
fan_proc_write(struct file
*file
, const char __user
*buf
,
1594 size_t count
, loff_t
*pos
)
1596 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1601 len
= min(count
, sizeof(cmd
) - 1);
1602 if (copy_from_user(cmd
, buf
, len
))
1606 if (sscanf(cmd
, " force_on : %i", &value
) != 1 &&
1607 value
!= 0 && value
!= 1)
1610 if (set_fan_status(dev
, value
))
1613 dev
->force_fan
= value
;
1618 static const struct proc_ops fan_proc_ops
= {
1619 .proc_open
= fan_proc_open
,
1620 .proc_read
= seq_read
,
1621 .proc_lseek
= seq_lseek
,
1622 .proc_release
= single_release
,
1623 .proc_write
= fan_proc_write
,
1626 static int keys_proc_show(struct seq_file
*m
, void *v
)
1628 struct toshiba_acpi_dev
*dev
= m
->private;
1630 seq_printf(m
, "hotkey_ready: %d\n", dev
->key_event_valid
);
1631 seq_printf(m
, "hotkey: 0x%04x\n", dev
->last_key_event
);
1636 static int keys_proc_open(struct inode
*inode
, struct file
*file
)
1638 return single_open(file
, keys_proc_show
, PDE_DATA(inode
));
1641 static ssize_t
keys_proc_write(struct file
*file
, const char __user
*buf
,
1642 size_t count
, loff_t
*pos
)
1644 struct toshiba_acpi_dev
*dev
= PDE_DATA(file_inode(file
));
1649 len
= min(count
, sizeof(cmd
) - 1);
1650 if (copy_from_user(cmd
, buf
, len
))
1654 if (sscanf(cmd
, " hotkey_ready : %i", &value
) == 1 && value
== 0)
1655 dev
->key_event_valid
= 0;
1662 static const struct proc_ops keys_proc_ops
= {
1663 .proc_open
= keys_proc_open
,
1664 .proc_read
= seq_read
,
1665 .proc_lseek
= seq_lseek
,
1666 .proc_release
= single_release
,
1667 .proc_write
= keys_proc_write
,
1670 static int __maybe_unused
version_proc_show(struct seq_file
*m
, void *v
)
1672 seq_printf(m
, "driver: %s\n", TOSHIBA_ACPI_VERSION
);
1673 seq_printf(m
, "proc_interface: %d\n", PROC_INTERFACE_VERSION
);
1678 * Proc and module init
1681 #define PROC_TOSHIBA "toshiba"
1683 static void create_toshiba_proc_entries(struct toshiba_acpi_dev
*dev
)
1685 if (dev
->backlight_dev
)
1686 proc_create_data("lcd", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1687 &lcd_proc_ops
, dev
);
1688 if (dev
->video_supported
)
1689 proc_create_data("video", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1690 &video_proc_ops
, dev
);
1691 if (dev
->fan_supported
)
1692 proc_create_data("fan", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1693 &fan_proc_ops
, dev
);
1694 if (dev
->hotkey_dev
)
1695 proc_create_data("keys", S_IRUGO
| S_IWUSR
, toshiba_proc_dir
,
1696 &keys_proc_ops
, dev
);
1697 proc_create_single_data("version", S_IRUGO
, toshiba_proc_dir
,
1698 version_proc_show
, dev
);
1701 static void remove_toshiba_proc_entries(struct toshiba_acpi_dev
*dev
)
1703 if (dev
->backlight_dev
)
1704 remove_proc_entry("lcd", toshiba_proc_dir
);
1705 if (dev
->video_supported
)
1706 remove_proc_entry("video", toshiba_proc_dir
);
1707 if (dev
->fan_supported
)
1708 remove_proc_entry("fan", toshiba_proc_dir
);
1709 if (dev
->hotkey_dev
)
1710 remove_proc_entry("keys", toshiba_proc_dir
);
1711 remove_proc_entry("version", toshiba_proc_dir
);
1714 static const struct backlight_ops toshiba_backlight_data
= {
1715 .options
= BL_CORE_SUSPENDRESUME
,
1716 .get_brightness
= get_lcd_brightness
,
1717 .update_status
= set_lcd_status
,
1720 /* Keyboard backlight work */
1721 static void toshiba_acpi_kbd_bl_work(struct work_struct
*work
);
1723 static DECLARE_WORK(kbd_bl_work
, toshiba_acpi_kbd_bl_work
);
1728 static ssize_t
version_show(struct device
*dev
,
1729 struct device_attribute
*attr
, char *buf
)
1731 return sprintf(buf
, "%s\n", TOSHIBA_ACPI_VERSION
);
1733 static DEVICE_ATTR_RO(version
);
1735 static ssize_t
fan_store(struct device
*dev
,
1736 struct device_attribute
*attr
,
1737 const char *buf
, size_t count
)
1739 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1743 ret
= kstrtoint(buf
, 0, &state
);
1747 if (state
!= 0 && state
!= 1)
1750 ret
= set_fan_status(toshiba
, state
);
1757 static ssize_t
fan_show(struct device
*dev
,
1758 struct device_attribute
*attr
, char *buf
)
1760 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1764 ret
= get_fan_status(toshiba
, &value
);
1768 return sprintf(buf
, "%d\n", value
);
1770 static DEVICE_ATTR_RW(fan
);
1772 static ssize_t
kbd_backlight_mode_store(struct device
*dev
,
1773 struct device_attribute
*attr
,
1774 const char *buf
, size_t count
)
1776 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1781 ret
= kstrtoint(buf
, 0, &mode
);
1785 /* Check for supported modes depending on keyboard backlight type */
1786 if (toshiba
->kbd_type
== 1) {
1787 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1788 if (mode
!= SCI_KBD_MODE_FNZ
&& mode
!= SCI_KBD_MODE_AUTO
)
1790 } else if (toshiba
->kbd_type
== 2) {
1791 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1792 if (mode
!= SCI_KBD_MODE_AUTO
&& mode
!= SCI_KBD_MODE_ON
&&
1793 mode
!= SCI_KBD_MODE_OFF
)
1798 * Set the Keyboard Backlight Mode where:
1799 * Auto - KBD backlight turns off automatically in given time
1800 * FN-Z - KBD backlight "toggles" when hotkey pressed
1801 * ON - KBD backlight is always on
1802 * OFF - KBD backlight is always off
1805 /* Only make a change if the actual mode has changed */
1806 if (toshiba
->kbd_mode
!= mode
) {
1807 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1808 int time
= toshiba
->kbd_time
<< HCI_MISC_SHIFT
;
1810 /* OR the "base time" to the actual method format */
1811 if (toshiba
->kbd_type
== 1) {
1812 /* Type 1 requires the current mode */
1813 time
|= toshiba
->kbd_mode
;
1814 } else if (toshiba
->kbd_type
== 2) {
1815 /* Type 2 requires the desired mode */
1819 ret
= toshiba_kbd_illum_status_set(toshiba
, time
);
1823 toshiba
->kbd_mode
= mode
;
1824 toshiba_acpi
->kbd_mode
= mode
;
1827 * Some laptop models with the second generation backlit
1828 * keyboard (type 2) do not generate the keyboard backlight
1829 * changed event (0x92), and thus, the driver will never update
1830 * the sysfs entries.
1832 * The event is generated right when changing the keyboard
1833 * backlight mode and the *notify function will set the
1834 * kbd_event_generated to true.
1836 * In case the event is not generated, schedule the keyboard
1837 * backlight work to update the sysfs entries and emulate the
1838 * event via genetlink.
1840 if (toshiba
->kbd_type
== 2 &&
1841 !toshiba
->kbd_event_generated
)
1842 schedule_work(&kbd_bl_work
);
1848 static ssize_t
kbd_backlight_mode_show(struct device
*dev
,
1849 struct device_attribute
*attr
,
1852 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1855 if (toshiba_kbd_illum_status_get(toshiba
, &time
) < 0)
1858 return sprintf(buf
, "%i\n", time
& SCI_KBD_MODE_MASK
);
1860 static DEVICE_ATTR_RW(kbd_backlight_mode
);
1862 static ssize_t
kbd_type_show(struct device
*dev
,
1863 struct device_attribute
*attr
, char *buf
)
1865 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1867 return sprintf(buf
, "%d\n", toshiba
->kbd_type
);
1869 static DEVICE_ATTR_RO(kbd_type
);
1871 static ssize_t
available_kbd_modes_show(struct device
*dev
,
1872 struct device_attribute
*attr
,
1875 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1877 if (toshiba
->kbd_type
== 1)
1878 return sprintf(buf
, "0x%x 0x%x\n",
1879 SCI_KBD_MODE_FNZ
, SCI_KBD_MODE_AUTO
);
1881 return sprintf(buf
, "0x%x 0x%x 0x%x\n",
1882 SCI_KBD_MODE_AUTO
, SCI_KBD_MODE_ON
, SCI_KBD_MODE_OFF
);
1884 static DEVICE_ATTR_RO(available_kbd_modes
);
1886 static ssize_t
kbd_backlight_timeout_store(struct device
*dev
,
1887 struct device_attribute
*attr
,
1888 const char *buf
, size_t count
)
1890 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1894 ret
= kstrtoint(buf
, 0, &time
);
1898 /* Check for supported values depending on kbd_type */
1899 if (toshiba
->kbd_type
== 1) {
1900 if (time
< 0 || time
> 60)
1902 } else if (toshiba
->kbd_type
== 2) {
1903 if (time
< 1 || time
> 60)
1907 /* Set the Keyboard Backlight Timeout */
1909 /* Only make a change if the actual timeout has changed */
1910 if (toshiba
->kbd_time
!= time
) {
1911 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1912 time
= time
<< HCI_MISC_SHIFT
;
1913 /* OR the "base time" to the actual method format */
1914 if (toshiba
->kbd_type
== 1)
1915 time
|= SCI_KBD_MODE_FNZ
;
1916 else if (toshiba
->kbd_type
== 2)
1917 time
|= SCI_KBD_MODE_AUTO
;
1919 ret
= toshiba_kbd_illum_status_set(toshiba
, time
);
1923 toshiba
->kbd_time
= time
>> HCI_MISC_SHIFT
;
1929 static ssize_t
kbd_backlight_timeout_show(struct device
*dev
,
1930 struct device_attribute
*attr
,
1933 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1936 if (toshiba_kbd_illum_status_get(toshiba
, &time
) < 0)
1939 return sprintf(buf
, "%i\n", time
>> HCI_MISC_SHIFT
);
1941 static DEVICE_ATTR_RW(kbd_backlight_timeout
);
1943 static ssize_t
touchpad_store(struct device
*dev
,
1944 struct device_attribute
*attr
,
1945 const char *buf
, size_t count
)
1947 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1951 /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
1952 ret
= kstrtoint(buf
, 0, &state
);
1955 if (state
!= 0 && state
!= 1)
1958 ret
= toshiba_touchpad_set(toshiba
, state
);
1965 static ssize_t
touchpad_show(struct device
*dev
,
1966 struct device_attribute
*attr
, char *buf
)
1968 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1972 ret
= toshiba_touchpad_get(toshiba
, &state
);
1976 return sprintf(buf
, "%i\n", state
);
1978 static DEVICE_ATTR_RW(touchpad
);
1980 static ssize_t
usb_sleep_charge_show(struct device
*dev
,
1981 struct device_attribute
*attr
, char *buf
)
1983 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
1987 ret
= toshiba_usb_sleep_charge_get(toshiba
, &mode
);
1991 return sprintf(buf
, "%x\n", mode
& SCI_USB_CHARGE_MODE_MASK
);
1994 static ssize_t
usb_sleep_charge_store(struct device
*dev
,
1995 struct device_attribute
*attr
,
1996 const char *buf
, size_t count
)
1998 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2003 ret
= kstrtoint(buf
, 0, &state
);
2007 * Check for supported values, where:
2009 * 1 - Alternate (Non USB conformant devices that require more power)
2010 * 2 - Auto (USB conformant devices)
2013 if (state
!= 0 && state
!= 1 && state
!= 2 && state
!= 3)
2016 /* Set the USB charging mode to internal value */
2017 mode
= toshiba
->usbsc_mode_base
;
2019 mode
|= SCI_USB_CHARGE_DISABLED
;
2020 else if (state
== 1)
2021 mode
|= SCI_USB_CHARGE_ALTERNATE
;
2022 else if (state
== 2)
2023 mode
|= SCI_USB_CHARGE_AUTO
;
2024 else if (state
== 3)
2025 mode
|= SCI_USB_CHARGE_TYPICAL
;
2027 ret
= toshiba_usb_sleep_charge_set(toshiba
, mode
);
2033 static DEVICE_ATTR_RW(usb_sleep_charge
);
2035 static ssize_t
sleep_functions_on_battery_show(struct device
*dev
,
2036 struct device_attribute
*attr
,
2039 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2040 int bat_lvl
, status
;
2045 ret
= toshiba_sleep_functions_status_get(toshiba
, &state
);
2049 /* Determine the status: 0x4 - Enabled | 0x1 - Disabled */
2050 tmp
= state
& SCI_USB_CHARGE_BAT_MASK
;
2051 status
= (tmp
== 0x4) ? 1 : 0;
2052 /* Determine the battery level set */
2053 bat_lvl
= state
>> HCI_MISC_SHIFT
;
2055 return sprintf(buf
, "%d %d\n", status
, bat_lvl
);
2058 static ssize_t
sleep_functions_on_battery_store(struct device
*dev
,
2059 struct device_attribute
*attr
,
2060 const char *buf
, size_t count
)
2062 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2068 ret
= kstrtoint(buf
, 0, &value
);
2073 * Set the status of the function:
2077 if (value
< 0 || value
> 100)
2081 tmp
= toshiba
->usbsc_bat_level
<< HCI_MISC_SHIFT
;
2082 status
= tmp
| SCI_USB_CHARGE_BAT_LVL_OFF
;
2084 tmp
= value
<< HCI_MISC_SHIFT
;
2085 status
= tmp
| SCI_USB_CHARGE_BAT_LVL_ON
;
2087 ret
= toshiba_sleep_functions_status_set(toshiba
, status
);
2091 toshiba
->usbsc_bat_level
= status
>> HCI_MISC_SHIFT
;
2095 static DEVICE_ATTR_RW(sleep_functions_on_battery
);
2097 static ssize_t
usb_rapid_charge_show(struct device
*dev
,
2098 struct device_attribute
*attr
, char *buf
)
2100 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2104 ret
= toshiba_usb_rapid_charge_get(toshiba
, &state
);
2108 return sprintf(buf
, "%d\n", state
);
2111 static ssize_t
usb_rapid_charge_store(struct device
*dev
,
2112 struct device_attribute
*attr
,
2113 const char *buf
, size_t count
)
2115 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2119 ret
= kstrtoint(buf
, 0, &state
);
2122 if (state
!= 0 && state
!= 1)
2125 ret
= toshiba_usb_rapid_charge_set(toshiba
, state
);
2131 static DEVICE_ATTR_RW(usb_rapid_charge
);
2133 static ssize_t
usb_sleep_music_show(struct device
*dev
,
2134 struct device_attribute
*attr
, char *buf
)
2136 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2140 ret
= toshiba_usb_sleep_music_get(toshiba
, &state
);
2144 return sprintf(buf
, "%d\n", state
);
2147 static ssize_t
usb_sleep_music_store(struct device
*dev
,
2148 struct device_attribute
*attr
,
2149 const char *buf
, size_t count
)
2151 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2155 ret
= kstrtoint(buf
, 0, &state
);
2158 if (state
!= 0 && state
!= 1)
2161 ret
= toshiba_usb_sleep_music_set(toshiba
, state
);
2167 static DEVICE_ATTR_RW(usb_sleep_music
);
2169 static ssize_t
kbd_function_keys_show(struct device
*dev
,
2170 struct device_attribute
*attr
, char *buf
)
2172 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2176 ret
= toshiba_function_keys_get(toshiba
, &mode
);
2180 return sprintf(buf
, "%d\n", mode
);
2183 static ssize_t
kbd_function_keys_store(struct device
*dev
,
2184 struct device_attribute
*attr
,
2185 const char *buf
, size_t count
)
2187 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2191 ret
= kstrtoint(buf
, 0, &mode
);
2195 * Check for the function keys mode where:
2196 * 0 - Normal operation (F{1-12} as usual and hotkeys via FN-F{1-12})
2197 * 1 - Special functions (Opposite of the above setting)
2199 if (mode
!= 0 && mode
!= 1)
2202 ret
= toshiba_function_keys_set(toshiba
, mode
);
2206 pr_info("Reboot for changes to KBD Function Keys to take effect");
2210 static DEVICE_ATTR_RW(kbd_function_keys
);
2212 static ssize_t
panel_power_on_show(struct device
*dev
,
2213 struct device_attribute
*attr
, char *buf
)
2215 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2219 ret
= toshiba_panel_power_on_get(toshiba
, &state
);
2223 return sprintf(buf
, "%d\n", state
);
2226 static ssize_t
panel_power_on_store(struct device
*dev
,
2227 struct device_attribute
*attr
,
2228 const char *buf
, size_t count
)
2230 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2234 ret
= kstrtoint(buf
, 0, &state
);
2237 if (state
!= 0 && state
!= 1)
2240 ret
= toshiba_panel_power_on_set(toshiba
, state
);
2244 pr_info("Reboot for changes to Panel Power ON to take effect");
2248 static DEVICE_ATTR_RW(panel_power_on
);
2250 static ssize_t
usb_three_show(struct device
*dev
,
2251 struct device_attribute
*attr
, char *buf
)
2253 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2257 ret
= toshiba_usb_three_get(toshiba
, &state
);
2261 return sprintf(buf
, "%d\n", state
);
2264 static ssize_t
usb_three_store(struct device
*dev
,
2265 struct device_attribute
*attr
,
2266 const char *buf
, size_t count
)
2268 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2272 ret
= kstrtoint(buf
, 0, &state
);
2276 * Check for USB 3 mode where:
2277 * 0 - Disabled (Acts like a USB 2 port, saving power)
2280 if (state
!= 0 && state
!= 1)
2283 ret
= toshiba_usb_three_set(toshiba
, state
);
2287 pr_info("Reboot for changes to USB 3 to take effect");
2291 static DEVICE_ATTR_RW(usb_three
);
2293 static ssize_t
cooling_method_show(struct device
*dev
,
2294 struct device_attribute
*attr
, char *buf
)
2296 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2300 ret
= toshiba_cooling_method_get(toshiba
, &state
);
2304 return sprintf(buf
, "%d %d\n", state
, toshiba
->max_cooling_method
);
2307 static ssize_t
cooling_method_store(struct device
*dev
,
2308 struct device_attribute
*attr
,
2309 const char *buf
, size_t count
)
2311 struct toshiba_acpi_dev
*toshiba
= dev_get_drvdata(dev
);
2315 ret
= kstrtoint(buf
, 0, &state
);
2320 * Check for supported values
2321 * Depending on the laptop model, some only support these two:
2322 * 0 - Maximum Performance
2323 * 1 - Battery Optimized
2325 * While some others support all three methods:
2326 * 0 - Maximum Performance
2328 * 2 - Battery Optimized
2330 if (state
< 0 || state
> toshiba
->max_cooling_method
)
2333 ret
= toshiba_cooling_method_set(toshiba
, state
);
2339 static DEVICE_ATTR_RW(cooling_method
);
2341 static struct attribute
*toshiba_attributes
[] = {
2342 &dev_attr_version
.attr
,
2344 &dev_attr_kbd_backlight_mode
.attr
,
2345 &dev_attr_kbd_type
.attr
,
2346 &dev_attr_available_kbd_modes
.attr
,
2347 &dev_attr_kbd_backlight_timeout
.attr
,
2348 &dev_attr_touchpad
.attr
,
2349 &dev_attr_usb_sleep_charge
.attr
,
2350 &dev_attr_sleep_functions_on_battery
.attr
,
2351 &dev_attr_usb_rapid_charge
.attr
,
2352 &dev_attr_usb_sleep_music
.attr
,
2353 &dev_attr_kbd_function_keys
.attr
,
2354 &dev_attr_panel_power_on
.attr
,
2355 &dev_attr_usb_three
.attr
,
2356 &dev_attr_cooling_method
.attr
,
2360 static umode_t
toshiba_sysfs_is_visible(struct kobject
*kobj
,
2361 struct attribute
*attr
, int idx
)
2363 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2364 struct toshiba_acpi_dev
*drv
= dev_get_drvdata(dev
);
2367 if (attr
== &dev_attr_fan
.attr
)
2368 exists
= (drv
->fan_supported
) ? true : false;
2369 else if (attr
== &dev_attr_kbd_backlight_mode
.attr
)
2370 exists
= (drv
->kbd_illum_supported
) ? true : false;
2371 else if (attr
== &dev_attr_kbd_backlight_timeout
.attr
)
2372 exists
= (drv
->kbd_mode
== SCI_KBD_MODE_AUTO
) ? true : false;
2373 else if (attr
== &dev_attr_touchpad
.attr
)
2374 exists
= (drv
->touchpad_supported
) ? true : false;
2375 else if (attr
== &dev_attr_usb_sleep_charge
.attr
)
2376 exists
= (drv
->usb_sleep_charge_supported
) ? true : false;
2377 else if (attr
== &dev_attr_sleep_functions_on_battery
.attr
)
2378 exists
= (drv
->usb_sleep_charge_supported
) ? true : false;
2379 else if (attr
== &dev_attr_usb_rapid_charge
.attr
)
2380 exists
= (drv
->usb_rapid_charge_supported
) ? true : false;
2381 else if (attr
== &dev_attr_usb_sleep_music
.attr
)
2382 exists
= (drv
->usb_sleep_music_supported
) ? true : false;
2383 else if (attr
== &dev_attr_kbd_function_keys
.attr
)
2384 exists
= (drv
->kbd_function_keys_supported
) ? true : false;
2385 else if (attr
== &dev_attr_panel_power_on
.attr
)
2386 exists
= (drv
->panel_power_on_supported
) ? true : false;
2387 else if (attr
== &dev_attr_usb_three
.attr
)
2388 exists
= (drv
->usb_three_supported
) ? true : false;
2389 else if (attr
== &dev_attr_cooling_method
.attr
)
2390 exists
= (drv
->cooling_method_supported
) ? true : false;
2392 return exists
? attr
->mode
: 0;
2395 static const struct attribute_group toshiba_attr_group
= {
2396 .is_visible
= toshiba_sysfs_is_visible
,
2397 .attrs
= toshiba_attributes
,
2400 static void toshiba_acpi_kbd_bl_work(struct work_struct
*work
)
2402 /* Update the sysfs entries */
2403 if (sysfs_update_group(&toshiba_acpi
->acpi_dev
->dev
.kobj
,
2404 &toshiba_attr_group
))
2405 pr_err("Unable to update sysfs entries\n");
2407 /* Notify LED subsystem about keyboard backlight change */
2408 if (toshiba_acpi
->kbd_type
== 2 &&
2409 toshiba_acpi
->kbd_mode
!= SCI_KBD_MODE_AUTO
)
2410 led_classdev_notify_brightness_hw_changed(&toshiba_acpi
->kbd_led
,
2411 (toshiba_acpi
->kbd_mode
== SCI_KBD_MODE_ON
) ?
2412 LED_FULL
: LED_OFF
);
2414 /* Emulate the keyboard backlight event */
2415 acpi_bus_generate_netlink_event(toshiba_acpi
->acpi_dev
->pnp
.device_class
,
2416 dev_name(&toshiba_acpi
->acpi_dev
->dev
),
2424 enum toshiba_iio_accel_chan
{
2430 static int toshiba_iio_accel_get_axis(enum toshiba_iio_accel_chan chan
)
2435 ret
= toshiba_accelerometer_get(toshiba_acpi
, &xyval
, &zval
);
2441 return xyval
& HCI_ACCEL_DIRECTION_MASK
?
2442 -(xyval
& HCI_ACCEL_MASK
) : xyval
& HCI_ACCEL_MASK
;
2444 return (xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_DIRECTION_MASK
?
2445 -((xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_MASK
) :
2446 (xyval
>> HCI_MISC_SHIFT
) & HCI_ACCEL_MASK
;
2448 return zval
& HCI_ACCEL_DIRECTION_MASK
?
2449 -(zval
& HCI_ACCEL_MASK
) : zval
& HCI_ACCEL_MASK
;
2455 static int toshiba_iio_accel_read_raw(struct iio_dev
*indio_dev
,
2456 struct iio_chan_spec
const *chan
,
2457 int *val
, int *val2
, long mask
)
2462 case IIO_CHAN_INFO_RAW
:
2463 ret
= toshiba_iio_accel_get_axis(chan
->channel
);
2464 if (ret
== -EIO
|| ret
== -ENODEV
)
2475 #define TOSHIBA_IIO_ACCEL_CHANNEL(axis, chan) { \
2476 .type = IIO_ACCEL, \
2479 .channel2 = IIO_MOD_##axis, \
2481 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
2484 static const struct iio_chan_spec toshiba_iio_accel_channels
[] = {
2485 TOSHIBA_IIO_ACCEL_CHANNEL(X
, AXIS_X
),
2486 TOSHIBA_IIO_ACCEL_CHANNEL(Y
, AXIS_Y
),
2487 TOSHIBA_IIO_ACCEL_CHANNEL(Z
, AXIS_Z
),
2490 static const struct iio_info toshiba_iio_accel_info
= {
2491 .read_raw
= &toshiba_iio_accel_read_raw
,
2497 static int toshiba_acpi_smm_bridge(SMMRegisters
*regs
)
2499 u32 in
[TCI_WORDS
] = { regs
->eax
, regs
->ebx
, regs
->ecx
,
2500 regs
->edx
, regs
->esi
, regs
->edi
};
2504 status
= tci_raw(toshiba_acpi
, in
, out
);
2505 if (ACPI_FAILURE(status
)) {
2506 pr_err("ACPI call to query SMM registers failed\n");
2510 /* Fillout the SMM struct with the TCI call results */
2521 static long toshiba_acpi_ioctl(struct file
*fp
, unsigned int cmd
,
2524 SMMRegisters __user
*argp
= (SMMRegisters __user
*)arg
;
2533 if (copy_from_user(®s
, argp
, sizeof(SMMRegisters
)))
2535 ret
= toshiba_acpi_smm_bridge(®s
);
2538 if (copy_to_user(argp
, ®s
, sizeof(SMMRegisters
)))
2541 case TOSHIBA_ACPI_SCI
:
2542 if (copy_from_user(®s
, argp
, sizeof(SMMRegisters
)))
2544 /* Ensure we are being called with a SCI_{GET, SET} register */
2545 if (regs
.eax
!= SCI_GET
&& regs
.eax
!= SCI_SET
)
2547 if (!sci_open(toshiba_acpi
))
2549 ret
= toshiba_acpi_smm_bridge(®s
);
2550 sci_close(toshiba_acpi
);
2553 if (copy_to_user(argp
, ®s
, sizeof(SMMRegisters
)))
2563 static const struct file_operations toshiba_acpi_fops
= {
2564 .owner
= THIS_MODULE
,
2565 .unlocked_ioctl
= toshiba_acpi_ioctl
,
2566 .llseek
= noop_llseek
,
2570 * WWAN RFKill handlers
2572 static int toshiba_acpi_wwan_set_block(void *data
, bool blocked
)
2574 struct toshiba_acpi_dev
*dev
= data
;
2577 ret
= toshiba_wireless_status(dev
);
2581 if (!dev
->killswitch
)
2584 return toshiba_wwan_set(dev
, !blocked
);
2587 static void toshiba_acpi_wwan_poll(struct rfkill
*rfkill
, void *data
)
2589 struct toshiba_acpi_dev
*dev
= data
;
2591 if (toshiba_wireless_status(dev
))
2594 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
2597 static const struct rfkill_ops wwan_rfk_ops
= {
2598 .set_block
= toshiba_acpi_wwan_set_block
,
2599 .poll
= toshiba_acpi_wwan_poll
,
2602 static int toshiba_acpi_setup_wwan_rfkill(struct toshiba_acpi_dev
*dev
)
2604 int ret
= toshiba_wireless_status(dev
);
2609 dev
->wwan_rfk
= rfkill_alloc("Toshiba WWAN",
2610 &dev
->acpi_dev
->dev
,
2614 if (!dev
->wwan_rfk
) {
2615 pr_err("Unable to allocate WWAN rfkill device\n");
2619 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
2621 ret
= rfkill_register(dev
->wwan_rfk
);
2623 pr_err("Unable to register WWAN rfkill device\n");
2624 rfkill_destroy(dev
->wwan_rfk
);
2633 static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev
*dev
)
2638 status
= acpi_evaluate_object(dev
->acpi_dev
->handle
,
2639 "ENAB", NULL
, NULL
);
2640 if (ACPI_FAILURE(status
))
2644 * Enable the "Special Functions" mode only if they are
2645 * supported and if they are activated.
2647 if (dev
->kbd_function_keys_supported
&& dev
->special_functions
)
2648 result
= hci_write(dev
, HCI_HOTKEY_EVENT
,
2649 HCI_HOTKEY_SPECIAL_FUNCTIONS
);
2651 result
= hci_write(dev
, HCI_HOTKEY_EVENT
, HCI_HOTKEY_ENABLE
);
2653 if (result
== TOS_FAILURE
)
2655 else if (result
== TOS_NOT_SUPPORTED
)
2661 static bool toshiba_acpi_i8042_filter(unsigned char data
, unsigned char str
,
2664 if (str
& I8042_STR_AUXDATA
)
2667 if (unlikely(data
== 0xe0))
2670 if ((data
& 0x7f) == TOS1900_FN_SCAN
) {
2671 schedule_work(&toshiba_acpi
->hotkey_work
);
2678 static void toshiba_acpi_hotkey_work(struct work_struct
*work
)
2680 acpi_handle ec_handle
= ec_get_handle();
2686 status
= acpi_evaluate_object(ec_handle
, "NTFY", NULL
, NULL
);
2687 if (ACPI_FAILURE(status
))
2688 pr_err("ACPI NTFY method execution failed\n");
2692 * Returns hotkey scancode, or < 0 on failure.
2694 static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev
*dev
)
2696 unsigned long long value
;
2699 status
= acpi_evaluate_integer(dev
->acpi_dev
->handle
, "INFO",
2701 if (ACPI_FAILURE(status
)) {
2702 pr_err("ACPI INFO method execution failed\n");
2709 static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev
*dev
,
2712 if (scancode
== 0x100)
2715 /* Act on key press; ignore key release */
2716 if (scancode
& 0x80)
2719 if (!sparse_keymap_report_event(dev
->hotkey_dev
, scancode
, 1, true))
2720 pr_info("Unknown key %x\n", scancode
);
2723 static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev
*dev
)
2725 if (dev
->info_supported
) {
2726 int scancode
= toshiba_acpi_query_hotkey(dev
);
2729 pr_err("Failed to query hotkey event\n");
2730 } else if (scancode
!= 0) {
2731 toshiba_acpi_report_hotkey(dev
, scancode
);
2732 dev
->key_event_valid
= 1;
2733 dev
->last_key_event
= scancode
;
2735 } else if (dev
->system_event_supported
) {
2741 result
= hci_read(dev
, HCI_SYSTEM_EVENT
, &value
);
2744 toshiba_acpi_report_hotkey(dev
, (int)value
);
2745 dev
->key_event_valid
= 1;
2746 dev
->last_key_event
= value
;
2748 case TOS_NOT_SUPPORTED
:
2750 * This is a workaround for an unresolved
2751 * issue on some machines where system events
2752 * sporadically become disabled.
2754 result
= hci_write(dev
, HCI_SYSTEM_EVENT
, 1);
2755 if (result
== TOS_SUCCESS
)
2756 pr_notice("Re-enabled hotkeys\n");
2762 } while (retries
&& result
!= TOS_FIFO_EMPTY
);
2766 static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev
*dev
)
2768 const struct key_entry
*keymap
= toshiba_acpi_keymap
;
2769 acpi_handle ec_handle
;
2772 if (disable_hotkeys
) {
2773 pr_info("Hotkeys disabled by module parameter\n");
2777 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID
)) {
2778 pr_info("WMI event detected, hotkeys will not be monitored\n");
2782 error
= toshiba_acpi_enable_hotkeys(dev
);
2786 if (toshiba_hotkey_event_type_get(dev
, &dev
->hotkey_event_type
))
2787 pr_notice("Unable to query Hotkey Event Type\n");
2789 dev
->hotkey_dev
= input_allocate_device();
2790 if (!dev
->hotkey_dev
)
2793 dev
->hotkey_dev
->name
= "Toshiba input device";
2794 dev
->hotkey_dev
->phys
= "toshiba_acpi/input0";
2795 dev
->hotkey_dev
->id
.bustype
= BUS_HOST
;
2797 if (dev
->hotkey_event_type
== HCI_SYSTEM_TYPE1
||
2798 !dev
->kbd_function_keys_supported
)
2799 keymap
= toshiba_acpi_keymap
;
2800 else if (dev
->hotkey_event_type
== HCI_SYSTEM_TYPE2
||
2801 dev
->kbd_function_keys_supported
)
2802 keymap
= toshiba_acpi_alt_keymap
;
2804 pr_info("Unknown event type received %x\n",
2805 dev
->hotkey_event_type
);
2806 error
= sparse_keymap_setup(dev
->hotkey_dev
, keymap
, NULL
);
2811 * For some machines the SCI responsible for providing hotkey
2812 * notification doesn't fire. We can trigger the notification
2813 * whenever the Fn key is pressed using the NTFY method, if
2814 * supported, so if it's present set up an i8042 key filter
2817 ec_handle
= ec_get_handle();
2818 if (ec_handle
&& acpi_has_method(ec_handle
, "NTFY")) {
2819 INIT_WORK(&dev
->hotkey_work
, toshiba_acpi_hotkey_work
);
2821 error
= i8042_install_filter(toshiba_acpi_i8042_filter
);
2823 pr_err("Error installing key filter\n");
2827 dev
->ntfy_supported
= 1;
2831 * Determine hotkey query interface. Prefer using the INFO
2832 * method when it is available.
2834 if (acpi_has_method(dev
->acpi_dev
->handle
, "INFO"))
2835 dev
->info_supported
= 1;
2836 else if (hci_write(dev
, HCI_SYSTEM_EVENT
, 1) == TOS_SUCCESS
)
2837 dev
->system_event_supported
= 1;
2839 if (!dev
->info_supported
&& !dev
->system_event_supported
) {
2840 pr_warn("No hotkey query interface found\n");
2841 goto err_remove_filter
;
2844 error
= input_register_device(dev
->hotkey_dev
);
2846 pr_info("Unable to register input device\n");
2847 goto err_remove_filter
;
2853 if (dev
->ntfy_supported
)
2854 i8042_remove_filter(toshiba_acpi_i8042_filter
);
2856 input_free_device(dev
->hotkey_dev
);
2857 dev
->hotkey_dev
= NULL
;
2861 static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev
*dev
)
2863 struct backlight_properties props
;
2868 * Some machines don't support the backlight methods at all, and
2869 * others support it read-only. Either of these is pretty useless,
2870 * so only register the backlight device if the backlight method
2871 * supports both reads and writes.
2873 brightness
= __get_lcd_brightness(dev
);
2877 * If transflective backlight is supported and the brightness is zero
2878 * (lowest brightness level), the set_lcd_brightness function will
2879 * activate the transflective backlight, making the LCD appear to be
2880 * turned off, simply increment the brightness level to avoid that.
2882 if (dev
->tr_backlight_supported
&& brightness
== 0)
2884 ret
= set_lcd_brightness(dev
, brightness
);
2886 pr_debug("Backlight method is read-only, disabling backlight support\n");
2891 * Tell acpi-video-detect code to prefer vendor backlight on all
2892 * systems with transflective backlight and on dmi matched systems.
2894 if (dev
->tr_backlight_supported
||
2895 dmi_check_system(toshiba_vendor_backlight_dmi
))
2896 acpi_video_set_dmi_backlight_type(acpi_backlight_vendor
);
2898 if (acpi_video_get_backlight_type() != acpi_backlight_vendor
)
2901 memset(&props
, 0, sizeof(props
));
2902 props
.type
= BACKLIGHT_PLATFORM
;
2903 props
.max_brightness
= HCI_LCD_BRIGHTNESS_LEVELS
- 1;
2905 /* Adding an extra level and having 0 change to transflective mode */
2906 if (dev
->tr_backlight_supported
)
2907 props
.max_brightness
++;
2909 dev
->backlight_dev
= backlight_device_register("toshiba",
2910 &dev
->acpi_dev
->dev
,
2912 &toshiba_backlight_data
,
2914 if (IS_ERR(dev
->backlight_dev
)) {
2915 ret
= PTR_ERR(dev
->backlight_dev
);
2916 pr_err("Could not register toshiba backlight device\n");
2917 dev
->backlight_dev
= NULL
;
2921 dev
->backlight_dev
->props
.brightness
= brightness
;
2925 static void print_supported_features(struct toshiba_acpi_dev
*dev
)
2927 pr_info("Supported laptop features:");
2929 if (dev
->hotkey_dev
)
2930 pr_cont(" hotkeys");
2931 if (dev
->backlight_dev
)
2932 pr_cont(" backlight");
2933 if (dev
->video_supported
)
2934 pr_cont(" video-out");
2935 if (dev
->fan_supported
)
2937 if (dev
->tr_backlight_supported
)
2938 pr_cont(" transflective-backlight");
2939 if (dev
->illumination_supported
)
2940 pr_cont(" illumination");
2941 if (dev
->kbd_illum_supported
)
2942 pr_cont(" keyboard-backlight");
2943 if (dev
->touchpad_supported
)
2944 pr_cont(" touchpad");
2945 if (dev
->eco_supported
)
2946 pr_cont(" eco-led");
2947 if (dev
->accelerometer_supported
)
2948 pr_cont(" accelerometer-axes");
2949 if (dev
->usb_sleep_charge_supported
)
2950 pr_cont(" usb-sleep-charge");
2951 if (dev
->usb_rapid_charge_supported
)
2952 pr_cont(" usb-rapid-charge");
2953 if (dev
->usb_sleep_music_supported
)
2954 pr_cont(" usb-sleep-music");
2955 if (dev
->kbd_function_keys_supported
)
2956 pr_cont(" special-function-keys");
2957 if (dev
->panel_power_on_supported
)
2958 pr_cont(" panel-power-on");
2959 if (dev
->usb_three_supported
)
2961 if (dev
->wwan_supported
)
2963 if (dev
->cooling_method_supported
)
2964 pr_cont(" cooling-method");
2969 static int toshiba_acpi_remove(struct acpi_device
*acpi_dev
)
2971 struct toshiba_acpi_dev
*dev
= acpi_driver_data(acpi_dev
);
2973 misc_deregister(&dev
->miscdev
);
2975 remove_toshiba_proc_entries(dev
);
2977 if (dev
->accelerometer_supported
&& dev
->indio_dev
) {
2978 iio_device_unregister(dev
->indio_dev
);
2979 iio_device_free(dev
->indio_dev
);
2982 if (dev
->sysfs_created
)
2983 sysfs_remove_group(&dev
->acpi_dev
->dev
.kobj
,
2984 &toshiba_attr_group
);
2986 if (dev
->ntfy_supported
) {
2987 i8042_remove_filter(toshiba_acpi_i8042_filter
);
2988 cancel_work_sync(&dev
->hotkey_work
);
2991 if (dev
->hotkey_dev
)
2992 input_unregister_device(dev
->hotkey_dev
);
2994 backlight_device_unregister(dev
->backlight_dev
);
2996 if (dev
->illumination_led_registered
)
2997 led_classdev_unregister(&dev
->led_dev
);
2999 if (dev
->kbd_led_registered
)
3000 led_classdev_unregister(&dev
->kbd_led
);
3002 if (dev
->eco_led_registered
)
3003 led_classdev_unregister(&dev
->eco_led
);
3005 if (dev
->wwan_rfk
) {
3006 rfkill_unregister(dev
->wwan_rfk
);
3007 rfkill_destroy(dev
->wwan_rfk
);
3011 toshiba_acpi
= NULL
;
3018 static const char *find_hci_method(acpi_handle handle
)
3020 if (acpi_has_method(handle
, "GHCI"))
3023 if (acpi_has_method(handle
, "SPFC"))
3029 static int toshiba_acpi_add(struct acpi_device
*acpi_dev
)
3031 struct toshiba_acpi_dev
*dev
;
3032 const char *hci_method
;
3039 pr_info("Toshiba Laptop ACPI Extras version %s\n",
3040 TOSHIBA_ACPI_VERSION
);
3042 hci_method
= find_hci_method(acpi_dev
->handle
);
3044 pr_err("HCI interface not found\n");
3048 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
3051 dev
->acpi_dev
= acpi_dev
;
3052 dev
->method_hci
= hci_method
;
3053 dev
->miscdev
.minor
= MISC_DYNAMIC_MINOR
;
3054 dev
->miscdev
.name
= "toshiba_acpi";
3055 dev
->miscdev
.fops
= &toshiba_acpi_fops
;
3057 ret
= misc_register(&dev
->miscdev
);
3059 pr_err("Failed to register miscdevice\n");
3064 acpi_dev
->driver_data
= dev
;
3065 dev_set_drvdata(&acpi_dev
->dev
, dev
);
3067 /* Query the BIOS for supported features */
3070 * The "Special Functions" are always supported by the laptops
3071 * with the new keyboard layout, query for its presence to help
3072 * determine the keymap layout to use.
3074 ret
= toshiba_function_keys_get(dev
, &dev
->special_functions
);
3075 dev
->kbd_function_keys_supported
= !ret
;
3077 dev
->hotkey_event_type
= 0;
3078 if (toshiba_acpi_setup_keyboard(dev
))
3079 pr_info("Unable to activate hotkeys\n");
3081 /* Determine whether or not BIOS supports transflective backlight */
3082 ret
= get_tr_backlight_status(dev
, &dummy
);
3083 dev
->tr_backlight_supported
= !ret
;
3085 ret
= toshiba_acpi_setup_backlight(dev
);
3089 toshiba_illumination_available(dev
);
3090 if (dev
->illumination_supported
) {
3091 dev
->led_dev
.name
= "toshiba::illumination";
3092 dev
->led_dev
.max_brightness
= 1;
3093 dev
->led_dev
.brightness_set
= toshiba_illumination_set
;
3094 dev
->led_dev
.brightness_get
= toshiba_illumination_get
;
3095 if (!led_classdev_register(&acpi_dev
->dev
, &dev
->led_dev
))
3096 dev
->illumination_led_registered
= true;
3099 toshiba_eco_mode_available(dev
);
3100 if (dev
->eco_supported
) {
3101 dev
->eco_led
.name
= "toshiba::eco_mode";
3102 dev
->eco_led
.max_brightness
= 1;
3103 dev
->eco_led
.brightness_set
= toshiba_eco_mode_set_status
;
3104 dev
->eco_led
.brightness_get
= toshiba_eco_mode_get_status
;
3105 if (!led_classdev_register(&dev
->acpi_dev
->dev
, &dev
->eco_led
))
3106 dev
->eco_led_registered
= true;
3109 toshiba_kbd_illum_available(dev
);
3111 * Only register the LED if KBD illumination is supported
3112 * and the keyboard backlight operation mode is set to FN-Z
3113 * or we detect a second gen keyboard backlight
3115 if (dev
->kbd_illum_supported
&&
3116 (dev
->kbd_mode
== SCI_KBD_MODE_FNZ
|| dev
->kbd_type
== 2)) {
3117 dev
->kbd_led
.name
= "toshiba::kbd_backlight";
3118 dev
->kbd_led
.flags
= LED_BRIGHT_HW_CHANGED
;
3119 dev
->kbd_led
.max_brightness
= 1;
3120 dev
->kbd_led
.brightness_set
= toshiba_kbd_backlight_set
;
3121 dev
->kbd_led
.brightness_get
= toshiba_kbd_backlight_get
;
3122 if (!led_classdev_register(&dev
->acpi_dev
->dev
, &dev
->kbd_led
))
3123 dev
->kbd_led_registered
= true;
3126 ret
= toshiba_touchpad_get(dev
, &dummy
);
3127 dev
->touchpad_supported
= !ret
;
3129 toshiba_accelerometer_available(dev
);
3130 if (dev
->accelerometer_supported
) {
3131 dev
->indio_dev
= iio_device_alloc(sizeof(*dev
));
3132 if (!dev
->indio_dev
) {
3133 pr_err("Unable to allocate iio device\n");
3137 pr_info("Registering Toshiba accelerometer iio device\n");
3139 dev
->indio_dev
->info
= &toshiba_iio_accel_info
;
3140 dev
->indio_dev
->name
= "Toshiba accelerometer";
3141 dev
->indio_dev
->dev
.parent
= &acpi_dev
->dev
;
3142 dev
->indio_dev
->modes
= INDIO_DIRECT_MODE
;
3143 dev
->indio_dev
->channels
= toshiba_iio_accel_channels
;
3144 dev
->indio_dev
->num_channels
=
3145 ARRAY_SIZE(toshiba_iio_accel_channels
);
3147 ret
= iio_device_register(dev
->indio_dev
);
3149 pr_err("Unable to register iio device\n");
3150 iio_device_free(dev
->indio_dev
);
3155 toshiba_usb_sleep_charge_available(dev
);
3157 ret
= toshiba_usb_rapid_charge_get(dev
, &dummy
);
3158 dev
->usb_rapid_charge_supported
= !ret
;
3160 ret
= toshiba_usb_sleep_music_get(dev
, &dummy
);
3161 dev
->usb_sleep_music_supported
= !ret
;
3163 ret
= toshiba_panel_power_on_get(dev
, &dummy
);
3164 dev
->panel_power_on_supported
= !ret
;
3166 ret
= toshiba_usb_three_get(dev
, &dummy
);
3167 dev
->usb_three_supported
= !ret
;
3169 ret
= get_video_status(dev
, &dummy
);
3170 dev
->video_supported
= !ret
;
3172 ret
= get_fan_status(dev
, &dummy
);
3173 dev
->fan_supported
= !ret
;
3175 toshiba_wwan_available(dev
);
3176 if (dev
->wwan_supported
)
3177 toshiba_acpi_setup_wwan_rfkill(dev
);
3179 toshiba_cooling_method_available(dev
);
3181 print_supported_features(dev
);
3183 ret
= sysfs_create_group(&dev
->acpi_dev
->dev
.kobj
,
3184 &toshiba_attr_group
);
3186 dev
->sysfs_created
= 0;
3189 dev
->sysfs_created
= !ret
;
3191 create_toshiba_proc_entries(dev
);
3198 toshiba_acpi_remove(acpi_dev
);
3202 static void toshiba_acpi_notify(struct acpi_device
*acpi_dev
, u32 event
)
3204 struct toshiba_acpi_dev
*dev
= acpi_driver_data(acpi_dev
);
3207 case 0x80: /* Hotkeys and some system events */
3209 * Machines with this WMI GUID aren't supported due to bugs in
3212 * Return silently to avoid triggering a netlink event.
3214 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID
))
3216 toshiba_acpi_process_hotkeys(dev
);
3218 case 0x81: /* Dock events */
3221 pr_info("Dock event received %x\n", event
);
3223 case 0x88: /* Thermal events */
3224 pr_info("Thermal event received\n");
3226 case 0x8f: /* LID closed */
3227 case 0x90: /* LID is closed and Dock has been ejected */
3229 case 0x8c: /* SATA power events */
3231 pr_info("SATA power event received %x\n", event
);
3233 case 0x92: /* Keyboard backlight mode changed */
3234 dev
->kbd_event_generated
= true;
3235 /* Update sysfs entries */
3236 if (sysfs_update_group(&acpi_dev
->dev
.kobj
,
3237 &toshiba_attr_group
))
3238 pr_err("Unable to update sysfs entries\n");
3239 /* Notify LED subsystem about keyboard backlight change */
3240 if (dev
->kbd_type
== 2 && dev
->kbd_mode
!= SCI_KBD_MODE_AUTO
)
3241 led_classdev_notify_brightness_hw_changed(&dev
->kbd_led
,
3242 (dev
->kbd_mode
== SCI_KBD_MODE_ON
) ?
3243 LED_FULL
: LED_OFF
);
3245 case 0x85: /* Unknown */
3246 case 0x8d: /* Unknown */
3247 case 0x8e: /* Unknown */
3248 case 0x94: /* Unknown */
3249 case 0x95: /* Unknown */
3251 pr_info("Unknown event received %x\n", event
);
3255 acpi_bus_generate_netlink_event(acpi_dev
->pnp
.device_class
,
3256 dev_name(&acpi_dev
->dev
),
3257 event
, (event
== 0x80) ?
3258 dev
->last_key_event
: 0);
3261 #ifdef CONFIG_PM_SLEEP
3262 static int toshiba_acpi_suspend(struct device
*device
)
3264 struct toshiba_acpi_dev
*dev
= acpi_driver_data(to_acpi_device(device
));
3266 if (dev
->hotkey_dev
) {
3269 result
= hci_write(dev
, HCI_HOTKEY_EVENT
, HCI_HOTKEY_DISABLE
);
3270 if (result
!= TOS_SUCCESS
)
3271 pr_info("Unable to disable hotkeys\n");
3277 static int toshiba_acpi_resume(struct device
*device
)
3279 struct toshiba_acpi_dev
*dev
= acpi_driver_data(to_acpi_device(device
));
3281 if (dev
->hotkey_dev
) {
3282 if (toshiba_acpi_enable_hotkeys(dev
))
3283 pr_info("Unable to re-enable hotkeys\n");
3286 if (dev
->wwan_rfk
) {
3287 if (!toshiba_wireless_status(dev
))
3288 rfkill_set_hw_state(dev
->wwan_rfk
, !dev
->killswitch
);
3295 static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm
,
3296 toshiba_acpi_suspend
, toshiba_acpi_resume
);
3298 static struct acpi_driver toshiba_acpi_driver
= {
3299 .name
= "Toshiba ACPI driver",
3300 .owner
= THIS_MODULE
,
3301 .ids
= toshiba_device_ids
,
3302 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
3304 .add
= toshiba_acpi_add
,
3305 .remove
= toshiba_acpi_remove
,
3306 .notify
= toshiba_acpi_notify
,
3308 .drv
.pm
= &toshiba_acpi_pm
,
3311 static int __init
toshiba_acpi_init(void)
3315 toshiba_proc_dir
= proc_mkdir(PROC_TOSHIBA
, acpi_root_dir
);
3316 if (!toshiba_proc_dir
) {
3317 pr_err("Unable to create proc dir " PROC_TOSHIBA
"\n");
3321 ret
= acpi_bus_register_driver(&toshiba_acpi_driver
);
3323 pr_err("Failed to register ACPI driver: %d\n", ret
);
3324 remove_proc_entry(PROC_TOSHIBA
, acpi_root_dir
);
3330 static void __exit
toshiba_acpi_exit(void)
3332 acpi_bus_unregister_driver(&toshiba_acpi_driver
);
3333 if (toshiba_proc_dir
)
3334 remove_proc_entry(PROC_TOSHIBA
, acpi_root_dir
);
3337 module_init(toshiba_acpi_init
);
3338 module_exit(toshiba_acpi_exit
);