GNU Linux-libre 4.19.211-gnu1
[releases.git] / drivers / platform / x86 / toshiba_acpi.c
1 /*
2  *  toshiba_acpi.c - Toshiba Laptop ACPI Extras
3  *
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
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  The full GNU General Public License is included in this distribution in
20  *  the file called "COPYING".
21  *
22  *  The devolpment page for this driver is located at
23  *  http://memebeam.org/toys/ToshibaAcpiDriver.
24  *
25  *  Credits:
26  *      Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse
27  *              engineering the Windows drivers
28  *      Yasushi Nagato - changes for linux kernel 2.4 -> 2.5
29  *      Rob Miller - TV out and hotkeys help
30  */
31
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
34 #define TOSHIBA_ACPI_VERSION    "0.24"
35 #define PROC_INTERFACE_VERSION  1
36
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>
60
61 MODULE_AUTHOR("John Belmonte");
62 MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver");
63 MODULE_LICENSE("GPL");
64
65 #define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100"
66
67 /* Scan code for Fn key on TOS1900 models */
68 #define TOS1900_FN_SCAN         0x6e
69
70 /* Toshiba ACPI method paths */
71 #define METHOD_VIDEO_OUT        "\\_SB_.VALX.DSSX"
72
73 /*
74  * The Toshiba configuration interface is composed of the HCI and the SCI,
75  * which are defined as follows:
76  *
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.
83  *
84  * SCI stands for "System Configuration Interface" which aim is to
85  * conceal differences in hardware between different models.
86  */
87
88 #define TCI_WORDS                       6
89
90 /* Operations */
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
97
98 /* Return codes */
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
113
114 /* Registers */
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
136
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
172
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;
185
186         int force_fan;
187         int last_key_event;
188         int key_event_valid;
189         int kbd_type;
190         int kbd_mode;
191         int kbd_time;
192         int usbsc_bat_level;
193         int usbsc_mode_base;
194         int hotkey_event_type;
195         int max_cooling_method;
196
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;
218
219         bool kbd_event_generated;
220         bool kbd_led_registered;
221         bool illumination_led_registered;
222         bool eco_led_registered;
223         bool killswitch;
224 };
225
226 static struct toshiba_acpi_dev *toshiba_acpi;
227
228 static bool disable_hotkeys;
229 module_param(disable_hotkeys, bool, 0444);
230 MODULE_PARM_DESC(disable_hotkeys, "Disables the hotkeys activation");
231
232 static const struct acpi_device_id toshiba_device_ids[] = {
233         {"TOS6200", 0},
234         {"TOS6207", 0},
235         {"TOS6208", 0},
236         {"TOS1900", 0},
237         {"", 0},
238 };
239 MODULE_DEVICE_TABLE(acpi, toshiba_device_ids);
240
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 */
272         { KE_END, 0 },
273 };
274
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 } },
286         { KE_END, 0 },
287 };
288
289 /*
290  * List of models which have a broken acpi-video backlight interface and thus
291  * need to use the toshiba (vendor) interface instead.
292  */
293 static const struct dmi_system_id toshiba_vendor_backlight_dmi[] = {
294         {}
295 };
296
297 /*
298  * Utility
299  */
300
301 static inline void _set_bit(u32 *word, u32 mask, int value)
302 {
303         *word = (*word & ~mask) | (mask * value);
304 }
305
306 /*
307  * ACPI interface wrappers
308  */
309
310 static int write_acpi_int(const char *methodName, int val)
311 {
312         acpi_status status;
313
314         status = acpi_execute_simple_method(NULL, (char *)methodName, val);
315         return (status == AE_OK) ? 0 : -EIO;
316 }
317
318 /*
319  * Perform a raw configuration call.  Here we don't care about input or output
320  * buffer format.
321  */
322 static acpi_status tci_raw(struct toshiba_acpi_dev *dev,
323                            const u32 in[TCI_WORDS], u32 out[TCI_WORDS])
324 {
325         union acpi_object in_objs[TCI_WORDS], out_objs[TCI_WORDS + 1];
326         struct acpi_object_list params;
327         struct acpi_buffer results;
328         acpi_status status;
329         int i;
330
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];
336         }
337
338         results.length = sizeof(out_objs);
339         results.pointer = out_objs;
340
341         status = acpi_evaluate_object(dev->acpi_dev->handle,
342                                       (char *)dev->method_hci, &params,
343                                       &results);
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;
347         }
348
349         return status;
350 }
351
352 /*
353  * Common hci tasks
354  *
355  * In addition to the ACPI status, the HCI system returns a result which
356  * may be useful (such as "not supported").
357  */
358
359 static u32 hci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
360 {
361         u32 in[TCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 };
362         u32 out[TCI_WORDS];
363         acpi_status status = tci_raw(dev, in, out);
364
365         return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
366 }
367
368 static u32 hci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
369 {
370         u32 in[TCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 };
371         u32 out[TCI_WORDS];
372         acpi_status status = tci_raw(dev, in, out);
373
374         if (ACPI_FAILURE(status))
375                 return TOS_FAILURE;
376
377         *out1 = out[2];
378
379         return out[0];
380 }
381
382 /*
383  * Common sci tasks
384  */
385
386 static int sci_open(struct toshiba_acpi_dev *dev)
387 {
388         u32 in[TCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 };
389         u32 out[TCI_WORDS];
390         acpi_status status = tci_raw(dev, in, out);
391
392         if  (ACPI_FAILURE(status)) {
393                 pr_err("ACPI call to open SCI failed\n");
394                 return 0;
395         }
396
397         if (out[0] == TOS_OPEN_CLOSE_OK) {
398                 return 1;
399         } else if (out[0] == TOS_ALREADY_OPEN) {
400                 pr_info("Toshiba SCI already opened\n");
401                 return 1;
402         } else if (out[0] == TOS_NOT_SUPPORTED) {
403                 /*
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.
407                  *
408                  * Simply return 1 if we hit those affected laptops to make the
409                  * supported features work.
410                  *
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.
414                  */
415                 return 1;
416         } else if (out[0] == TOS_NOT_PRESENT) {
417                 pr_info("Toshiba SCI is not present\n");
418         }
419
420         return 0;
421 }
422
423 static void sci_close(struct toshiba_acpi_dev *dev)
424 {
425         u32 in[TCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 };
426         u32 out[TCI_WORDS];
427         acpi_status status = tci_raw(dev, in, out);
428
429         if (ACPI_FAILURE(status)) {
430                 pr_err("ACPI call to close SCI failed\n");
431                 return;
432         }
433
434         if (out[0] == TOS_OPEN_CLOSE_OK)
435                 return;
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");
440 }
441
442 static u32 sci_read(struct toshiba_acpi_dev *dev, u32 reg, u32 *out1)
443 {
444         u32 in[TCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 };
445         u32 out[TCI_WORDS];
446         acpi_status status = tci_raw(dev, in, out);
447
448         if (ACPI_FAILURE(status))
449                 return TOS_FAILURE;
450
451         *out1 = out[2];
452
453         return out[0];
454 }
455
456 static u32 sci_write(struct toshiba_acpi_dev *dev, u32 reg, u32 in1)
457 {
458         u32 in[TCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 };
459         u32 out[TCI_WORDS];
460         acpi_status status = tci_raw(dev, in, out);
461
462         return ACPI_SUCCESS(status) ? out[0] : TOS_FAILURE;
463 }
464
465 /* Illumination support */
466 static void toshiba_illumination_available(struct toshiba_acpi_dev *dev)
467 {
468         u32 in[TCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 };
469         u32 out[TCI_WORDS];
470         acpi_status status;
471
472         dev->illumination_supported = 0;
473         dev->illumination_led_registered = false;
474
475         if (!sci_open(dev))
476                 return;
477
478         status = tci_raw(dev, in, out);
479         sci_close(dev);
480         if (ACPI_FAILURE(status)) {
481                 pr_err("ACPI call to query Illumination support failed\n");
482                 return;
483         }
484
485         if (out[0] != TOS_SUCCESS)
486                 return;
487
488         dev->illumination_supported = 1;
489 }
490
491 static void toshiba_illumination_set(struct led_classdev *cdev,
492                                      enum led_brightness brightness)
493 {
494         struct toshiba_acpi_dev *dev = container_of(cdev,
495                         struct toshiba_acpi_dev, led_dev);
496         u32 result;
497         u32 state;
498
499         /* First request : initialize communication. */
500         if (!sci_open(dev))
501                 return;
502
503         /* Switch the illumination on/off */
504         state = brightness ? 1 : 0;
505         result = sci_write(dev, SCI_ILLUMINATION, state);
506         sci_close(dev);
507         if (result == TOS_FAILURE)
508                 pr_err("ACPI call for illumination failed\n");
509 }
510
511 static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev)
512 {
513         struct toshiba_acpi_dev *dev = container_of(cdev,
514                         struct toshiba_acpi_dev, led_dev);
515         u32 result;
516         u32 state;
517
518         /* First request : initialize communication. */
519         if (!sci_open(dev))
520                 return LED_OFF;
521
522         /* Check the illumination */
523         result = sci_read(dev, SCI_ILLUMINATION, &state);
524         sci_close(dev);
525         if (result == TOS_FAILURE) {
526                 pr_err("ACPI call for illumination failed\n");
527                 return LED_OFF;
528         } else if (result != TOS_SUCCESS) {
529                 return LED_OFF;
530         }
531
532         return state ? LED_FULL : LED_OFF;
533 }
534
535 /* KBD Illumination */
536 static void toshiba_kbd_illum_available(struct toshiba_acpi_dev *dev)
537 {
538         u32 in[TCI_WORDS] = { SCI_GET, SCI_KBD_ILLUM_STATUS, 0, 0, 0, 0 };
539         u32 out[TCI_WORDS];
540         acpi_status status;
541
542         dev->kbd_illum_supported = 0;
543         dev->kbd_led_registered = false;
544         dev->kbd_event_generated = false;
545
546         if (!sci_open(dev))
547                 return;
548
549         status = tci_raw(dev, in, out);
550         sci_close(dev);
551         if (ACPI_FAILURE(status)) {
552                 pr_err("ACPI call to query kbd illumination support failed\n");
553                 return;
554         }
555
556         if (out[0] != TOS_SUCCESS)
557                 return;
558
559         /*
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.
564          */
565         if (out[3] == SCI_KBD_TIME_MAX)
566                 dev->kbd_type = 2;
567         else
568                 dev->kbd_type = 1;
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;
575 }
576
577 static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time)
578 {
579         u32 result;
580
581         if (!sci_open(dev))
582                 return -EIO;
583
584         result = sci_write(dev, SCI_KBD_ILLUM_STATUS, time);
585         sci_close(dev);
586         if (result == TOS_FAILURE)
587                 pr_err("ACPI call to set KBD backlight status failed\n");
588         else if (result == TOS_NOT_SUPPORTED)
589                 return -ENODEV;
590
591         return result == TOS_SUCCESS ? 0 : -EIO;
592 }
593
594 static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time)
595 {
596         u32 result;
597
598         if (!sci_open(dev))
599                 return -EIO;
600
601         result = sci_read(dev, SCI_KBD_ILLUM_STATUS, time);
602         sci_close(dev);
603         if (result == TOS_FAILURE)
604                 pr_err("ACPI call to get KBD backlight status failed\n");
605         else if (result == TOS_NOT_SUPPORTED)
606                 return -ENODEV;
607
608         return result == TOS_SUCCESS ? 0 : -EIO;
609 }
610
611 static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev)
612 {
613         struct toshiba_acpi_dev *dev = container_of(cdev,
614                         struct toshiba_acpi_dev, kbd_led);
615         u32 result;
616         u32 state;
617
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");
622                 return LED_OFF;
623         } else if (result != TOS_SUCCESS) {
624                 return LED_OFF;
625         }
626
627         return state ? LED_FULL : LED_OFF;
628 }
629
630 static void toshiba_kbd_backlight_set(struct led_classdev *cdev,
631                                      enum led_brightness brightness)
632 {
633         struct toshiba_acpi_dev *dev = container_of(cdev,
634                         struct toshiba_acpi_dev, kbd_led);
635         u32 result;
636         u32 state;
637
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");
643 }
644
645 /* TouchPad support */
646 static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state)
647 {
648         u32 result;
649
650         if (!sci_open(dev))
651                 return -EIO;
652
653         result = sci_write(dev, SCI_TOUCHPAD, state);
654         sci_close(dev);
655         if (result == TOS_FAILURE)
656                 pr_err("ACPI call to set the touchpad failed\n");
657         else if (result == TOS_NOT_SUPPORTED)
658                 return -ENODEV;
659
660         return result == TOS_SUCCESS ? 0 : -EIO;
661 }
662
663 static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state)
664 {
665         u32 result;
666
667         if (!sci_open(dev))
668                 return -EIO;
669
670         result = sci_read(dev, SCI_TOUCHPAD, state);
671         sci_close(dev);
672         if (result == TOS_FAILURE)
673                 pr_err("ACPI call to query the touchpad failed\n");
674         else if (result == TOS_NOT_SUPPORTED)
675                 return -ENODEV;
676
677         return result == TOS_SUCCESS ? 0 : -EIO;
678 }
679
680 /* Eco Mode support */
681 static void toshiba_eco_mode_available(struct toshiba_acpi_dev *dev)
682 {
683         u32 in[TCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 0, 0, 0 };
684         u32 out[TCI_WORDS];
685         acpi_status status;
686
687         dev->eco_supported = 0;
688         dev->eco_led_registered = false;
689
690         status = tci_raw(dev, in, out);
691         if (ACPI_FAILURE(status)) {
692                 pr_err("ACPI call to get ECO led failed\n");
693                 return;
694         }
695
696         if (out[0] == TOS_INPUT_DATA_ERROR) {
697                 /*
698                  * If we receive 0x8300 (Input Data Error), it means that the
699                  * LED device is present, but that we just screwed the input
700                  * parameters.
701                  *
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.
705                  */
706                 in[3] = 1;
707                 status = tci_raw(dev, in, out);
708                 if (ACPI_FAILURE(status)) {
709                         pr_err("ACPI call to get ECO led failed\n");
710                         return;
711                 }
712
713                 if (out[0] != TOS_SUCCESS)
714                         return;
715
716                 dev->eco_supported = 1;
717         }
718 }
719
720 static enum led_brightness
721 toshiba_eco_mode_get_status(struct led_classdev *cdev)
722 {
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 };
726         u32 out[TCI_WORDS];
727         acpi_status status;
728
729         status = tci_raw(dev, in, out);
730         if (ACPI_FAILURE(status)) {
731                 pr_err("ACPI call to get ECO led failed\n");
732                 return LED_OFF;
733         }
734
735         if (out[0] != TOS_SUCCESS)
736                 return LED_OFF;
737
738         return out[2] ? LED_FULL : LED_OFF;
739 }
740
741 static void toshiba_eco_mode_set_status(struct led_classdev *cdev,
742                                      enum led_brightness brightness)
743 {
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 };
747         u32 out[TCI_WORDS];
748         acpi_status status;
749
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");
755 }
756
757 /* Accelerometer support */
758 static void toshiba_accelerometer_available(struct toshiba_acpi_dev *dev)
759 {
760         u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER2, 0, 0, 0, 0 };
761         u32 out[TCI_WORDS];
762         acpi_status status;
763
764         dev->accelerometer_supported = 0;
765
766         /*
767          * Check if the accelerometer call exists,
768          * this call also serves as initialization
769          */
770         status = tci_raw(dev, in, out);
771         if (ACPI_FAILURE(status)) {
772                 pr_err("ACPI call to query the accelerometer failed\n");
773                 return;
774         }
775
776         if (out[0] != TOS_SUCCESS)
777                 return;
778
779         dev->accelerometer_supported = 1;
780 }
781
782 static int toshiba_accelerometer_get(struct toshiba_acpi_dev *dev,
783                                      u32 *xy, u32 *z)
784 {
785         u32 in[TCI_WORDS] = { HCI_GET, HCI_ACCELEROMETER, 0, 1, 0, 0 };
786         u32 out[TCI_WORDS];
787         acpi_status status;
788
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");
793                 return -EIO;
794         }
795
796         if (out[0] == TOS_NOT_SUPPORTED)
797                 return -ENODEV;
798
799         if (out[0] != TOS_SUCCESS)
800                 return -EIO;
801
802         *xy = out[2];
803         *z = out[4];
804
805         return 0;
806 }
807
808 /* Sleep (Charge and Music) utilities support */
809 static void toshiba_usb_sleep_charge_available(struct toshiba_acpi_dev *dev)
810 {
811         u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
812         u32 out[TCI_WORDS];
813         acpi_status status;
814
815         dev->usb_sleep_charge_supported = 0;
816
817         if (!sci_open(dev))
818                 return;
819
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");
823                 sci_close(dev);
824                 return;
825         }
826
827         if (out[0] != TOS_SUCCESS) {
828                 sci_close(dev);
829                 return;
830         }
831
832         dev->usbsc_mode_base = out[4];
833
834         in[5] = SCI_USB_CHARGE_BAT_LVL;
835         status = tci_raw(dev, in, out);
836         sci_close(dev);
837         if (ACPI_FAILURE(status)) {
838                 pr_err("ACPI call to get USB Sleep and Charge mode failed\n");
839                 return;
840         }
841
842         if (out[0] != TOS_SUCCESS)
843                 return;
844
845         dev->usbsc_bat_level = out[2];
846         /* Flag as supported */
847         dev->usb_sleep_charge_supported = 1;
848 }
849
850 static int toshiba_usb_sleep_charge_get(struct toshiba_acpi_dev *dev,
851                                         u32 *mode)
852 {
853         u32 result;
854
855         if (!sci_open(dev))
856                 return -EIO;
857
858         result = sci_read(dev, SCI_USB_SLEEP_CHARGE, mode);
859         sci_close(dev);
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)
863                 return -ENODEV;
864
865         return result == TOS_SUCCESS ? 0 : -EIO;
866 }
867
868 static int toshiba_usb_sleep_charge_set(struct toshiba_acpi_dev *dev,
869                                         u32 mode)
870 {
871         u32 result;
872
873         if (!sci_open(dev))
874                 return -EIO;
875
876         result = sci_write(dev, SCI_USB_SLEEP_CHARGE, mode);
877         sci_close(dev);
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)
881                 return -ENODEV;
882
883         return result == TOS_SUCCESS ? 0 : -EIO;
884 }
885
886 static int toshiba_sleep_functions_status_get(struct toshiba_acpi_dev *dev,
887                                               u32 *mode)
888 {
889         u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
890         u32 out[TCI_WORDS];
891         acpi_status status;
892
893         if (!sci_open(dev))
894                 return -EIO;
895
896         in[5] = SCI_USB_CHARGE_BAT_LVL;
897         status = tci_raw(dev, in, out);
898         sci_close(dev);
899         if (ACPI_FAILURE(status)) {
900                 pr_err("ACPI call to get USB S&C battery level failed\n");
901                 return -EIO;
902         }
903
904         if (out[0] == TOS_NOT_SUPPORTED)
905                 return -ENODEV;
906
907         if (out[0] != TOS_SUCCESS)
908                 return -EIO;
909
910         *mode = out[2];
911
912         return 0;
913
914 }
915
916 static int toshiba_sleep_functions_status_set(struct toshiba_acpi_dev *dev,
917                                               u32 mode)
918 {
919         u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
920         u32 out[TCI_WORDS];
921         acpi_status status;
922
923         if (!sci_open(dev))
924                 return -EIO;
925
926         in[2] = mode;
927         in[5] = SCI_USB_CHARGE_BAT_LVL;
928         status = tci_raw(dev, in, out);
929         sci_close(dev);
930         if (ACPI_FAILURE(status)) {
931                 pr_err("ACPI call to set USB S&C battery level failed\n");
932                 return -EIO;
933         }
934
935         if (out[0] == TOS_NOT_SUPPORTED)
936                 return -ENODEV;
937
938         return out[0] == TOS_SUCCESS ? 0 : -EIO;
939 }
940
941 static int toshiba_usb_rapid_charge_get(struct toshiba_acpi_dev *dev,
942                                         u32 *state)
943 {
944         u32 in[TCI_WORDS] = { SCI_GET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
945         u32 out[TCI_WORDS];
946         acpi_status status;
947
948         if (!sci_open(dev))
949                 return -EIO;
950
951         in[5] = SCI_USB_CHARGE_RAPID_DSP;
952         status = tci_raw(dev, in, out);
953         sci_close(dev);
954         if (ACPI_FAILURE(status)) {
955                 pr_err("ACPI call to get USB Rapid Charge failed\n");
956                 return -EIO;
957         }
958
959         if (out[0] == TOS_NOT_SUPPORTED)
960                 return -ENODEV;
961
962         if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
963                 return -EIO;
964
965         *state = out[2];
966
967         return 0;
968 }
969
970 static int toshiba_usb_rapid_charge_set(struct toshiba_acpi_dev *dev,
971                                         u32 state)
972 {
973         u32 in[TCI_WORDS] = { SCI_SET, SCI_USB_SLEEP_CHARGE, 0, 0, 0, 0 };
974         u32 out[TCI_WORDS];
975         acpi_status status;
976
977         if (!sci_open(dev))
978                 return -EIO;
979
980         in[2] = state;
981         in[5] = SCI_USB_CHARGE_RAPID_DSP;
982         status = tci_raw(dev, in, out);
983         sci_close(dev);
984         if (ACPI_FAILURE(status)) {
985                 pr_err("ACPI call to set USB Rapid Charge failed\n");
986                 return -EIO;
987         }
988
989         if (out[0] == TOS_NOT_SUPPORTED)
990                 return -ENODEV;
991
992         return (out[0] == TOS_SUCCESS || out[0] == TOS_SUCCESS2) ? 0 : -EIO;
993 }
994
995 static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev *dev, u32 *state)
996 {
997         u32 result;
998
999         if (!sci_open(dev))
1000                 return -EIO;
1001
1002         result = sci_read(dev, SCI_USB_SLEEP_MUSIC, state);
1003         sci_close(dev);
1004         if (result == TOS_FAILURE)
1005                 pr_err("ACPI call to get Sleep and Music failed\n");
1006         else if (result == TOS_NOT_SUPPORTED)
1007                 return -ENODEV;
1008
1009         return result == TOS_SUCCESS ? 0 : -EIO;
1010 }
1011
1012 static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev *dev, u32 state)
1013 {
1014         u32 result;
1015
1016         if (!sci_open(dev))
1017                 return -EIO;
1018
1019         result = sci_write(dev, SCI_USB_SLEEP_MUSIC, state);
1020         sci_close(dev);
1021         if (result == TOS_FAILURE)
1022                 pr_err("ACPI call to set Sleep and Music failed\n");
1023         else if (result == TOS_NOT_SUPPORTED)
1024                 return -ENODEV;
1025
1026         return result == TOS_SUCCESS ? 0 : -EIO;
1027 }
1028
1029 /* Keyboard function keys */
1030 static int toshiba_function_keys_get(struct toshiba_acpi_dev *dev, u32 *mode)
1031 {
1032         u32 result;
1033
1034         if (!sci_open(dev))
1035                 return -EIO;
1036
1037         result = sci_read(dev, SCI_KBD_FUNCTION_KEYS, mode);
1038         sci_close(dev);
1039         if (result == TOS_FAILURE)
1040                 pr_err("ACPI call to get KBD function keys failed\n");
1041         else if (result == TOS_NOT_SUPPORTED)
1042                 return -ENODEV;
1043
1044         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1045 }
1046
1047 static int toshiba_function_keys_set(struct toshiba_acpi_dev *dev, u32 mode)
1048 {
1049         u32 result;
1050
1051         if (!sci_open(dev))
1052                 return -EIO;
1053
1054         result = sci_write(dev, SCI_KBD_FUNCTION_KEYS, mode);
1055         sci_close(dev);
1056         if (result == TOS_FAILURE)
1057                 pr_err("ACPI call to set KBD function keys failed\n");
1058         else if (result == TOS_NOT_SUPPORTED)
1059                 return -ENODEV;
1060
1061         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1062 }
1063
1064 /* Panel Power ON */
1065 static int toshiba_panel_power_on_get(struct toshiba_acpi_dev *dev, u32 *state)
1066 {
1067         u32 result;
1068
1069         if (!sci_open(dev))
1070                 return -EIO;
1071
1072         result = sci_read(dev, SCI_PANEL_POWER_ON, state);
1073         sci_close(dev);
1074         if (result == TOS_FAILURE)
1075                 pr_err("ACPI call to get Panel Power ON failed\n");
1076         else if (result == TOS_NOT_SUPPORTED)
1077                 return -ENODEV;
1078
1079         return result == TOS_SUCCESS ? 0 : -EIO;
1080 }
1081
1082 static int toshiba_panel_power_on_set(struct toshiba_acpi_dev *dev, u32 state)
1083 {
1084         u32 result;
1085
1086         if (!sci_open(dev))
1087                 return -EIO;
1088
1089         result = sci_write(dev, SCI_PANEL_POWER_ON, state);
1090         sci_close(dev);
1091         if (result == TOS_FAILURE)
1092                 pr_err("ACPI call to set Panel Power ON failed\n");
1093         else if (result == TOS_NOT_SUPPORTED)
1094                 return -ENODEV;
1095
1096         return result == TOS_SUCCESS ? 0 : -EIO;
1097 }
1098
1099 /* USB Three */
1100 static int toshiba_usb_three_get(struct toshiba_acpi_dev *dev, u32 *state)
1101 {
1102         u32 result;
1103
1104         if (!sci_open(dev))
1105                 return -EIO;
1106
1107         result = sci_read(dev, SCI_USB_THREE, state);
1108         sci_close(dev);
1109         if (result == TOS_FAILURE)
1110                 pr_err("ACPI call to get USB 3 failed\n");
1111         else if (result == TOS_NOT_SUPPORTED)
1112                 return -ENODEV;
1113
1114         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1115 }
1116
1117 static int toshiba_usb_three_set(struct toshiba_acpi_dev *dev, u32 state)
1118 {
1119         u32 result;
1120
1121         if (!sci_open(dev))
1122                 return -EIO;
1123
1124         result = sci_write(dev, SCI_USB_THREE, state);
1125         sci_close(dev);
1126         if (result == TOS_FAILURE)
1127                 pr_err("ACPI call to set USB 3 failed\n");
1128         else if (result == TOS_NOT_SUPPORTED)
1129                 return -ENODEV;
1130
1131         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1132 }
1133
1134 /* Hotkey Event type */
1135 static int toshiba_hotkey_event_type_get(struct toshiba_acpi_dev *dev,
1136                                          u32 *type)
1137 {
1138         u32 in[TCI_WORDS] = { HCI_GET, HCI_SYSTEM_INFO, 0x03, 0, 0, 0 };
1139         u32 out[TCI_WORDS];
1140         acpi_status status;
1141
1142         status = tci_raw(dev, in, out);
1143         if (ACPI_FAILURE(status)) {
1144                 pr_err("ACPI call to get System type failed\n");
1145                 return -EIO;
1146         }
1147
1148         if (out[0] == TOS_NOT_SUPPORTED)
1149                 return -ENODEV;
1150
1151         if (out[0] != TOS_SUCCESS)
1152                 return -EIO;
1153
1154         *type = out[3];
1155
1156         return 0;
1157 }
1158
1159 /* Wireless status (RFKill, WLAN, BT, WWAN) */
1160 static int toshiba_wireless_status(struct toshiba_acpi_dev *dev)
1161 {
1162         u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1163         u32 out[TCI_WORDS];
1164         acpi_status status;
1165
1166         in[3] = HCI_WIRELESS_STATUS;
1167         status = tci_raw(dev, in, out);
1168
1169         if (ACPI_FAILURE(status)) {
1170                 pr_err("ACPI call to get Wireless status failed\n");
1171                 return -EIO;
1172         }
1173
1174         if (out[0] == TOS_NOT_SUPPORTED)
1175                 return -ENODEV;
1176
1177         if (out[0] != TOS_SUCCESS)
1178                 return -EIO;
1179
1180         dev->killswitch = !!(out[2] & HCI_WIRELESS_STATUS);
1181
1182         return 0;
1183 }
1184
1185 /* WWAN */
1186 static void toshiba_wwan_available(struct toshiba_acpi_dev *dev)
1187 {
1188         u32 in[TCI_WORDS] = { HCI_GET, HCI_WIRELESS, 0, 0, 0, 0 };
1189         u32 out[TCI_WORDS];
1190         acpi_status status;
1191
1192         dev->wwan_supported = 0;
1193
1194         /*
1195          * WWAN support can be queried by setting the in[3] value to
1196          * HCI_WIRELESS_WWAN (0x03).
1197          *
1198          * If supported, out[0] contains TOS_SUCCESS and out[2] contains
1199          * HCI_WIRELESS_WWAN_STATUS (0x2000).
1200          *
1201          * If not supported, out[0] contains TOS_INPUT_DATA_ERROR (0x8300)
1202          * or TOS_NOT_SUPPORTED (0x8000).
1203          */
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");
1208                 return;
1209         }
1210
1211         if (out[0] != TOS_SUCCESS)
1212                 return;
1213
1214         dev->wwan_supported = (out[2] == HCI_WIRELESS_WWAN_STATUS);
1215 }
1216
1217 static int toshiba_wwan_set(struct toshiba_acpi_dev *dev, u32 state)
1218 {
1219         u32 in[TCI_WORDS] = { HCI_SET, HCI_WIRELESS, state, 0, 0, 0 };
1220         u32 out[TCI_WORDS];
1221         acpi_status status;
1222
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");
1227                 return -EIO;
1228         }
1229
1230         if (out[0] == TOS_NOT_SUPPORTED)
1231                 return -ENODEV;
1232
1233         if (out[0] != TOS_SUCCESS)
1234                 return -EIO;
1235
1236         /*
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.
1240          */
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");
1245                 return -EIO;
1246         }
1247
1248         if (out[0] == TOS_NOT_SUPPORTED)
1249                 return -ENODEV;
1250
1251         return out[0] == TOS_SUCCESS ? 0 : -EIO;
1252 }
1253
1254 /* Cooling Method */
1255 static void toshiba_cooling_method_available(struct toshiba_acpi_dev *dev)
1256 {
1257         u32 in[TCI_WORDS] = { HCI_GET, HCI_COOLING_METHOD, 0, 0, 0, 0 };
1258         u32 out[TCI_WORDS];
1259         acpi_status status;
1260
1261         dev->cooling_method_supported = 0;
1262         dev->max_cooling_method = 0;
1263
1264         status = tci_raw(dev, in, out);
1265         if (ACPI_FAILURE(status)) {
1266                 pr_err("ACPI call to get Cooling Method failed\n");
1267                 return;
1268         }
1269
1270         if (out[0] != TOS_SUCCESS && out[0] != TOS_SUCCESS2)
1271                 return;
1272
1273         dev->cooling_method_supported = 1;
1274         dev->max_cooling_method = out[3];
1275 }
1276
1277 static int toshiba_cooling_method_get(struct toshiba_acpi_dev *dev, u32 *state)
1278 {
1279         u32 result = hci_read(dev, HCI_COOLING_METHOD, state);
1280
1281         if (result == TOS_FAILURE)
1282                 pr_err("ACPI call to get Cooling Method failed\n");
1283
1284         if (result == TOS_NOT_SUPPORTED)
1285                 return -ENODEV;
1286
1287         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1288 }
1289
1290 static int toshiba_cooling_method_set(struct toshiba_acpi_dev *dev, u32 state)
1291 {
1292         u32 result = hci_write(dev, HCI_COOLING_METHOD, state);
1293
1294         if (result == TOS_FAILURE)
1295                 pr_err("ACPI call to set Cooling Method failed\n");
1296
1297         if (result == TOS_NOT_SUPPORTED)
1298                 return -ENODEV;
1299
1300         return (result == TOS_SUCCESS || result == TOS_SUCCESS2) ? 0 : -EIO;
1301 }
1302
1303 /* Transflective Backlight */
1304 static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 *status)
1305 {
1306         u32 result = hci_read(dev, HCI_TR_BACKLIGHT, status);
1307
1308         if (result == TOS_FAILURE)
1309                 pr_err("ACPI call to get Transflective Backlight failed\n");
1310         else if (result == TOS_NOT_SUPPORTED)
1311                 return -ENODEV;
1312
1313         return result == TOS_SUCCESS ? 0 : -EIO;
1314 }
1315
1316 static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, u32 status)
1317 {
1318         u32 result = hci_write(dev, HCI_TR_BACKLIGHT, !status);
1319
1320         if (result == TOS_FAILURE)
1321                 pr_err("ACPI call to set Transflective Backlight failed\n");
1322         else if (result == TOS_NOT_SUPPORTED)
1323                 return -ENODEV;
1324
1325         return result == TOS_SUCCESS ? 0 : -EIO;
1326 }
1327
1328 static struct proc_dir_entry *toshiba_proc_dir;
1329
1330 /* LCD Brightness */
1331 static int __get_lcd_brightness(struct toshiba_acpi_dev *dev)
1332 {
1333         int brightness = 0;
1334         u32 result;
1335         u32 value;
1336
1337         if (dev->tr_backlight_supported) {
1338                 int ret = get_tr_backlight_status(dev, &value);
1339
1340                 if (ret)
1341                         return ret;
1342                 if (value)
1343                         return 0;
1344                 brightness++;
1345         }
1346
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)
1351                 return -ENODEV;
1352
1353         return result == TOS_SUCCESS ?
1354                         brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT) :
1355                         -EIO;
1356 }
1357
1358 static int get_lcd_brightness(struct backlight_device *bd)
1359 {
1360         struct toshiba_acpi_dev *dev = bl_get_data(bd);
1361
1362         return __get_lcd_brightness(dev);
1363 }
1364
1365 static int lcd_proc_show(struct seq_file *m, void *v)
1366 {
1367         struct toshiba_acpi_dev *dev = m->private;
1368         int levels;
1369         int value;
1370
1371         if (!dev->backlight_dev)
1372                 return -ENODEV;
1373
1374         levels = dev->backlight_dev->props.max_brightness + 1;
1375         value = get_lcd_brightness(dev->backlight_dev);
1376         if (value < 0) {
1377                 pr_err("Error reading LCD brightness\n");
1378                 return value;
1379         }
1380
1381         seq_printf(m, "brightness:              %d\n", value);
1382         seq_printf(m, "brightness_levels:       %d\n", levels);
1383
1384         return 0;
1385 }
1386
1387 static int lcd_proc_open(struct inode *inode, struct file *file)
1388 {
1389         return single_open(file, lcd_proc_show, PDE_DATA(inode));
1390 }
1391
1392 static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value)
1393 {
1394         u32 result;
1395
1396         if (dev->tr_backlight_supported) {
1397                 int ret = set_tr_backlight_status(dev, !value);
1398
1399                 if (ret)
1400                         return ret;
1401                 if (value)
1402                         value--;
1403         }
1404
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)
1410                 return -ENODEV;
1411
1412         return result == TOS_SUCCESS ? 0 : -EIO;
1413 }
1414
1415 static int set_lcd_status(struct backlight_device *bd)
1416 {
1417         struct toshiba_acpi_dev *dev = bl_get_data(bd);
1418
1419         return set_lcd_brightness(dev, bd->props.brightness);
1420 }
1421
1422 static ssize_t lcd_proc_write(struct file *file, const char __user *buf,
1423                               size_t count, loff_t *pos)
1424 {
1425         struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
1426         char cmd[42];
1427         size_t len;
1428         int levels;
1429         int value;
1430
1431         len = min(count, sizeof(cmd) - 1);
1432         if (copy_from_user(cmd, buf, len))
1433                 return -EFAULT;
1434         cmd[len] = '\0';
1435
1436         levels = dev->backlight_dev->props.max_brightness + 1;
1437         if (sscanf(cmd, " brightness : %i", &value) != 1 &&
1438             value < 0 && value > levels)
1439                 return -EINVAL;
1440
1441         if (set_lcd_brightness(dev, value))
1442                 return -EIO;
1443
1444         return count;
1445 }
1446
1447 static const struct file_operations lcd_proc_fops = {
1448         .owner          = THIS_MODULE,
1449         .open           = lcd_proc_open,
1450         .read           = seq_read,
1451         .llseek         = seq_lseek,
1452         .release        = single_release,
1453         .write          = lcd_proc_write,
1454 };
1455
1456 /* Video-Out */
1457 static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status)
1458 {
1459         u32 result = hci_read(dev, HCI_VIDEO_OUT, status);
1460
1461         if (result == TOS_FAILURE)
1462                 pr_err("ACPI call to get Video-Out failed\n");
1463         else if (result == TOS_NOT_SUPPORTED)
1464                 return -ENODEV;
1465
1466         return result == TOS_SUCCESS ? 0 : -EIO;
1467 }
1468
1469 static int video_proc_show(struct seq_file *m, void *v)
1470 {
1471         struct toshiba_acpi_dev *dev = m->private;
1472         int is_lcd, is_crt, is_tv;
1473         u32 value;
1474
1475         if (get_video_status(dev, &value))
1476                 return -EIO;
1477
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;
1481
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);
1485
1486         return 0;
1487 }
1488
1489 static int video_proc_open(struct inode *inode, struct file *file)
1490 {
1491         return single_open(file, video_proc_show, PDE_DATA(inode));
1492 }
1493
1494 static ssize_t video_proc_write(struct file *file, const char __user *buf,
1495                                 size_t count, loff_t *pos)
1496 {
1497         struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
1498         char *buffer;
1499         char *cmd;
1500         int lcd_out = -1, crt_out = -1, tv_out = -1;
1501         int remain = count;
1502         int value;
1503         int ret;
1504         u32 video_out;
1505
1506         cmd = memdup_user_nul(buf, count);
1507         if (IS_ERR(cmd))
1508                 return PTR_ERR(cmd);
1509
1510         buffer = cmd;
1511
1512         /*
1513          * Scan expression.  Multiple expressions may be delimited with ;
1514          * NOTE: To keep scanning simple, invalid fields are ignored.
1515          */
1516         while (remain) {
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)
1522                         tv_out = value & 1;
1523                 /* Advance to one character past the next ; */
1524                 do {
1525                         ++buffer;
1526                         --remain;
1527                 } while (remain && *(buffer - 1) != ';');
1528         }
1529
1530         kfree(cmd);
1531
1532         ret = get_video_status(dev, &video_out);
1533         if (!ret) {
1534                 unsigned int new_video_out = video_out;
1535
1536                 if (lcd_out != -1)
1537                         _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out);
1538                 if (crt_out != -1)
1539                         _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out);
1540                 if (tv_out != -1)
1541                         _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out);
1542                 /*
1543                  * To avoid unnecessary video disruption, only write the new
1544                  * video setting if something changed.
1545                  */
1546                 if (new_video_out != video_out)
1547                         ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out);
1548         }
1549
1550         return ret ? -EIO : count;
1551 }
1552
1553 static const struct file_operations video_proc_fops = {
1554         .owner          = THIS_MODULE,
1555         .open           = video_proc_open,
1556         .read           = seq_read,
1557         .llseek         = seq_lseek,
1558         .release        = single_release,
1559         .write          = video_proc_write,
1560 };
1561
1562 /* Fan status */
1563 static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status)
1564 {
1565         u32 result = hci_read(dev, HCI_FAN, status);
1566
1567         if (result == TOS_FAILURE)
1568                 pr_err("ACPI call to get Fan status failed\n");
1569         else if (result == TOS_NOT_SUPPORTED)
1570                 return -ENODEV;
1571
1572         return result == TOS_SUCCESS ? 0 : -EIO;
1573 }
1574
1575 static int set_fan_status(struct toshiba_acpi_dev *dev, u32 status)
1576 {
1577         u32 result = hci_write(dev, HCI_FAN, status);
1578
1579         if (result == TOS_FAILURE)
1580                 pr_err("ACPI call to set Fan status failed\n");
1581         else if (result == TOS_NOT_SUPPORTED)
1582                 return -ENODEV;
1583
1584         return result == TOS_SUCCESS ? 0 : -EIO;
1585 }
1586
1587 static int fan_proc_show(struct seq_file *m, void *v)
1588 {
1589         struct toshiba_acpi_dev *dev = m->private;
1590         u32 value;
1591
1592         if (get_fan_status(dev, &value))
1593                 return -EIO;
1594
1595         seq_printf(m, "running:                 %d\n", (value > 0));
1596         seq_printf(m, "force_on:                %d\n", dev->force_fan);
1597
1598         return 0;
1599 }
1600
1601 static int fan_proc_open(struct inode *inode, struct file *file)
1602 {
1603         return single_open(file, fan_proc_show, PDE_DATA(inode));
1604 }
1605
1606 static ssize_t fan_proc_write(struct file *file, const char __user *buf,
1607                               size_t count, loff_t *pos)
1608 {
1609         struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
1610         char cmd[42];
1611         size_t len;
1612         int value;
1613
1614         len = min(count, sizeof(cmd) - 1);
1615         if (copy_from_user(cmd, buf, len))
1616                 return -EFAULT;
1617         cmd[len] = '\0';
1618
1619         if (sscanf(cmd, " force_on : %i", &value) != 1 &&
1620             value != 0 && value != 1)
1621                 return -EINVAL;
1622
1623         if (set_fan_status(dev, value))
1624                 return -EIO;
1625
1626         dev->force_fan = value;
1627
1628         return count;
1629 }
1630
1631 static const struct file_operations fan_proc_fops = {
1632         .owner          = THIS_MODULE,
1633         .open           = fan_proc_open,
1634         .read           = seq_read,
1635         .llseek         = seq_lseek,
1636         .release        = single_release,
1637         .write          = fan_proc_write,
1638 };
1639
1640 static int keys_proc_show(struct seq_file *m, void *v)
1641 {
1642         struct toshiba_acpi_dev *dev = m->private;
1643
1644         seq_printf(m, "hotkey_ready:            %d\n", dev->key_event_valid);
1645         seq_printf(m, "hotkey:                  0x%04x\n", dev->last_key_event);
1646
1647         return 0;
1648 }
1649
1650 static int keys_proc_open(struct inode *inode, struct file *file)
1651 {
1652         return single_open(file, keys_proc_show, PDE_DATA(inode));
1653 }
1654
1655 static ssize_t keys_proc_write(struct file *file, const char __user *buf,
1656                                size_t count, loff_t *pos)
1657 {
1658         struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file));
1659         char cmd[42];
1660         size_t len;
1661         int value;
1662
1663         len = min(count, sizeof(cmd) - 1);
1664         if (copy_from_user(cmd, buf, len))
1665                 return -EFAULT;
1666         cmd[len] = '\0';
1667
1668         if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0)
1669                 dev->key_event_valid = 0;
1670         else
1671                 return -EINVAL;
1672
1673         return count;
1674 }
1675
1676 static const struct file_operations keys_proc_fops = {
1677         .owner          = THIS_MODULE,
1678         .open           = keys_proc_open,
1679         .read           = seq_read,
1680         .llseek         = seq_lseek,
1681         .release        = single_release,
1682         .write          = keys_proc_write,
1683 };
1684
1685 static int __maybe_unused version_proc_show(struct seq_file *m, void *v)
1686 {
1687         seq_printf(m, "driver:                  %s\n", TOSHIBA_ACPI_VERSION);
1688         seq_printf(m, "proc_interface:          %d\n", PROC_INTERFACE_VERSION);
1689         return 0;
1690 }
1691
1692 /*
1693  * Proc and module init
1694  */
1695
1696 #define PROC_TOSHIBA            "toshiba"
1697
1698 static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
1699 {
1700         if (dev->backlight_dev)
1701                 proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1702                                  &lcd_proc_fops, dev);
1703         if (dev->video_supported)
1704                 proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1705                                  &video_proc_fops, dev);
1706         if (dev->fan_supported)
1707                 proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1708                                  &fan_proc_fops, dev);
1709         if (dev->hotkey_dev)
1710                 proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir,
1711                                  &keys_proc_fops, dev);
1712         proc_create_single_data("version", S_IRUGO, toshiba_proc_dir,
1713                         version_proc_show, dev);
1714 }
1715
1716 static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev)
1717 {
1718         if (dev->backlight_dev)
1719                 remove_proc_entry("lcd", toshiba_proc_dir);
1720         if (dev->video_supported)
1721                 remove_proc_entry("video", toshiba_proc_dir);
1722         if (dev->fan_supported)
1723                 remove_proc_entry("fan", toshiba_proc_dir);
1724         if (dev->hotkey_dev)
1725                 remove_proc_entry("keys", toshiba_proc_dir);
1726         remove_proc_entry("version", toshiba_proc_dir);
1727 }
1728
1729 static const struct backlight_ops toshiba_backlight_data = {
1730         .options = BL_CORE_SUSPENDRESUME,
1731         .get_brightness = get_lcd_brightness,
1732         .update_status  = set_lcd_status,
1733 };
1734
1735 /* Keyboard backlight work */
1736 static void toshiba_acpi_kbd_bl_work(struct work_struct *work);
1737
1738 static DECLARE_WORK(kbd_bl_work, toshiba_acpi_kbd_bl_work);
1739
1740 /*
1741  * Sysfs files
1742  */
1743 static ssize_t version_show(struct device *dev,
1744                             struct device_attribute *attr, char *buf)
1745 {
1746         return sprintf(buf, "%s\n", TOSHIBA_ACPI_VERSION);
1747 }
1748 static DEVICE_ATTR_RO(version);
1749
1750 static ssize_t fan_store(struct device *dev,
1751                          struct device_attribute *attr,
1752                          const char *buf, size_t count)
1753 {
1754         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1755         int state;
1756         int ret;
1757
1758         ret = kstrtoint(buf, 0, &state);
1759         if (ret)
1760                 return ret;
1761
1762         if (state != 0 && state != 1)
1763                 return -EINVAL;
1764
1765         ret = set_fan_status(toshiba, state);
1766         if (ret)
1767                 return ret;
1768
1769         return count;
1770 }
1771
1772 static ssize_t fan_show(struct device *dev,
1773                         struct device_attribute *attr, char *buf)
1774 {
1775         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1776         u32 value;
1777         int ret;
1778
1779         ret = get_fan_status(toshiba, &value);
1780         if (ret)
1781                 return ret;
1782
1783         return sprintf(buf, "%d\n", value);
1784 }
1785 static DEVICE_ATTR_RW(fan);
1786
1787 static ssize_t kbd_backlight_mode_store(struct device *dev,
1788                                         struct device_attribute *attr,
1789                                         const char *buf, size_t count)
1790 {
1791         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1792         int mode;
1793         int ret;
1794
1795
1796         ret = kstrtoint(buf, 0, &mode);
1797         if (ret)
1798                 return ret;
1799
1800         /* Check for supported modes depending on keyboard backlight type */
1801         if (toshiba->kbd_type == 1) {
1802                 /* Type 1 supports SCI_KBD_MODE_FNZ and SCI_KBD_MODE_AUTO */
1803                 if (mode != SCI_KBD_MODE_FNZ && mode != SCI_KBD_MODE_AUTO)
1804                         return -EINVAL;
1805         } else if (toshiba->kbd_type == 2) {
1806                 /* Type 2 doesn't support SCI_KBD_MODE_FNZ */
1807                 if (mode != SCI_KBD_MODE_AUTO && mode != SCI_KBD_MODE_ON &&
1808                     mode != SCI_KBD_MODE_OFF)
1809                         return -EINVAL;
1810         }
1811
1812         /*
1813          * Set the Keyboard Backlight Mode where:
1814          *      Auto - KBD backlight turns off automatically in given time
1815          *      FN-Z - KBD backlight "toggles" when hotkey pressed
1816          *      ON   - KBD backlight is always on
1817          *      OFF  - KBD backlight is always off
1818          */
1819
1820         /* Only make a change if the actual mode has changed */
1821         if (toshiba->kbd_mode != mode) {
1822                 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1823                 int time = toshiba->kbd_time << HCI_MISC_SHIFT;
1824
1825                 /* OR the "base time" to the actual method format */
1826                 if (toshiba->kbd_type == 1) {
1827                         /* Type 1 requires the current mode */
1828                         time |= toshiba->kbd_mode;
1829                 } else if (toshiba->kbd_type == 2) {
1830                         /* Type 2 requires the desired mode */
1831                         time |= mode;
1832                 }
1833
1834                 ret = toshiba_kbd_illum_status_set(toshiba, time);
1835                 if (ret)
1836                         return ret;
1837
1838                 toshiba->kbd_mode = mode;
1839                 toshiba_acpi->kbd_mode = mode;
1840
1841                 /*
1842                  * Some laptop models with the second generation backlit
1843                  * keyboard (type 2) do not generate the keyboard backlight
1844                  * changed event (0x92), and thus, the driver will never update
1845                  * the sysfs entries.
1846                  *
1847                  * The event is generated right when changing the keyboard
1848                  * backlight mode and the *notify function will set the
1849                  * kbd_event_generated to true.
1850                  *
1851                  * In case the event is not generated, schedule the keyboard
1852                  * backlight work to update the sysfs entries and emulate the
1853                  * event via genetlink.
1854                  */
1855                 if (toshiba->kbd_type == 2 &&
1856                     !toshiba->kbd_event_generated)
1857                         schedule_work(&kbd_bl_work);
1858         }
1859
1860         return count;
1861 }
1862
1863 static ssize_t kbd_backlight_mode_show(struct device *dev,
1864                                        struct device_attribute *attr,
1865                                        char *buf)
1866 {
1867         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1868         u32 time;
1869
1870         if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1871                 return -EIO;
1872
1873         return sprintf(buf, "%i\n", time & SCI_KBD_MODE_MASK);
1874 }
1875 static DEVICE_ATTR_RW(kbd_backlight_mode);
1876
1877 static ssize_t kbd_type_show(struct device *dev,
1878                              struct device_attribute *attr, char *buf)
1879 {
1880         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1881
1882         return sprintf(buf, "%d\n", toshiba->kbd_type);
1883 }
1884 static DEVICE_ATTR_RO(kbd_type);
1885
1886 static ssize_t available_kbd_modes_show(struct device *dev,
1887                                         struct device_attribute *attr,
1888                                         char *buf)
1889 {
1890         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1891
1892         if (toshiba->kbd_type == 1)
1893                 return sprintf(buf, "0x%x 0x%x\n",
1894                                SCI_KBD_MODE_FNZ, SCI_KBD_MODE_AUTO);
1895
1896         return sprintf(buf, "0x%x 0x%x 0x%x\n",
1897                        SCI_KBD_MODE_AUTO, SCI_KBD_MODE_ON, SCI_KBD_MODE_OFF);
1898 }
1899 static DEVICE_ATTR_RO(available_kbd_modes);
1900
1901 static ssize_t kbd_backlight_timeout_store(struct device *dev,
1902                                            struct device_attribute *attr,
1903                                            const char *buf, size_t count)
1904 {
1905         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1906         int time;
1907         int ret;
1908
1909         ret = kstrtoint(buf, 0, &time);
1910         if (ret)
1911                 return ret;
1912
1913         /* Check for supported values depending on kbd_type */
1914         if (toshiba->kbd_type == 1) {
1915                 if (time < 0 || time > 60)
1916                         return -EINVAL;
1917         } else if (toshiba->kbd_type == 2) {
1918                 if (time < 1 || time > 60)
1919                         return -EINVAL;
1920         }
1921
1922         /* Set the Keyboard Backlight Timeout */
1923
1924         /* Only make a change if the actual timeout has changed */
1925         if (toshiba->kbd_time != time) {
1926                 /* Shift the time to "base time" (0x3c0000 == 60 seconds) */
1927                 time = time << HCI_MISC_SHIFT;
1928                 /* OR the "base time" to the actual method format */
1929                 if (toshiba->kbd_type == 1)
1930                         time |= SCI_KBD_MODE_FNZ;
1931                 else if (toshiba->kbd_type == 2)
1932                         time |= SCI_KBD_MODE_AUTO;
1933
1934                 ret = toshiba_kbd_illum_status_set(toshiba, time);
1935                 if (ret)
1936                         return ret;
1937
1938                 toshiba->kbd_time = time >> HCI_MISC_SHIFT;
1939         }
1940
1941         return count;
1942 }
1943
1944 static ssize_t kbd_backlight_timeout_show(struct device *dev,
1945                                           struct device_attribute *attr,
1946                                           char *buf)
1947 {
1948         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1949         u32 time;
1950
1951         if (toshiba_kbd_illum_status_get(toshiba, &time) < 0)
1952                 return -EIO;
1953
1954         return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT);
1955 }
1956 static DEVICE_ATTR_RW(kbd_backlight_timeout);
1957
1958 static ssize_t touchpad_store(struct device *dev,
1959                               struct device_attribute *attr,
1960                               const char *buf, size_t count)
1961 {
1962         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1963         int state;
1964         int ret;
1965
1966         /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */
1967         ret = kstrtoint(buf, 0, &state);
1968         if (ret)
1969                 return ret;
1970         if (state != 0 && state != 1)
1971                 return -EINVAL;
1972
1973         ret = toshiba_touchpad_set(toshiba, state);
1974         if (ret)
1975                 return ret;
1976
1977         return count;
1978 }
1979
1980 static ssize_t touchpad_show(struct device *dev,
1981                              struct device_attribute *attr, char *buf)
1982 {
1983         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1984         u32 state;
1985         int ret;
1986
1987         ret = toshiba_touchpad_get(toshiba, &state);
1988         if (ret < 0)
1989                 return ret;
1990
1991         return sprintf(buf, "%i\n", state);
1992 }
1993 static DEVICE_ATTR_RW(touchpad);
1994
1995 static ssize_t usb_sleep_charge_show(struct device *dev,
1996                                      struct device_attribute *attr, char *buf)
1997 {
1998         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
1999         u32 mode;
2000         int ret;
2001
2002         ret = toshiba_usb_sleep_charge_get(toshiba, &mode);
2003         if (ret < 0)
2004                 return ret;
2005
2006         return sprintf(buf, "%x\n", mode & SCI_USB_CHARGE_MODE_MASK);
2007 }
2008
2009 static ssize_t usb_sleep_charge_store(struct device *dev,
2010                                       struct device_attribute *attr,
2011                                       const char *buf, size_t count)
2012 {
2013         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2014         int state;
2015         u32 mode;
2016         int ret;
2017
2018         ret = kstrtoint(buf, 0, &state);
2019         if (ret)
2020                 return ret;
2021         /*
2022          * Check for supported values, where:
2023          * 0 - Disabled
2024          * 1 - Alternate (Non USB conformant devices that require more power)
2025          * 2 - Auto (USB conformant devices)
2026          * 3 - Typical
2027          */
2028         if (state != 0 && state != 1 && state != 2 && state != 3)
2029                 return -EINVAL;
2030
2031         /* Set the USB charging mode to internal value */
2032         mode = toshiba->usbsc_mode_base;
2033         if (state == 0)
2034                 mode |= SCI_USB_CHARGE_DISABLED;
2035         else if (state == 1)
2036                 mode |= SCI_USB_CHARGE_ALTERNATE;
2037         else if (state == 2)
2038                 mode |= SCI_USB_CHARGE_AUTO;
2039         else if (state == 3)
2040                 mode |= SCI_USB_CHARGE_TYPICAL;
2041
2042         ret = toshiba_usb_sleep_charge_set(toshiba, mode);
2043         if (ret)
2044                 return ret;
2045
2046         return count;
2047 }
2048 static DEVICE_ATTR_RW(usb_sleep_charge);
2049
2050 static ssize_t sleep_functions_on_battery_show(struct device *dev,
2051                                                struct device_attribute *attr,
2052                                                char *buf)
2053 {
2054         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2055         int bat_lvl, status;
2056         u32 state;
2057         int ret;
2058         int tmp;
2059
2060         ret = toshiba_sleep_functions_status_get(toshiba, &state);
2061         if (ret < 0)
2062                 return ret;
2063
2064         /* Determine the status: 0x4 - Enabled | 0x1 - Disabled */
2065         tmp = state & SCI_USB_CHARGE_BAT_MASK;
2066         status = (tmp == 0x4) ? 1 : 0;
2067         /* Determine the battery level set */
2068         bat_lvl = state >> HCI_MISC_SHIFT;
2069
2070         return sprintf(buf, "%d %d\n", status, bat_lvl);
2071 }
2072
2073 static ssize_t sleep_functions_on_battery_store(struct device *dev,
2074                                                 struct device_attribute *attr,
2075                                                 const char *buf, size_t count)
2076 {
2077         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2078         u32 status;
2079         int value;
2080         int ret;
2081         int tmp;
2082
2083         ret = kstrtoint(buf, 0, &value);
2084         if (ret)
2085                 return ret;
2086
2087         /*
2088          * Set the status of the function:
2089          * 0 - Disabled
2090          * 1-100 - Enabled
2091          */
2092         if (value < 0 || value > 100)
2093                 return -EINVAL;
2094
2095         if (value == 0) {
2096                 tmp = toshiba->usbsc_bat_level << HCI_MISC_SHIFT;
2097                 status = tmp | SCI_USB_CHARGE_BAT_LVL_OFF;
2098         } else {
2099                 tmp = value << HCI_MISC_SHIFT;
2100                 status = tmp | SCI_USB_CHARGE_BAT_LVL_ON;
2101         }
2102         ret = toshiba_sleep_functions_status_set(toshiba, status);
2103         if (ret < 0)
2104                 return ret;
2105
2106         toshiba->usbsc_bat_level = status >> HCI_MISC_SHIFT;
2107
2108         return count;
2109 }
2110 static DEVICE_ATTR_RW(sleep_functions_on_battery);
2111
2112 static ssize_t usb_rapid_charge_show(struct device *dev,
2113                                      struct device_attribute *attr, char *buf)
2114 {
2115         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2116         u32 state;
2117         int ret;
2118
2119         ret = toshiba_usb_rapid_charge_get(toshiba, &state);
2120         if (ret < 0)
2121                 return ret;
2122
2123         return sprintf(buf, "%d\n", state);
2124 }
2125
2126 static ssize_t usb_rapid_charge_store(struct device *dev,
2127                                       struct device_attribute *attr,
2128                                       const char *buf, size_t count)
2129 {
2130         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2131         int state;
2132         int ret;
2133
2134         ret = kstrtoint(buf, 0, &state);
2135         if (ret)
2136                 return ret;
2137         if (state != 0 && state != 1)
2138                 return -EINVAL;
2139
2140         ret = toshiba_usb_rapid_charge_set(toshiba, state);
2141         if (ret)
2142                 return ret;
2143
2144         return count;
2145 }
2146 static DEVICE_ATTR_RW(usb_rapid_charge);
2147
2148 static ssize_t usb_sleep_music_show(struct device *dev,
2149                                     struct device_attribute *attr, char *buf)
2150 {
2151         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2152         u32 state;
2153         int ret;
2154
2155         ret = toshiba_usb_sleep_music_get(toshiba, &state);
2156         if (ret < 0)
2157                 return ret;
2158
2159         return sprintf(buf, "%d\n", state);
2160 }
2161
2162 static ssize_t usb_sleep_music_store(struct device *dev,
2163                                      struct device_attribute *attr,
2164                                      const char *buf, size_t count)
2165 {
2166         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2167         int state;
2168         int ret;
2169
2170         ret = kstrtoint(buf, 0, &state);
2171         if (ret)
2172                 return ret;
2173         if (state != 0 && state != 1)
2174                 return -EINVAL;
2175
2176         ret = toshiba_usb_sleep_music_set(toshiba, state);
2177         if (ret)
2178                 return ret;
2179
2180         return count;
2181 }
2182 static DEVICE_ATTR_RW(usb_sleep_music);
2183
2184 static ssize_t kbd_function_keys_show(struct device *dev,
2185                                       struct device_attribute *attr, char *buf)
2186 {
2187         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2188         int mode;
2189         int ret;
2190
2191         ret = toshiba_function_keys_get(toshiba, &mode);
2192         if (ret < 0)
2193                 return ret;
2194
2195         return sprintf(buf, "%d\n", mode);
2196 }
2197
2198 static ssize_t kbd_function_keys_store(struct device *dev,
2199                                        struct device_attribute *attr,
2200                                        const char *buf, size_t count)
2201 {
2202         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2203         int mode;
2204         int ret;
2205
2206         ret = kstrtoint(buf, 0, &mode);
2207         if (ret)
2208                 return ret;
2209         /*
2210          * Check for the function keys mode where:
2211          * 0 - Normal operation (F{1-12} as usual and hotkeys via FN-F{1-12})
2212          * 1 - Special functions (Opposite of the above setting)
2213          */
2214         if (mode != 0 && mode != 1)
2215                 return -EINVAL;
2216
2217         ret = toshiba_function_keys_set(toshiba, mode);
2218         if (ret)
2219                 return ret;
2220
2221         pr_info("Reboot for changes to KBD Function Keys to take effect");
2222
2223         return count;
2224 }
2225 static DEVICE_ATTR_RW(kbd_function_keys);
2226
2227 static ssize_t panel_power_on_show(struct device *dev,
2228                                    struct device_attribute *attr, char *buf)
2229 {
2230         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2231         u32 state;
2232         int ret;
2233
2234         ret = toshiba_panel_power_on_get(toshiba, &state);
2235         if (ret < 0)
2236                 return ret;
2237
2238         return sprintf(buf, "%d\n", state);
2239 }
2240
2241 static ssize_t panel_power_on_store(struct device *dev,
2242                                     struct device_attribute *attr,
2243                                     const char *buf, size_t count)
2244 {
2245         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2246         int state;
2247         int ret;
2248
2249         ret = kstrtoint(buf, 0, &state);
2250         if (ret)
2251                 return ret;
2252         if (state != 0 && state != 1)
2253                 return -EINVAL;
2254
2255         ret = toshiba_panel_power_on_set(toshiba, state);
2256         if (ret)
2257                 return ret;
2258
2259         pr_info("Reboot for changes to Panel Power ON to take effect");
2260
2261         return count;
2262 }
2263 static DEVICE_ATTR_RW(panel_power_on);
2264
2265 static ssize_t usb_three_show(struct device *dev,
2266                               struct device_attribute *attr, char *buf)
2267 {
2268         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2269         u32 state;
2270         int ret;
2271
2272         ret = toshiba_usb_three_get(toshiba, &state);
2273         if (ret < 0)
2274                 return ret;
2275
2276         return sprintf(buf, "%d\n", state);
2277 }
2278
2279 static ssize_t usb_three_store(struct device *dev,
2280                                struct device_attribute *attr,
2281                                const char *buf, size_t count)
2282 {
2283         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2284         int state;
2285         int ret;
2286
2287         ret = kstrtoint(buf, 0, &state);
2288         if (ret)
2289                 return ret;
2290         /*
2291          * Check for USB 3 mode where:
2292          * 0 - Disabled (Acts like a USB 2 port, saving power)
2293          * 1 - Enabled
2294          */
2295         if (state != 0 && state != 1)
2296                 return -EINVAL;
2297
2298         ret = toshiba_usb_three_set(toshiba, state);
2299         if (ret)
2300                 return ret;
2301
2302         pr_info("Reboot for changes to USB 3 to take effect");
2303
2304         return count;
2305 }
2306 static DEVICE_ATTR_RW(usb_three);
2307
2308 static ssize_t cooling_method_show(struct device *dev,
2309                                    struct device_attribute *attr, char *buf)
2310 {
2311         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2312         int state;
2313         int ret;
2314
2315         ret = toshiba_cooling_method_get(toshiba, &state);
2316         if (ret < 0)
2317                 return ret;
2318
2319         return sprintf(buf, "%d %d\n", state, toshiba->max_cooling_method);
2320 }
2321
2322 static ssize_t cooling_method_store(struct device *dev,
2323                                     struct device_attribute *attr,
2324                                     const char *buf, size_t count)
2325 {
2326         struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
2327         int state;
2328         int ret;
2329
2330         ret = kstrtoint(buf, 0, &state);
2331         if (ret)
2332                 return ret;
2333
2334         /*
2335          * Check for supported values
2336          * Depending on the laptop model, some only support these two:
2337          * 0 - Maximum Performance
2338          * 1 - Battery Optimized
2339          *
2340          * While some others support all three methods:
2341          * 0 - Maximum Performance
2342          * 1 - Performance
2343          * 2 - Battery Optimized
2344          */
2345         if (state < 0 || state > toshiba->max_cooling_method)
2346                 return -EINVAL;
2347
2348         ret = toshiba_cooling_method_set(toshiba, state);
2349         if (ret)
2350                 return ret;
2351
2352         return count;
2353 }
2354 static DEVICE_ATTR_RW(cooling_method);
2355
2356 static struct attribute *toshiba_attributes[] = {
2357         &dev_attr_version.attr,
2358         &dev_attr_fan.attr,
2359         &dev_attr_kbd_backlight_mode.attr,
2360         &dev_attr_kbd_type.attr,
2361         &dev_attr_available_kbd_modes.attr,
2362         &dev_attr_kbd_backlight_timeout.attr,
2363         &dev_attr_touchpad.attr,
2364         &dev_attr_usb_sleep_charge.attr,
2365         &dev_attr_sleep_functions_on_battery.attr,
2366         &dev_attr_usb_rapid_charge.attr,
2367         &dev_attr_usb_sleep_music.attr,
2368         &dev_attr_kbd_function_keys.attr,
2369         &dev_attr_panel_power_on.attr,
2370         &dev_attr_usb_three.attr,
2371         &dev_attr_cooling_method.attr,
2372         NULL,
2373 };
2374
2375 static umode_t toshiba_sysfs_is_visible(struct kobject *kobj,
2376                                         struct attribute *attr, int idx)
2377 {
2378         struct device *dev = container_of(kobj, struct device, kobj);
2379         struct toshiba_acpi_dev *drv = dev_get_drvdata(dev);
2380         bool exists = true;
2381
2382         if (attr == &dev_attr_fan.attr)
2383                 exists = (drv->fan_supported) ? true : false;
2384         else if (attr == &dev_attr_kbd_backlight_mode.attr)
2385                 exists = (drv->kbd_illum_supported) ? true : false;
2386         else if (attr == &dev_attr_kbd_backlight_timeout.attr)
2387                 exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false;
2388         else if (attr == &dev_attr_touchpad.attr)
2389                 exists = (drv->touchpad_supported) ? true : false;
2390         else if (attr == &dev_attr_usb_sleep_charge.attr)
2391                 exists = (drv->usb_sleep_charge_supported) ? true : false;
2392         else if (attr == &dev_attr_sleep_functions_on_battery.attr)
2393                 exists = (drv->usb_sleep_charge_supported) ? true : false;
2394         else if (attr == &dev_attr_usb_rapid_charge.attr)
2395                 exists = (drv->usb_rapid_charge_supported) ? true : false;
2396         else if (attr == &dev_attr_usb_sleep_music.attr)
2397                 exists = (drv->usb_sleep_music_supported) ? true : false;
2398         else if (attr == &dev_attr_kbd_function_keys.attr)
2399                 exists = (drv->kbd_function_keys_supported) ? true : false;
2400         else if (attr == &dev_attr_panel_power_on.attr)
2401                 exists = (drv->panel_power_on_supported) ? true : false;
2402         else if (attr == &dev_attr_usb_three.attr)
2403                 exists = (drv->usb_three_supported) ? true : false;
2404         else if (attr == &dev_attr_cooling_method.attr)
2405                 exists = (drv->cooling_method_supported) ? true : false;
2406
2407         return exists ? attr->mode : 0;
2408 }
2409
2410 static const struct attribute_group toshiba_attr_group = {
2411         .is_visible = toshiba_sysfs_is_visible,
2412         .attrs = toshiba_attributes,
2413 };
2414
2415 static void toshiba_acpi_kbd_bl_work(struct work_struct *work)
2416 {
2417         /* Update the sysfs entries */
2418         if (sysfs_update_group(&toshiba_acpi->acpi_dev->dev.kobj,
2419                                &toshiba_attr_group))
2420                 pr_err("Unable to update sysfs entries\n");
2421
2422         /* Notify LED subsystem about keyboard backlight change */
2423         if (toshiba_acpi->kbd_type == 2 &&
2424             toshiba_acpi->kbd_mode != SCI_KBD_MODE_AUTO)
2425                 led_classdev_notify_brightness_hw_changed(&toshiba_acpi->kbd_led,
2426                                 (toshiba_acpi->kbd_mode == SCI_KBD_MODE_ON) ?
2427                                 LED_FULL : LED_OFF);
2428
2429         /* Emulate the keyboard backlight event */
2430         acpi_bus_generate_netlink_event(toshiba_acpi->acpi_dev->pnp.device_class,
2431                                         dev_name(&toshiba_acpi->acpi_dev->dev),
2432                                         0x92, 0);
2433 }
2434
2435 /*
2436  * IIO device
2437  */
2438
2439 enum toshiba_iio_accel_chan {
2440         AXIS_X,
2441         AXIS_Y,
2442         AXIS_Z
2443 };
2444
2445 static int toshiba_iio_accel_get_axis(enum toshiba_iio_accel_chan chan)
2446 {
2447         u32 xyval, zval;
2448         int ret;
2449
2450         ret = toshiba_accelerometer_get(toshiba_acpi, &xyval, &zval);
2451         if (ret < 0)
2452                 return ret;
2453
2454         switch (chan) {
2455         case AXIS_X:
2456                 return xyval & HCI_ACCEL_DIRECTION_MASK ?
2457                         -(xyval & HCI_ACCEL_MASK) : xyval & HCI_ACCEL_MASK;
2458         case AXIS_Y:
2459                 return (xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_DIRECTION_MASK ?
2460                         -((xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_MASK) :
2461                         (xyval >> HCI_MISC_SHIFT) & HCI_ACCEL_MASK;
2462         case AXIS_Z:
2463                 return zval & HCI_ACCEL_DIRECTION_MASK ?
2464                         -(zval & HCI_ACCEL_MASK) : zval & HCI_ACCEL_MASK;
2465         }
2466
2467         return ret;
2468 }
2469
2470 static int toshiba_iio_accel_read_raw(struct iio_dev *indio_dev,
2471                                       struct iio_chan_spec const *chan,
2472                                       int *val, int *val2, long mask)
2473 {
2474         int ret;
2475
2476         switch (mask) {
2477         case IIO_CHAN_INFO_RAW:
2478                 ret = toshiba_iio_accel_get_axis(chan->channel);
2479                 if (ret == -EIO || ret == -ENODEV)
2480                         return ret;
2481
2482                 *val = ret;
2483
2484                 return IIO_VAL_INT;
2485         }
2486
2487         return -EINVAL;
2488 }
2489
2490 #define TOSHIBA_IIO_ACCEL_CHANNEL(axis, chan) { \
2491         .type = IIO_ACCEL, \
2492         .modified = 1, \
2493         .channel = chan, \
2494         .channel2 = IIO_MOD_##axis, \
2495         .output = 1, \
2496         .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
2497 }
2498
2499 static const struct iio_chan_spec toshiba_iio_accel_channels[] = {
2500         TOSHIBA_IIO_ACCEL_CHANNEL(X, AXIS_X),
2501         TOSHIBA_IIO_ACCEL_CHANNEL(Y, AXIS_Y),
2502         TOSHIBA_IIO_ACCEL_CHANNEL(Z, AXIS_Z),
2503 };
2504
2505 static const struct iio_info toshiba_iio_accel_info = {
2506         .read_raw = &toshiba_iio_accel_read_raw,
2507 };
2508
2509 /*
2510  * Misc device
2511  */
2512 static int toshiba_acpi_smm_bridge(SMMRegisters *regs)
2513 {
2514         u32 in[TCI_WORDS] = { regs->eax, regs->ebx, regs->ecx,
2515                               regs->edx, regs->esi, regs->edi };
2516         u32 out[TCI_WORDS];
2517         acpi_status status;
2518
2519         status = tci_raw(toshiba_acpi, in, out);
2520         if (ACPI_FAILURE(status)) {
2521                 pr_err("ACPI call to query SMM registers failed\n");
2522                 return -EIO;
2523         }
2524
2525         /* Fillout the SMM struct with the TCI call results */
2526         regs->eax = out[0];
2527         regs->ebx = out[1];
2528         regs->ecx = out[2];
2529         regs->edx = out[3];
2530         regs->esi = out[4];
2531         regs->edi = out[5];
2532
2533         return 0;
2534 }
2535
2536 static long toshiba_acpi_ioctl(struct file *fp, unsigned int cmd,
2537                                unsigned long arg)
2538 {
2539         SMMRegisters __user *argp = (SMMRegisters __user *)arg;
2540         SMMRegisters regs;
2541         int ret;
2542
2543         if (!argp)
2544                 return -EINVAL;
2545
2546         switch (cmd) {
2547         case TOSH_SMM:
2548                 if (copy_from_user(&regs, argp, sizeof(SMMRegisters)))
2549                         return -EFAULT;
2550                 ret = toshiba_acpi_smm_bridge(&regs);
2551                 if (ret)
2552                         return ret;
2553                 if (copy_to_user(argp, &regs, sizeof(SMMRegisters)))
2554                         return -EFAULT;
2555                 break;
2556         case TOSHIBA_ACPI_SCI:
2557                 if (copy_from_user(&regs, argp, sizeof(SMMRegisters)))
2558                         return -EFAULT;
2559                 /* Ensure we are being called with a SCI_{GET, SET} register */
2560                 if (regs.eax != SCI_GET && regs.eax != SCI_SET)
2561                         return -EINVAL;
2562                 if (!sci_open(toshiba_acpi))
2563                         return -EIO;
2564                 ret = toshiba_acpi_smm_bridge(&regs);
2565                 sci_close(toshiba_acpi);
2566                 if (ret)
2567                         return ret;
2568                 if (copy_to_user(argp, &regs, sizeof(SMMRegisters)))
2569                         return -EFAULT;
2570                 break;
2571         default:
2572                 return -EINVAL;
2573         }
2574
2575         return 0;
2576 }
2577
2578 static const struct file_operations toshiba_acpi_fops = {
2579         .owner          = THIS_MODULE,
2580         .unlocked_ioctl = toshiba_acpi_ioctl,
2581         .llseek         = noop_llseek,
2582 };
2583
2584 /*
2585  * WWAN RFKill handlers
2586  */
2587 static int toshiba_acpi_wwan_set_block(void *data, bool blocked)
2588 {
2589         struct toshiba_acpi_dev *dev = data;
2590         int ret;
2591
2592         ret = toshiba_wireless_status(dev);
2593         if (ret)
2594                 return ret;
2595
2596         if (!dev->killswitch)
2597                 return 0;
2598
2599         return toshiba_wwan_set(dev, !blocked);
2600 }
2601
2602 static void toshiba_acpi_wwan_poll(struct rfkill *rfkill, void *data)
2603 {
2604         struct toshiba_acpi_dev *dev = data;
2605
2606         if (toshiba_wireless_status(dev))
2607                 return;
2608
2609         rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2610 }
2611
2612 static const struct rfkill_ops wwan_rfk_ops = {
2613         .set_block = toshiba_acpi_wwan_set_block,
2614         .poll = toshiba_acpi_wwan_poll,
2615 };
2616
2617 static int toshiba_acpi_setup_wwan_rfkill(struct toshiba_acpi_dev *dev)
2618 {
2619         int ret = toshiba_wireless_status(dev);
2620
2621         if (ret)
2622                 return ret;
2623
2624         dev->wwan_rfk = rfkill_alloc("Toshiba WWAN",
2625                                      &dev->acpi_dev->dev,
2626                                      RFKILL_TYPE_WWAN,
2627                                      &wwan_rfk_ops,
2628                                      dev);
2629         if (!dev->wwan_rfk) {
2630                 pr_err("Unable to allocate WWAN rfkill device\n");
2631                 return -ENOMEM;
2632         }
2633
2634         rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
2635
2636         ret = rfkill_register(dev->wwan_rfk);
2637         if (ret) {
2638                 pr_err("Unable to register WWAN rfkill device\n");
2639                 rfkill_destroy(dev->wwan_rfk);
2640         }
2641
2642         return ret;
2643 }
2644
2645 /*
2646  * Hotkeys
2647  */
2648 static int toshiba_acpi_enable_hotkeys(struct toshiba_acpi_dev *dev)
2649 {
2650         acpi_status status;
2651         u32 result;
2652
2653         status = acpi_evaluate_object(dev->acpi_dev->handle,
2654                                       "ENAB", NULL, NULL);
2655         if (ACPI_FAILURE(status))
2656                 return -ENODEV;
2657
2658         /*
2659          * Enable the "Special Functions" mode only if they are
2660          * supported and if they are activated.
2661          */
2662         if (dev->kbd_function_keys_supported && dev->special_functions)
2663                 result = hci_write(dev, HCI_HOTKEY_EVENT,
2664                                    HCI_HOTKEY_SPECIAL_FUNCTIONS);
2665         else
2666                 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE);
2667
2668         if (result == TOS_FAILURE)
2669                 return -EIO;
2670         else if (result == TOS_NOT_SUPPORTED)
2671                 return -ENODEV;
2672
2673         return 0;
2674 }
2675
2676 static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str,
2677                                       struct serio *port)
2678 {
2679         if (str & I8042_STR_AUXDATA)
2680                 return false;
2681
2682         if (unlikely(data == 0xe0))
2683                 return false;
2684
2685         if ((data & 0x7f) == TOS1900_FN_SCAN) {
2686                 schedule_work(&toshiba_acpi->hotkey_work);
2687                 return true;
2688         }
2689
2690         return false;
2691 }
2692
2693 static void toshiba_acpi_hotkey_work(struct work_struct *work)
2694 {
2695         acpi_handle ec_handle = ec_get_handle();
2696         acpi_status status;
2697
2698         if (!ec_handle)
2699                 return;
2700
2701         status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL);
2702         if (ACPI_FAILURE(status))
2703                 pr_err("ACPI NTFY method execution failed\n");
2704 }
2705
2706 /*
2707  * Returns hotkey scancode, or < 0 on failure.
2708  */
2709 static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev)
2710 {
2711         unsigned long long value;
2712         acpi_status status;
2713
2714         status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO",
2715                                       NULL, &value);
2716         if (ACPI_FAILURE(status)) {
2717                 pr_err("ACPI INFO method execution failed\n");
2718                 return -EIO;
2719         }
2720
2721         return value;
2722 }
2723
2724 static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev,
2725                                        int scancode)
2726 {
2727         if (scancode == 0x100)
2728                 return;
2729
2730         /* Act on key press; ignore key release */
2731         if (scancode & 0x80)
2732                 return;
2733
2734         if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true))
2735                 pr_info("Unknown key %x\n", scancode);
2736 }
2737
2738 static void toshiba_acpi_process_hotkeys(struct toshiba_acpi_dev *dev)
2739 {
2740         if (dev->info_supported) {
2741                 int scancode = toshiba_acpi_query_hotkey(dev);
2742
2743                 if (scancode < 0) {
2744                         pr_err("Failed to query hotkey event\n");
2745                 } else if (scancode != 0) {
2746                         toshiba_acpi_report_hotkey(dev, scancode);
2747                         dev->key_event_valid = 1;
2748                         dev->last_key_event = scancode;
2749                 }
2750         } else if (dev->system_event_supported) {
2751                 u32 result;
2752                 u32 value;
2753                 int retries = 3;
2754
2755                 do {
2756                         result = hci_read(dev, HCI_SYSTEM_EVENT, &value);
2757                         switch (result) {
2758                         case TOS_SUCCESS:
2759                                 toshiba_acpi_report_hotkey(dev, (int)value);
2760                                 dev->key_event_valid = 1;
2761                                 dev->last_key_event = value;
2762                                 break;
2763                         case TOS_NOT_SUPPORTED:
2764                                 /*
2765                                  * This is a workaround for an unresolved
2766                                  * issue on some machines where system events
2767                                  * sporadically become disabled.
2768                                  */
2769                                 result = hci_write(dev, HCI_SYSTEM_EVENT, 1);
2770                                 if (result == TOS_SUCCESS)
2771                                         pr_notice("Re-enabled hotkeys\n");
2772                                 /* Fall through */
2773                         default:
2774                                 retries--;
2775                                 break;
2776                         }
2777                 } while (retries && result != TOS_FIFO_EMPTY);
2778         }
2779 }
2780
2781 static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
2782 {
2783         const struct key_entry *keymap = toshiba_acpi_keymap;
2784         acpi_handle ec_handle;
2785         int error;
2786
2787         if (disable_hotkeys) {
2788                 pr_info("Hotkeys disabled by module parameter\n");
2789                 return 0;
2790         }
2791
2792         if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) {
2793                 pr_info("WMI event detected, hotkeys will not be monitored\n");
2794                 return 0;
2795         }
2796
2797         error = toshiba_acpi_enable_hotkeys(dev);
2798         if (error)
2799                 return error;
2800
2801         if (toshiba_hotkey_event_type_get(dev, &dev->hotkey_event_type))
2802                 pr_notice("Unable to query Hotkey Event Type\n");
2803
2804         dev->hotkey_dev = input_allocate_device();
2805         if (!dev->hotkey_dev)
2806                 return -ENOMEM;
2807
2808         dev->hotkey_dev->name = "Toshiba input device";
2809         dev->hotkey_dev->phys = "toshiba_acpi/input0";
2810         dev->hotkey_dev->id.bustype = BUS_HOST;
2811
2812         if (dev->hotkey_event_type == HCI_SYSTEM_TYPE1 ||
2813             !dev->kbd_function_keys_supported)
2814                 keymap = toshiba_acpi_keymap;
2815         else if (dev->hotkey_event_type == HCI_SYSTEM_TYPE2 ||
2816                  dev->kbd_function_keys_supported)
2817                 keymap = toshiba_acpi_alt_keymap;
2818         else
2819                 pr_info("Unknown event type received %x\n",
2820                         dev->hotkey_event_type);
2821         error = sparse_keymap_setup(dev->hotkey_dev, keymap, NULL);
2822         if (error)
2823                 goto err_free_dev;
2824
2825         /*
2826          * For some machines the SCI responsible for providing hotkey
2827          * notification doesn't fire. We can trigger the notification
2828          * whenever the Fn key is pressed using the NTFY method, if
2829          * supported, so if it's present set up an i8042 key filter
2830          * for this purpose.
2831          */
2832         ec_handle = ec_get_handle();
2833         if (ec_handle && acpi_has_method(ec_handle, "NTFY")) {
2834                 INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work);
2835
2836                 error = i8042_install_filter(toshiba_acpi_i8042_filter);
2837                 if (error) {
2838                         pr_err("Error installing key filter\n");
2839                         goto err_free_dev;
2840                 }
2841
2842                 dev->ntfy_supported = 1;
2843         }
2844
2845         /*
2846          * Determine hotkey query interface. Prefer using the INFO
2847          * method when it is available.
2848          */
2849         if (acpi_has_method(dev->acpi_dev->handle, "INFO"))
2850                 dev->info_supported = 1;
2851         else if (hci_write(dev, HCI_SYSTEM_EVENT, 1) == TOS_SUCCESS)
2852                 dev->system_event_supported = 1;
2853
2854         if (!dev->info_supported && !dev->system_event_supported) {
2855                 pr_warn("No hotkey query interface found\n");
2856                 error = -EINVAL;
2857                 goto err_remove_filter;
2858         }
2859
2860         error = input_register_device(dev->hotkey_dev);
2861         if (error) {
2862                 pr_info("Unable to register input device\n");
2863                 goto err_remove_filter;
2864         }
2865
2866         return 0;
2867
2868  err_remove_filter:
2869         if (dev->ntfy_supported)
2870                 i8042_remove_filter(toshiba_acpi_i8042_filter);
2871  err_free_dev:
2872         input_free_device(dev->hotkey_dev);
2873         dev->hotkey_dev = NULL;
2874         return error;
2875 }
2876
2877 static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
2878 {
2879         struct backlight_properties props;
2880         int brightness;
2881         int ret;
2882
2883         /*
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.
2888          */
2889         brightness = __get_lcd_brightness(dev);
2890         if (brightness < 0)
2891                 return 0;
2892         /*
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.
2897          */
2898         if (dev->tr_backlight_supported && brightness == 0)
2899                 brightness++;
2900         ret = set_lcd_brightness(dev, brightness);
2901         if (ret) {
2902                 pr_debug("Backlight method is read-only, disabling backlight support\n");
2903                 return 0;
2904         }
2905
2906         /*
2907          * Tell acpi-video-detect code to prefer vendor backlight on all
2908          * systems with transflective backlight and on dmi matched systems.
2909          */
2910         if (dev->tr_backlight_supported ||
2911             dmi_check_system(toshiba_vendor_backlight_dmi))
2912                 acpi_video_set_dmi_backlight_type(acpi_backlight_vendor);
2913
2914         if (acpi_video_get_backlight_type() != acpi_backlight_vendor)
2915                 return 0;
2916
2917         memset(&props, 0, sizeof(props));
2918         props.type = BACKLIGHT_PLATFORM;
2919         props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
2920
2921         /* Adding an extra level and having 0 change to transflective mode */
2922         if (dev->tr_backlight_supported)
2923                 props.max_brightness++;
2924
2925         dev->backlight_dev = backlight_device_register("toshiba",
2926                                                        &dev->acpi_dev->dev,
2927                                                        dev,
2928                                                        &toshiba_backlight_data,
2929                                                        &props);
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;
2934                 return ret;
2935         }
2936
2937         dev->backlight_dev->props.brightness = brightness;
2938         return 0;
2939 }
2940
2941 static void print_supported_features(struct toshiba_acpi_dev *dev)
2942 {
2943         pr_info("Supported laptop features:");
2944
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)
2952                 pr_cont(" fan");
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)
2976                 pr_cont(" usb3");
2977         if (dev->wwan_supported)
2978                 pr_cont(" wwan");
2979         if (dev->cooling_method_supported)
2980                 pr_cont(" cooling-method");
2981
2982         pr_cont("\n");
2983 }
2984
2985 static int toshiba_acpi_remove(struct acpi_device *acpi_dev)
2986 {
2987         struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
2988
2989         misc_deregister(&dev->miscdev);
2990
2991         remove_toshiba_proc_entries(dev);
2992
2993         if (dev->accelerometer_supported && dev->indio_dev) {
2994                 iio_device_unregister(dev->indio_dev);
2995                 iio_device_free(dev->indio_dev);
2996         }
2997
2998         if (dev->sysfs_created)
2999                 sysfs_remove_group(&dev->acpi_dev->dev.kobj,
3000                                    &toshiba_attr_group);
3001
3002         if (dev->ntfy_supported) {
3003                 i8042_remove_filter(toshiba_acpi_i8042_filter);
3004                 cancel_work_sync(&dev->hotkey_work);
3005         }
3006
3007         if (dev->hotkey_dev)
3008                 input_unregister_device(dev->hotkey_dev);
3009
3010         backlight_device_unregister(dev->backlight_dev);
3011
3012         if (dev->illumination_led_registered)
3013                 led_classdev_unregister(&dev->led_dev);
3014
3015         if (dev->kbd_led_registered)
3016                 led_classdev_unregister(&dev->kbd_led);
3017
3018         if (dev->eco_led_registered)
3019                 led_classdev_unregister(&dev->eco_led);
3020
3021         if (dev->wwan_rfk) {
3022                 rfkill_unregister(dev->wwan_rfk);
3023                 rfkill_destroy(dev->wwan_rfk);
3024         }
3025
3026         if (toshiba_acpi)
3027                 toshiba_acpi = NULL;
3028
3029         kfree(dev);
3030
3031         return 0;
3032 }
3033
3034 static const char *find_hci_method(acpi_handle handle)
3035 {
3036         if (acpi_has_method(handle, "GHCI"))
3037                 return "GHCI";
3038
3039         if (acpi_has_method(handle, "SPFC"))
3040                 return "SPFC";
3041
3042         return NULL;
3043 }
3044
3045 static int toshiba_acpi_add(struct acpi_device *acpi_dev)
3046 {
3047         struct toshiba_acpi_dev *dev;
3048         const char *hci_method;
3049         u32 dummy;
3050         int ret = 0;
3051
3052         if (toshiba_acpi)
3053                 return -EBUSY;
3054
3055         pr_info("Toshiba Laptop ACPI Extras version %s\n",
3056                TOSHIBA_ACPI_VERSION);
3057
3058         hci_method = find_hci_method(acpi_dev->handle);
3059         if (!hci_method) {
3060                 pr_err("HCI interface not found\n");
3061                 return -ENODEV;
3062         }
3063
3064         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3065         if (!dev)
3066                 return -ENOMEM;
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;
3072
3073         ret = misc_register(&dev->miscdev);
3074         if (ret) {
3075                 pr_err("Failed to register miscdevice\n");
3076                 kfree(dev);
3077                 return ret;
3078         }
3079
3080         acpi_dev->driver_data = dev;
3081         dev_set_drvdata(&acpi_dev->dev, dev);
3082
3083         /* Query the BIOS for supported features */
3084
3085         /*
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.
3089          */
3090         ret = toshiba_function_keys_get(dev, &dev->special_functions);
3091         dev->kbd_function_keys_supported = !ret;
3092
3093         dev->hotkey_event_type = 0;
3094         if (toshiba_acpi_setup_keyboard(dev))
3095                 pr_info("Unable to activate hotkeys\n");
3096
3097         /* Determine whether or not BIOS supports transflective backlight */
3098         ret = get_tr_backlight_status(dev, &dummy);
3099         dev->tr_backlight_supported = !ret;
3100
3101         ret = toshiba_acpi_setup_backlight(dev);
3102         if (ret)
3103                 goto error;
3104
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;
3113         }
3114
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;
3123         }
3124
3125         toshiba_kbd_illum_available(dev);
3126         /*
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
3130          */
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;
3140         }
3141
3142         ret = toshiba_touchpad_get(dev, &dummy);
3143         dev->touchpad_supported = !ret;
3144
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");
3150                         goto iio_error;
3151                 }
3152
3153                 pr_info("Registering Toshiba accelerometer iio device\n");
3154
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);
3162
3163                 ret = iio_device_register(dev->indio_dev);
3164                 if (ret < 0) {
3165                         pr_err("Unable to register iio device\n");
3166                         iio_device_free(dev->indio_dev);
3167                 }
3168         }
3169 iio_error:
3170
3171         toshiba_usb_sleep_charge_available(dev);
3172
3173         ret = toshiba_usb_rapid_charge_get(dev, &dummy);
3174         dev->usb_rapid_charge_supported = !ret;
3175
3176         ret = toshiba_usb_sleep_music_get(dev, &dummy);
3177         dev->usb_sleep_music_supported = !ret;
3178
3179         ret = toshiba_panel_power_on_get(dev, &dummy);
3180         dev->panel_power_on_supported = !ret;
3181
3182         ret = toshiba_usb_three_get(dev, &dummy);
3183         dev->usb_three_supported = !ret;
3184
3185         ret = get_video_status(dev, &dummy);
3186         dev->video_supported = !ret;
3187
3188         ret = get_fan_status(dev, &dummy);
3189         dev->fan_supported = !ret;
3190
3191         toshiba_wwan_available(dev);
3192         if (dev->wwan_supported)
3193                 toshiba_acpi_setup_wwan_rfkill(dev);
3194
3195         toshiba_cooling_method_available(dev);
3196
3197         print_supported_features(dev);
3198
3199         ret = sysfs_create_group(&dev->acpi_dev->dev.kobj,
3200                                  &toshiba_attr_group);
3201         if (ret) {
3202                 dev->sysfs_created = 0;
3203                 goto error;
3204         }
3205         dev->sysfs_created = !ret;
3206
3207         create_toshiba_proc_entries(dev);
3208
3209         toshiba_acpi = dev;
3210
3211         return 0;
3212
3213 error:
3214         toshiba_acpi_remove(acpi_dev);
3215         return ret;
3216 }
3217
3218 static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event)
3219 {
3220         struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev);
3221
3222         switch (event) {
3223         case 0x80: /* Hotkeys and some system events */
3224                 /*
3225                  * Machines with this WMI GUID aren't supported due to bugs in
3226                  * their AML.
3227                  *
3228                  * Return silently to avoid triggering a netlink event.
3229                  */
3230                 if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID))
3231                         return;
3232                 toshiba_acpi_process_hotkeys(dev);
3233                 break;
3234         case 0x81: /* Dock events */
3235         case 0x82:
3236         case 0x83:
3237                 pr_info("Dock event received %x\n", event);
3238                 break;
3239         case 0x88: /* Thermal events */
3240                 pr_info("Thermal event received\n");
3241                 break;
3242         case 0x8f: /* LID closed */
3243         case 0x90: /* LID is closed and Dock has been ejected */
3244                 break;
3245         case 0x8c: /* SATA power events */
3246         case 0x8b:
3247                 pr_info("SATA power event received %x\n", event);
3248                 break;
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);
3260                 break;
3261         case 0x85: /* Unknown */
3262         case 0x8d: /* Unknown */
3263         case 0x8e: /* Unknown */
3264         case 0x94: /* Unknown */
3265         case 0x95: /* Unknown */
3266         default:
3267                 pr_info("Unknown event received %x\n", event);
3268                 break;
3269         }
3270
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);
3275 }
3276
3277 #ifdef CONFIG_PM_SLEEP
3278 static int toshiba_acpi_suspend(struct device *device)
3279 {
3280         struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
3281
3282         if (dev->hotkey_dev) {
3283                 u32 result;
3284
3285                 result = hci_write(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE);
3286                 if (result != TOS_SUCCESS)
3287                         pr_info("Unable to disable hotkeys\n");
3288         }
3289
3290         return 0;
3291 }
3292
3293 static int toshiba_acpi_resume(struct device *device)
3294 {
3295         struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device));
3296
3297         if (dev->hotkey_dev) {
3298                 if (toshiba_acpi_enable_hotkeys(dev))
3299                         pr_info("Unable to re-enable hotkeys\n");
3300         }
3301
3302         if (dev->wwan_rfk) {
3303                 if (!toshiba_wireless_status(dev))
3304                         rfkill_set_hw_state(dev->wwan_rfk, !dev->killswitch);
3305         }
3306
3307         return 0;
3308 }
3309 #endif
3310
3311 static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm,
3312                          toshiba_acpi_suspend, toshiba_acpi_resume);
3313
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,
3319         .ops    = {
3320                 .add            = toshiba_acpi_add,
3321                 .remove         = toshiba_acpi_remove,
3322                 .notify         = toshiba_acpi_notify,
3323         },
3324         .drv.pm = &toshiba_acpi_pm,
3325 };
3326
3327 static int __init toshiba_acpi_init(void)
3328 {
3329         int ret;
3330
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");
3334                 return -ENODEV;
3335         }
3336
3337         ret = acpi_bus_register_driver(&toshiba_acpi_driver);
3338         if (ret) {
3339                 pr_err("Failed to register ACPI driver: %d\n", ret);
3340                 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
3341         }
3342
3343         return ret;
3344 }
3345
3346 static void __exit toshiba_acpi_exit(void)
3347 {
3348         acpi_bus_unregister_driver(&toshiba_acpi_driver);
3349         if (toshiba_proc_dir)
3350                 remove_proc_entry(PROC_TOSHIBA, acpi_root_dir);
3351 }
3352
3353 module_init(toshiba_acpi_init);
3354 module_exit(toshiba_acpi_exit);