Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * toshiba_acpi.c - Toshiba Laptop ACPI Extras |
| 3 | * |
| 4 | * |
| 5 | * Copyright (C) 2002-2004 John Belmonte |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 6 | * Copyright (C) 2008 Philip Langdale |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 7 | * Copyright (C) 2010 Pierre Ducroquet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | * |
| 24 | * The devolpment page for this driver is located at |
| 25 | * http://memebeam.org/toys/ToshibaAcpiDriver. |
| 26 | * |
| 27 | * Credits: |
| 28 | * Jonathan A. Buzzard - Toshiba HCI info, and critical tips on reverse |
| 29 | * engineering the Windows drivers |
| 30 | * Yasushi Nagato - changes for linux kernel 2.4 -> 2.5 |
| 31 | * Rob Miller - TV out and hotkeys help |
| 32 | * |
| 33 | * |
| 34 | * TODO |
| 35 | * |
| 36 | */ |
| 37 | |
Joe Perches | 7e33460 | 2011-03-29 15:21:52 -0700 | [diff] [blame] | 38 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 39 | |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 40 | #define TOSHIBA_ACPI_VERSION "0.19" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define PROC_INTERFACE_VERSION 1 |
| 42 | |
| 43 | #include <linux/kernel.h> |
| 44 | #include <linux/module.h> |
| 45 | #include <linux/init.h> |
| 46 | #include <linux/types.h> |
| 47 | #include <linux/proc_fs.h> |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 48 | #include <linux/seq_file.h> |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 49 | #include <linux/backlight.h> |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 50 | #include <linux/rfkill.h> |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 51 | #include <linux/input.h> |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 52 | #include <linux/input/sparse-keymap.h> |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 53 | #include <linux/leds.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 54 | #include <linux/slab.h> |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 55 | #include <linux/workqueue.h> |
| 56 | #include <linux/i8042.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 57 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <asm/uaccess.h> |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | MODULE_AUTHOR("John Belmonte"); |
| 61 | MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver"); |
| 62 | MODULE_LICENSE("GPL"); |
| 63 | |
Seth Forshee | f11f999 | 2012-01-18 13:44:11 -0600 | [diff] [blame] | 64 | #define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100" |
| 65 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 66 | /* Scan code for Fn key on TOS1900 models */ |
| 67 | #define TOS1900_FN_SCAN 0x6e |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | /* Toshiba ACPI method paths */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX" |
| 71 | |
| 72 | /* Toshiba HCI interface definitions |
| 73 | * |
| 74 | * HCI is Toshiba's "Hardware Control Interface" which is supposed to |
| 75 | * be uniform across all their models. Ideally we would just call |
| 76 | * dedicated ACPI methods instead of using this primitive interface. |
| 77 | * However the ACPI methods seem to be incomplete in some areas (for |
| 78 | * example they allow setting, but not reading, the LCD brightness value), |
| 79 | * so this is still useful. |
Azael Avalos | 84a6273 | 2014-03-25 20:38:29 -0600 | [diff] [blame] | 80 | * |
| 81 | * SCI stands for "System Configuration Interface" which aim is to |
| 82 | * conceal differences in hardware between different models. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | */ |
| 84 | |
| 85 | #define HCI_WORDS 6 |
| 86 | |
| 87 | /* operations */ |
| 88 | #define HCI_SET 0xff00 |
| 89 | #define HCI_GET 0xfe00 |
Azael Avalos | 84a6273 | 2014-03-25 20:38:29 -0600 | [diff] [blame] | 90 | #define SCI_OPEN 0xf100 |
| 91 | #define SCI_CLOSE 0xf200 |
| 92 | #define SCI_GET 0xf300 |
| 93 | #define SCI_SET 0xf400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | /* return codes */ |
| 96 | #define HCI_SUCCESS 0x0000 |
| 97 | #define HCI_FAILURE 0x1000 |
| 98 | #define HCI_NOT_SUPPORTED 0x8000 |
| 99 | #define HCI_EMPTY 0x8c00 |
Azael Avalos | 84a6273 | 2014-03-25 20:38:29 -0600 | [diff] [blame] | 100 | #define SCI_OPEN_CLOSE_OK 0x0044 |
| 101 | #define SCI_ALREADY_OPEN 0x8100 |
| 102 | #define SCI_NOT_OPENED 0x8200 |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 103 | #define SCI_INPUT_DATA_ERROR 0x8300 |
Azael Avalos | 84a6273 | 2014-03-25 20:38:29 -0600 | [diff] [blame] | 104 | #define SCI_NOT_PRESENT 0x8600 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | /* registers */ |
| 107 | #define HCI_FAN 0x0004 |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 108 | #define HCI_TR_BACKLIGHT 0x0005 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | #define HCI_SYSTEM_EVENT 0x0016 |
| 110 | #define HCI_VIDEO_OUT 0x001c |
| 111 | #define HCI_HOTKEY_EVENT 0x001e |
| 112 | #define HCI_LCD_BRIGHTNESS 0x002a |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 113 | #define HCI_WIRELESS 0x0056 |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 114 | #define HCI_KBD_ILLUMINATION 0x0095 |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 115 | #define HCI_ECO_MODE 0x0097 |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 116 | #define SCI_ILLUMINATION 0x014e |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 117 | #define SCI_KBD_ILLUM_STATUS 0x015c |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 118 | #define SCI_TOUCHPAD 0x050e |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
| 120 | /* field definitions */ |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 121 | #define HCI_HOTKEY_DISABLE 0x0b |
| 122 | #define HCI_HOTKEY_ENABLE 0x09 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | #define HCI_LCD_BRIGHTNESS_BITS 3 |
| 124 | #define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS) |
| 125 | #define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS) |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 126 | #define HCI_MISC_SHIFT 0x10 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #define HCI_VIDEO_OUT_LCD 0x1 |
| 128 | #define HCI_VIDEO_OUT_CRT 0x2 |
| 129 | #define HCI_VIDEO_OUT_TV 0x4 |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 130 | #define HCI_WIRELESS_KILL_SWITCH 0x01 |
| 131 | #define HCI_WIRELESS_BT_PRESENT 0x0f |
| 132 | #define HCI_WIRELESS_BT_ATTACH 0x40 |
| 133 | #define HCI_WIRELESS_BT_POWER 0x80 |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 134 | #define SCI_KBD_MODE_FNZ 0x1 |
| 135 | #define SCI_KBD_MODE_AUTO 0x2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 137 | struct toshiba_acpi_dev { |
| 138 | struct acpi_device *acpi_dev; |
| 139 | const char *method_hci; |
| 140 | struct rfkill *bt_rfk; |
| 141 | struct input_dev *hotkey_dev; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 142 | struct work_struct hotkey_work; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 143 | struct backlight_device *backlight_dev; |
| 144 | struct led_classdev led_dev; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 145 | struct led_classdev kbd_led; |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 146 | struct led_classdev eco_led; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 147 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 148 | int force_fan; |
| 149 | int last_key_event; |
| 150 | int key_event_valid; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 151 | int kbd_mode; |
| 152 | int kbd_time; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 153 | |
Dan Carpenter | 592b746 | 2012-01-15 14:28:20 +0300 | [diff] [blame] | 154 | unsigned int illumination_supported:1; |
| 155 | unsigned int video_supported:1; |
| 156 | unsigned int fan_supported:1; |
| 157 | unsigned int system_event_supported:1; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 158 | unsigned int ntfy_supported:1; |
| 159 | unsigned int info_supported:1; |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 160 | unsigned int tr_backlight_supported:1; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 161 | unsigned int kbd_illum_supported:1; |
| 162 | unsigned int kbd_led_registered:1; |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 163 | unsigned int touchpad_supported:1; |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 164 | unsigned int eco_supported:1; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 165 | unsigned int sysfs_created:1; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 166 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 167 | struct mutex mutex; |
| 168 | }; |
| 169 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 170 | static struct toshiba_acpi_dev *toshiba_acpi; |
| 171 | |
arvidjaar@mail.ru | 4db42c5 | 2008-03-04 15:06:34 -0800 | [diff] [blame] | 172 | static const struct acpi_device_id toshiba_device_ids[] = { |
| 173 | {"TOS6200", 0}, |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 174 | {"TOS6208", 0}, |
arvidjaar@mail.ru | 4db42c5 | 2008-03-04 15:06:34 -0800 | [diff] [blame] | 175 | {"TOS1900", 0}, |
| 176 | {"", 0}, |
| 177 | }; |
| 178 | MODULE_DEVICE_TABLE(acpi, toshiba_device_ids); |
| 179 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 180 | static const struct key_entry toshiba_acpi_keymap[] = { |
Unai Uribarri | fec278a | 2014-01-14 11:06:47 +0100 | [diff] [blame] | 181 | { KE_KEY, 0x9e, { KEY_RFKILL } }, |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 182 | { KE_KEY, 0x101, { KEY_MUTE } }, |
| 183 | { KE_KEY, 0x102, { KEY_ZOOMOUT } }, |
| 184 | { KE_KEY, 0x103, { KEY_ZOOMIN } }, |
Azael Avalos | af50283 | 2012-01-18 13:44:10 -0600 | [diff] [blame] | 185 | { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } }, |
| 186 | { KE_KEY, 0x139, { KEY_ZOOMRESET } }, |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 187 | { KE_KEY, 0x13b, { KEY_COFFEE } }, |
| 188 | { KE_KEY, 0x13c, { KEY_BATTERY } }, |
| 189 | { KE_KEY, 0x13d, { KEY_SLEEP } }, |
| 190 | { KE_KEY, 0x13e, { KEY_SUSPEND } }, |
| 191 | { KE_KEY, 0x13f, { KEY_SWITCHVIDEOMODE } }, |
| 192 | { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } }, |
| 193 | { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } }, |
| 194 | { KE_KEY, 0x142, { KEY_WLAN } }, |
Azael Avalos | af50283 | 2012-01-18 13:44:10 -0600 | [diff] [blame] | 195 | { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } }, |
Jon Dowland | a49010f | 2010-10-27 00:24:59 +0100 | [diff] [blame] | 196 | { KE_KEY, 0x17f, { KEY_FN } }, |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 197 | { KE_KEY, 0xb05, { KEY_PROG2 } }, |
| 198 | { KE_KEY, 0xb06, { KEY_WWW } }, |
| 199 | { KE_KEY, 0xb07, { KEY_MAIL } }, |
| 200 | { KE_KEY, 0xb30, { KEY_STOP } }, |
| 201 | { KE_KEY, 0xb31, { KEY_PREVIOUSSONG } }, |
| 202 | { KE_KEY, 0xb32, { KEY_NEXTSONG } }, |
| 203 | { KE_KEY, 0xb33, { KEY_PLAYPAUSE } }, |
| 204 | { KE_KEY, 0xb5a, { KEY_MEDIA } }, |
Azael Avalos | af50283 | 2012-01-18 13:44:10 -0600 | [diff] [blame] | 205 | { KE_IGNORE, 0x1430, { KEY_RESERVED } }, |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 206 | { KE_END, 0 }, |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 207 | }; |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* utility |
| 210 | */ |
| 211 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 212 | static __inline__ void _set_bit(u32 * word, u32 mask, int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
| 214 | *word = (*word & ~mask) | (mask * value); |
| 215 | } |
| 216 | |
| 217 | /* acpi interface wrappers |
| 218 | */ |
| 219 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 220 | static int write_acpi_int(const char *methodName, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | acpi_status status; |
| 223 | |
Zhang Rui | 619400d | 2013-09-03 08:31:56 +0800 | [diff] [blame] | 224 | status = acpi_execute_simple_method(NULL, (char *)methodName, val); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 225 | return (status == AE_OK) ? 0 : -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | /* Perform a raw HCI call. Here we don't care about input or output buffer |
| 229 | * format. |
| 230 | */ |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 231 | static acpi_status hci_raw(struct toshiba_acpi_dev *dev, |
| 232 | const u32 in[HCI_WORDS], u32 out[HCI_WORDS]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
| 234 | struct acpi_object_list params; |
| 235 | union acpi_object in_objs[HCI_WORDS]; |
| 236 | struct acpi_buffer results; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 237 | union acpi_object out_objs[HCI_WORDS + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | acpi_status status; |
| 239 | int i; |
| 240 | |
| 241 | params.count = HCI_WORDS; |
| 242 | params.pointer = in_objs; |
| 243 | for (i = 0; i < HCI_WORDS; ++i) { |
| 244 | in_objs[i].type = ACPI_TYPE_INTEGER; |
| 245 | in_objs[i].integer.value = in[i]; |
| 246 | } |
| 247 | |
| 248 | results.length = sizeof(out_objs); |
| 249 | results.pointer = out_objs; |
| 250 | |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 251 | status = acpi_evaluate_object(dev->acpi_dev->handle, |
| 252 | (char *)dev->method_hci, ¶ms, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 253 | &results); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | if ((status == AE_OK) && (out_objs->package.count <= HCI_WORDS)) { |
| 255 | for (i = 0; i < out_objs->package.count; ++i) { |
| 256 | out[i] = out_objs->package.elements[i].integer.value; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | return status; |
| 261 | } |
| 262 | |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 263 | /* common hci tasks (get or set one or two value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | * |
| 265 | * In addition to the ACPI status, the HCI system returns a result which |
| 266 | * may be useful (such as "not supported"). |
| 267 | */ |
| 268 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 269 | static acpi_status hci_write1(struct toshiba_acpi_dev *dev, u32 reg, |
| 270 | u32 in1, u32 *result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
| 272 | u32 in[HCI_WORDS] = { HCI_SET, reg, in1, 0, 0, 0 }; |
| 273 | u32 out[HCI_WORDS]; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 274 | acpi_status status = hci_raw(dev, in, out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | *result = (status == AE_OK) ? out[0] : HCI_FAILURE; |
| 276 | return status; |
| 277 | } |
| 278 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 279 | static acpi_status hci_read1(struct toshiba_acpi_dev *dev, u32 reg, |
| 280 | u32 *out1, u32 *result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | { |
| 282 | u32 in[HCI_WORDS] = { HCI_GET, reg, 0, 0, 0, 0 }; |
| 283 | u32 out[HCI_WORDS]; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 284 | acpi_status status = hci_raw(dev, in, out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | *out1 = out[2]; |
| 286 | *result = (status == AE_OK) ? out[0] : HCI_FAILURE; |
| 287 | return status; |
| 288 | } |
| 289 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 290 | static acpi_status hci_write2(struct toshiba_acpi_dev *dev, u32 reg, |
| 291 | u32 in1, u32 in2, u32 *result) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 292 | { |
| 293 | u32 in[HCI_WORDS] = { HCI_SET, reg, in1, in2, 0, 0 }; |
| 294 | u32 out[HCI_WORDS]; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 295 | acpi_status status = hci_raw(dev, in, out); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 296 | *result = (status == AE_OK) ? out[0] : HCI_FAILURE; |
| 297 | return status; |
| 298 | } |
| 299 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 300 | static acpi_status hci_read2(struct toshiba_acpi_dev *dev, u32 reg, |
| 301 | u32 *out1, u32 *out2, u32 *result) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 302 | { |
| 303 | u32 in[HCI_WORDS] = { HCI_GET, reg, *out1, *out2, 0, 0 }; |
| 304 | u32 out[HCI_WORDS]; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 305 | acpi_status status = hci_raw(dev, in, out); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 306 | *out1 = out[2]; |
| 307 | *out2 = out[3]; |
| 308 | *result = (status == AE_OK) ? out[0] : HCI_FAILURE; |
| 309 | return status; |
| 310 | } |
| 311 | |
Azael Avalos | 84a6273 | 2014-03-25 20:38:29 -0600 | [diff] [blame] | 312 | /* common sci tasks |
| 313 | */ |
| 314 | |
| 315 | static int sci_open(struct toshiba_acpi_dev *dev) |
| 316 | { |
| 317 | u32 in[HCI_WORDS] = { SCI_OPEN, 0, 0, 0, 0, 0 }; |
| 318 | u32 out[HCI_WORDS]; |
| 319 | acpi_status status; |
| 320 | |
| 321 | status = hci_raw(dev, in, out); |
| 322 | if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) { |
| 323 | pr_err("ACPI call to open SCI failed\n"); |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | if (out[0] == SCI_OPEN_CLOSE_OK) { |
| 328 | return 1; |
| 329 | } else if (out[0] == SCI_ALREADY_OPEN) { |
| 330 | pr_info("Toshiba SCI already opened\n"); |
| 331 | return 1; |
| 332 | } else if (out[0] == SCI_NOT_PRESENT) { |
| 333 | pr_info("Toshiba SCI is not present\n"); |
| 334 | } |
| 335 | |
| 336 | return 0; |
| 337 | } |
| 338 | |
| 339 | static void sci_close(struct toshiba_acpi_dev *dev) |
| 340 | { |
| 341 | u32 in[HCI_WORDS] = { SCI_CLOSE, 0, 0, 0, 0, 0 }; |
| 342 | u32 out[HCI_WORDS]; |
| 343 | acpi_status status; |
| 344 | |
| 345 | status = hci_raw(dev, in, out); |
| 346 | if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) { |
| 347 | pr_err("ACPI call to close SCI failed\n"); |
| 348 | return; |
| 349 | } |
| 350 | |
| 351 | if (out[0] == SCI_OPEN_CLOSE_OK) |
| 352 | return; |
| 353 | else if (out[0] == SCI_NOT_OPENED) |
| 354 | pr_info("Toshiba SCI not opened\n"); |
| 355 | else if (out[0] == SCI_NOT_PRESENT) |
| 356 | pr_info("Toshiba SCI is not present\n"); |
| 357 | } |
| 358 | |
| 359 | static acpi_status sci_read(struct toshiba_acpi_dev *dev, u32 reg, |
| 360 | u32 *out1, u32 *result) |
| 361 | { |
| 362 | u32 in[HCI_WORDS] = { SCI_GET, reg, 0, 0, 0, 0 }; |
| 363 | u32 out[HCI_WORDS]; |
| 364 | acpi_status status = hci_raw(dev, in, out); |
| 365 | *out1 = out[2]; |
| 366 | *result = (ACPI_SUCCESS(status)) ? out[0] : HCI_FAILURE; |
| 367 | return status; |
| 368 | } |
| 369 | |
| 370 | static acpi_status sci_write(struct toshiba_acpi_dev *dev, u32 reg, |
| 371 | u32 in1, u32 *result) |
| 372 | { |
| 373 | u32 in[HCI_WORDS] = { SCI_SET, reg, in1, 0, 0, 0 }; |
| 374 | u32 out[HCI_WORDS]; |
| 375 | acpi_status status = hci_raw(dev, in, out); |
| 376 | *result = (ACPI_SUCCESS(status)) ? out[0] : HCI_FAILURE; |
| 377 | return status; |
| 378 | } |
| 379 | |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 380 | /* Illumination support */ |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 381 | static int toshiba_illumination_available(struct toshiba_acpi_dev *dev) |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 382 | { |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 383 | u32 in[HCI_WORDS] = { SCI_GET, SCI_ILLUMINATION, 0, 0, 0, 0 }; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 384 | u32 out[HCI_WORDS]; |
| 385 | acpi_status status; |
| 386 | |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 387 | if (!sci_open(dev)) |
| 388 | return 0; |
| 389 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 390 | status = hci_raw(dev, in, out); |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 391 | sci_close(dev); |
| 392 | if (ACPI_FAILURE(status) || out[0] == HCI_FAILURE) { |
| 393 | pr_err("ACPI call to query Illumination support failed\n"); |
| 394 | return 0; |
| 395 | } else if (out[0] == HCI_NOT_SUPPORTED || out[1] != 1) { |
Joe Perches | 7e33460 | 2011-03-29 15:21:52 -0700 | [diff] [blame] | 396 | pr_info("Illumination device not available\n"); |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 397 | return 0; |
| 398 | } |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 399 | |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 400 | return 1; |
| 401 | } |
| 402 | |
| 403 | static void toshiba_illumination_set(struct led_classdev *cdev, |
| 404 | enum led_brightness brightness) |
| 405 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 406 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 407 | struct toshiba_acpi_dev, led_dev); |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 408 | u32 state, result; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 409 | acpi_status status; |
| 410 | |
| 411 | /* First request : initialize communication. */ |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 412 | if (!sci_open(dev)) |
| 413 | return; |
| 414 | |
| 415 | /* Switch the illumination on/off */ |
| 416 | state = brightness ? 1 : 0; |
| 417 | status = sci_write(dev, SCI_ILLUMINATION, state, &result); |
| 418 | sci_close(dev); |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 419 | if (ACPI_FAILURE(status)) { |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 420 | pr_err("ACPI call for illumination failed\n"); |
| 421 | return; |
| 422 | } else if (result == HCI_NOT_SUPPORTED) { |
| 423 | pr_info("Illumination not supported\n"); |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 424 | return; |
| 425 | } |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | static enum led_brightness toshiba_illumination_get(struct led_classdev *cdev) |
| 429 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 430 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 431 | struct toshiba_acpi_dev, led_dev); |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 432 | u32 state, result; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 433 | acpi_status status; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 434 | |
| 435 | /*Â First request : initialize communication. */ |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 436 | if (!sci_open(dev)) |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 437 | return LED_OFF; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 438 | |
| 439 | /* Check the illumination */ |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 440 | status = sci_read(dev, SCI_ILLUMINATION, &state, &result); |
| 441 | sci_close(dev); |
| 442 | if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) { |
| 443 | pr_err("ACPI call for illumination failed\n"); |
| 444 | return LED_OFF; |
| 445 | } else if (result == HCI_NOT_SUPPORTED) { |
| 446 | pr_info("Illumination not supported\n"); |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 447 | return LED_OFF; |
| 448 | } |
| 449 | |
Azael Avalos | fdb7908 | 2014-03-25 20:38:30 -0600 | [diff] [blame] | 450 | return state ? LED_FULL : LED_OFF; |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 451 | } |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 452 | |
| 453 | /* KBD Illumination */ |
| 454 | static int toshiba_kbd_illum_status_set(struct toshiba_acpi_dev *dev, u32 time) |
| 455 | { |
| 456 | u32 result; |
| 457 | acpi_status status; |
| 458 | |
| 459 | if (!sci_open(dev)) |
| 460 | return -EIO; |
| 461 | |
| 462 | status = sci_write(dev, SCI_KBD_ILLUM_STATUS, time, &result); |
| 463 | sci_close(dev); |
| 464 | if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) { |
| 465 | pr_err("ACPI call to set KBD backlight status failed\n"); |
| 466 | return -EIO; |
| 467 | } else if (result == HCI_NOT_SUPPORTED) { |
| 468 | pr_info("Keyboard backlight status not supported\n"); |
| 469 | return -ENODEV; |
| 470 | } |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | |
| 475 | static int toshiba_kbd_illum_status_get(struct toshiba_acpi_dev *dev, u32 *time) |
| 476 | { |
| 477 | u32 result; |
| 478 | acpi_status status; |
| 479 | |
| 480 | if (!sci_open(dev)) |
| 481 | return -EIO; |
| 482 | |
| 483 | status = sci_read(dev, SCI_KBD_ILLUM_STATUS, time, &result); |
| 484 | sci_close(dev); |
| 485 | if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) { |
| 486 | pr_err("ACPI call to get KBD backlight status failed\n"); |
| 487 | return -EIO; |
| 488 | } else if (result == HCI_NOT_SUPPORTED) { |
| 489 | pr_info("Keyboard backlight status not supported\n"); |
| 490 | return -ENODEV; |
| 491 | } |
| 492 | |
| 493 | return 0; |
| 494 | } |
| 495 | |
| 496 | static enum led_brightness toshiba_kbd_backlight_get(struct led_classdev *cdev) |
| 497 | { |
| 498 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 499 | struct toshiba_acpi_dev, kbd_led); |
| 500 | u32 state, result; |
| 501 | acpi_status status; |
| 502 | |
| 503 | /* Check the keyboard backlight state */ |
| 504 | status = hci_read1(dev, HCI_KBD_ILLUMINATION, &state, &result); |
| 505 | if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) { |
| 506 | pr_err("ACPI call to get the keyboard backlight failed\n"); |
| 507 | return LED_OFF; |
| 508 | } else if (result == HCI_NOT_SUPPORTED) { |
| 509 | pr_info("Keyboard backlight not supported\n"); |
| 510 | return LED_OFF; |
| 511 | } |
| 512 | |
| 513 | return state ? LED_FULL : LED_OFF; |
| 514 | } |
| 515 | |
| 516 | static void toshiba_kbd_backlight_set(struct led_classdev *cdev, |
| 517 | enum led_brightness brightness) |
| 518 | { |
| 519 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 520 | struct toshiba_acpi_dev, kbd_led); |
| 521 | u32 state, result; |
| 522 | acpi_status status; |
| 523 | |
| 524 | /* Set the keyboard backlight state */ |
| 525 | state = brightness ? 1 : 0; |
| 526 | status = hci_write1(dev, HCI_KBD_ILLUMINATION, state, &result); |
| 527 | if (ACPI_FAILURE(status) || result == SCI_INPUT_DATA_ERROR) { |
| 528 | pr_err("ACPI call to set KBD Illumination mode failed\n"); |
| 529 | return; |
| 530 | } else if (result == HCI_NOT_SUPPORTED) { |
| 531 | pr_info("Keyboard backlight not supported\n"); |
| 532 | return; |
| 533 | } |
| 534 | } |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 535 | |
| 536 | /* TouchPad support */ |
| 537 | static int toshiba_touchpad_set(struct toshiba_acpi_dev *dev, u32 state) |
| 538 | { |
| 539 | u32 result; |
| 540 | acpi_status status; |
| 541 | |
| 542 | if (!sci_open(dev)) |
| 543 | return -EIO; |
| 544 | |
| 545 | status = sci_write(dev, SCI_TOUCHPAD, state, &result); |
| 546 | sci_close(dev); |
| 547 | if (ACPI_FAILURE(status)) { |
| 548 | pr_err("ACPI call to set the touchpad failed\n"); |
| 549 | return -EIO; |
| 550 | } else if (result == HCI_NOT_SUPPORTED) { |
| 551 | return -ENODEV; |
| 552 | } |
| 553 | |
| 554 | return 0; |
| 555 | } |
| 556 | |
| 557 | static int toshiba_touchpad_get(struct toshiba_acpi_dev *dev, u32 *state) |
| 558 | { |
| 559 | u32 result; |
| 560 | acpi_status status; |
| 561 | |
| 562 | if (!sci_open(dev)) |
| 563 | return -EIO; |
| 564 | |
| 565 | status = sci_read(dev, SCI_TOUCHPAD, state, &result); |
| 566 | sci_close(dev); |
| 567 | if (ACPI_FAILURE(status)) { |
| 568 | pr_err("ACPI call to query the touchpad failed\n"); |
| 569 | return -EIO; |
| 570 | } else if (result == HCI_NOT_SUPPORTED) { |
| 571 | return -ENODEV; |
| 572 | } |
| 573 | |
| 574 | return 0; |
| 575 | } |
Pierre Ducroquet | 6c3f6e6 | 2010-07-29 11:56:59 +0200 | [diff] [blame] | 576 | |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 577 | /* Eco Mode support */ |
| 578 | static int toshiba_eco_mode_available(struct toshiba_acpi_dev *dev) |
| 579 | { |
| 580 | acpi_status status; |
| 581 | u32 in[HCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 }; |
| 582 | u32 out[HCI_WORDS]; |
| 583 | |
| 584 | status = hci_raw(dev, in, out); |
| 585 | if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) { |
| 586 | pr_info("ACPI call to get ECO led failed\n"); |
| 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | return 1; |
| 591 | } |
| 592 | |
| 593 | static enum led_brightness toshiba_eco_mode_get_status(struct led_classdev *cdev) |
| 594 | { |
| 595 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 596 | struct toshiba_acpi_dev, eco_led); |
| 597 | u32 in[HCI_WORDS] = { HCI_GET, HCI_ECO_MODE, 0, 1, 0, 0 }; |
| 598 | u32 out[HCI_WORDS]; |
| 599 | acpi_status status; |
| 600 | |
| 601 | status = hci_raw(dev, in, out); |
| 602 | if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) { |
| 603 | pr_err("ACPI call to get ECO led failed\n"); |
| 604 | return LED_OFF; |
| 605 | } |
| 606 | |
| 607 | return out[2] ? LED_FULL : LED_OFF; |
| 608 | } |
| 609 | |
| 610 | static void toshiba_eco_mode_set_status(struct led_classdev *cdev, |
| 611 | enum led_brightness brightness) |
| 612 | { |
| 613 | struct toshiba_acpi_dev *dev = container_of(cdev, |
| 614 | struct toshiba_acpi_dev, eco_led); |
| 615 | u32 in[HCI_WORDS] = { HCI_SET, HCI_ECO_MODE, 0, 1, 0, 0 }; |
| 616 | u32 out[HCI_WORDS]; |
| 617 | acpi_status status; |
| 618 | |
| 619 | /* Switch the Eco Mode led on/off */ |
| 620 | in[2] = (brightness) ? 1 : 0; |
| 621 | status = hci_raw(dev, in, out); |
| 622 | if (ACPI_FAILURE(status) || out[0] == SCI_INPUT_DATA_ERROR) { |
| 623 | pr_err("ACPI call to set ECO led failed\n"); |
| 624 | return; |
| 625 | } |
| 626 | } |
| 627 | |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 628 | /* Bluetooth rfkill handlers */ |
| 629 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 630 | static u32 hci_get_bt_present(struct toshiba_acpi_dev *dev, bool *present) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 631 | { |
| 632 | u32 hci_result; |
| 633 | u32 value, value2; |
| 634 | |
| 635 | value = 0; |
| 636 | value2 = 0; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 637 | hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 638 | if (hci_result == HCI_SUCCESS) |
| 639 | *present = (value & HCI_WIRELESS_BT_PRESENT) ? true : false; |
| 640 | |
| 641 | return hci_result; |
| 642 | } |
| 643 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 644 | static u32 hci_get_radio_state(struct toshiba_acpi_dev *dev, bool *radio_state) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 645 | { |
| 646 | u32 hci_result; |
| 647 | u32 value, value2; |
| 648 | |
| 649 | value = 0; |
| 650 | value2 = 0x0001; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 651 | hci_read2(dev, HCI_WIRELESS, &value, &value2, &hci_result); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 652 | |
| 653 | *radio_state = value & HCI_WIRELESS_KILL_SWITCH; |
| 654 | return hci_result; |
| 655 | } |
| 656 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 657 | static int bt_rfkill_set_block(void *data, bool blocked) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 658 | { |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 659 | struct toshiba_acpi_dev *dev = data; |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 660 | u32 result1, result2; |
| 661 | u32 value; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 662 | int err; |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 663 | bool radio_state; |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 664 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 665 | value = (blocked == false); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 666 | |
| 667 | mutex_lock(&dev->mutex); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 668 | if (hci_get_radio_state(dev, &radio_state) != HCI_SUCCESS) { |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 669 | err = -EIO; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 670 | goto out; |
| 671 | } |
| 672 | |
| 673 | if (!radio_state) { |
| 674 | err = 0; |
| 675 | goto out; |
| 676 | } |
| 677 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 678 | hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_POWER, &result1); |
| 679 | hci_write2(dev, HCI_WIRELESS, value, HCI_WIRELESS_BT_ATTACH, &result2); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 680 | |
| 681 | if (result1 != HCI_SUCCESS || result2 != HCI_SUCCESS) |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 682 | err = -EIO; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 683 | else |
| 684 | err = 0; |
| 685 | out: |
| 686 | mutex_unlock(&dev->mutex); |
| 687 | return err; |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 688 | } |
| 689 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 690 | static void bt_rfkill_poll(struct rfkill *rfkill, void *data) |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 691 | { |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 692 | bool new_rfk_state; |
| 693 | bool value; |
| 694 | u32 hci_result; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 695 | struct toshiba_acpi_dev *dev = data; |
| 696 | |
| 697 | mutex_lock(&dev->mutex); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 698 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 699 | hci_result = hci_get_radio_state(dev, &value); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 700 | if (hci_result != HCI_SUCCESS) { |
| 701 | /* Can't do anything useful */ |
| 702 | mutex_unlock(&dev->mutex); |
Jiri Slaby | 82e7784 | 2009-08-06 15:57:51 -0700 | [diff] [blame] | 703 | return; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 704 | } |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 705 | |
| 706 | new_rfk_state = value; |
| 707 | |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 708 | mutex_unlock(&dev->mutex); |
| 709 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 710 | if (rfkill_set_hw_state(rfkill, !new_rfk_state)) |
| 711 | bt_rfkill_set_block(data, true); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 712 | } |
| 713 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 714 | static const struct rfkill_ops toshiba_rfk_ops = { |
| 715 | .set_block = bt_rfkill_set_block, |
| 716 | .poll = bt_rfkill_poll, |
| 717 | }; |
| 718 | |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 719 | static int get_tr_backlight_status(struct toshiba_acpi_dev *dev, bool *enabled) |
| 720 | { |
| 721 | u32 hci_result; |
| 722 | u32 status; |
| 723 | |
| 724 | hci_read1(dev, HCI_TR_BACKLIGHT, &status, &hci_result); |
| 725 | *enabled = !status; |
| 726 | return hci_result == HCI_SUCCESS ? 0 : -EIO; |
| 727 | } |
| 728 | |
| 729 | static int set_tr_backlight_status(struct toshiba_acpi_dev *dev, bool enable) |
| 730 | { |
| 731 | u32 hci_result; |
| 732 | u32 value = !enable; |
| 733 | |
| 734 | hci_write1(dev, HCI_TR_BACKLIGHT, value, &hci_result); |
| 735 | return hci_result == HCI_SUCCESS ? 0 : -EIO; |
| 736 | } |
| 737 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 738 | static struct proc_dir_entry *toshiba_proc_dir /*= 0*/ ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 740 | static int __get_lcd_brightness(struct toshiba_acpi_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { |
| 742 | u32 hci_result; |
| 743 | u32 value; |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 744 | int brightness = 0; |
| 745 | |
| 746 | if (dev->tr_backlight_supported) { |
| 747 | bool enabled; |
| 748 | int ret = get_tr_backlight_status(dev, &enabled); |
| 749 | if (ret) |
| 750 | return ret; |
| 751 | if (enabled) |
| 752 | return 0; |
| 753 | brightness++; |
| 754 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 756 | hci_read1(dev, HCI_LCD_BRIGHTNESS, &value, &hci_result); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 757 | if (hci_result == HCI_SUCCESS) |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 758 | return brightness + (value >> HCI_LCD_BRIGHTNESS_SHIFT); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 759 | |
| 760 | return -EIO; |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 761 | } |
| 762 | |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 763 | static int get_lcd_brightness(struct backlight_device *bd) |
| 764 | { |
| 765 | struct toshiba_acpi_dev *dev = bl_get_data(bd); |
| 766 | return __get_lcd_brightness(dev); |
| 767 | } |
| 768 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 769 | static int lcd_proc_show(struct seq_file *m, void *v) |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 770 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 771 | struct toshiba_acpi_dev *dev = m->private; |
| 772 | int value; |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 773 | int levels; |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 774 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 775 | if (!dev->backlight_dev) |
| 776 | return -ENODEV; |
| 777 | |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 778 | levels = dev->backlight_dev->props.max_brightness + 1; |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 779 | value = get_lcd_brightness(dev->backlight_dev); |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 780 | if (value >= 0) { |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 781 | seq_printf(m, "brightness: %d\n", value); |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 782 | seq_printf(m, "brightness_levels: %d\n", levels); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 783 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 786 | pr_err("Error reading LCD brightness\n"); |
| 787 | return -EIO; |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | static int lcd_proc_open(struct inode *inode, struct file *file) |
| 791 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 792 | return single_open(file, lcd_proc_show, PDE_DATA(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | } |
| 794 | |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 795 | static int set_lcd_brightness(struct toshiba_acpi_dev *dev, int value) |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 796 | { |
| 797 | u32 hci_result; |
| 798 | |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 799 | if (dev->tr_backlight_supported) { |
| 800 | bool enable = !value; |
| 801 | int ret = set_tr_backlight_status(dev, enable); |
| 802 | if (ret) |
| 803 | return ret; |
| 804 | if (value) |
| 805 | value--; |
| 806 | } |
| 807 | |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 808 | value = value << HCI_LCD_BRIGHTNESS_SHIFT; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 809 | hci_write1(dev, HCI_LCD_BRIGHTNESS, value, &hci_result); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 810 | return hci_result == HCI_SUCCESS ? 0 : -EIO; |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | static int set_lcd_status(struct backlight_device *bd) |
| 814 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 815 | struct toshiba_acpi_dev *dev = bl_get_data(bd); |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 816 | return set_lcd_brightness(dev, bd->props.brightness); |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 817 | } |
| 818 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 819 | static ssize_t lcd_proc_write(struct file *file, const char __user *buf, |
| 820 | size_t count, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 822 | struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 823 | char cmd[42]; |
| 824 | size_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | int value; |
Matthijs van Otterdijk | c8af57e | 2007-01-05 16:37:03 -0800 | [diff] [blame] | 826 | int ret; |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 827 | int levels = dev->backlight_dev->props.max_brightness + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 829 | len = min(count, sizeof(cmd) - 1); |
| 830 | if (copy_from_user(cmd, buf, len)) |
| 831 | return -EFAULT; |
| 832 | cmd[len] = '\0'; |
| 833 | |
| 834 | if (sscanf(cmd, " brightness : %i", &value) == 1 && |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 835 | value >= 0 && value < levels) { |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 836 | ret = set_lcd_brightness(dev, value); |
Matthijs van Otterdijk | c8af57e | 2007-01-05 16:37:03 -0800 | [diff] [blame] | 837 | if (ret == 0) |
| 838 | ret = count; |
| 839 | } else { |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 840 | ret = -EINVAL; |
Matthijs van Otterdijk | c8af57e | 2007-01-05 16:37:03 -0800 | [diff] [blame] | 841 | } |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 842 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | } |
| 844 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 845 | static const struct file_operations lcd_proc_fops = { |
| 846 | .owner = THIS_MODULE, |
| 847 | .open = lcd_proc_open, |
| 848 | .read = seq_read, |
| 849 | .llseek = seq_lseek, |
| 850 | .release = single_release, |
| 851 | .write = lcd_proc_write, |
| 852 | }; |
| 853 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 854 | static int get_video_status(struct toshiba_acpi_dev *dev, u32 *status) |
| 855 | { |
| 856 | u32 hci_result; |
| 857 | |
| 858 | hci_read1(dev, HCI_VIDEO_OUT, status, &hci_result); |
| 859 | return hci_result == HCI_SUCCESS ? 0 : -EIO; |
| 860 | } |
| 861 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 862 | static int video_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 864 | struct toshiba_acpi_dev *dev = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | u32 value; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 866 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 868 | ret = get_video_status(dev, &value); |
| 869 | if (!ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | int is_lcd = (value & HCI_VIDEO_OUT_LCD) ? 1 : 0; |
| 871 | int is_crt = (value & HCI_VIDEO_OUT_CRT) ? 1 : 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 872 | int is_tv = (value & HCI_VIDEO_OUT_TV) ? 1 : 0; |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 873 | seq_printf(m, "lcd_out: %d\n", is_lcd); |
| 874 | seq_printf(m, "crt_out: %d\n", is_crt); |
| 875 | seq_printf(m, "tv_out: %d\n", is_tv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
| 877 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 878 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 881 | static int video_proc_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 883 | return single_open(file, video_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | static ssize_t video_proc_write(struct file *file, const char __user *buf, |
| 887 | size_t count, loff_t *pos) |
| 888 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 889 | struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 890 | char *cmd, *buffer; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 891 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | int value; |
| 893 | int remain = count; |
| 894 | int lcd_out = -1; |
| 895 | int crt_out = -1; |
| 896 | int tv_out = -1; |
Al Viro | b4482a4 | 2007-10-14 19:35:40 +0100 | [diff] [blame] | 897 | u32 video_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 899 | cmd = kmalloc(count + 1, GFP_KERNEL); |
| 900 | if (!cmd) |
| 901 | return -ENOMEM; |
| 902 | if (copy_from_user(cmd, buf, count)) { |
| 903 | kfree(cmd); |
| 904 | return -EFAULT; |
| 905 | } |
| 906 | cmd[count] = '\0'; |
| 907 | |
| 908 | buffer = cmd; |
| 909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | /* scan expression. Multiple expressions may be delimited with ; |
| 911 | * |
| 912 | * NOTE: to keep scanning simple, invalid fields are ignored |
| 913 | */ |
| 914 | while (remain) { |
| 915 | if (sscanf(buffer, " lcd_out : %i", &value) == 1) |
| 916 | lcd_out = value & 1; |
| 917 | else if (sscanf(buffer, " crt_out : %i", &value) == 1) |
| 918 | crt_out = value & 1; |
| 919 | else if (sscanf(buffer, " tv_out : %i", &value) == 1) |
| 920 | tv_out = value & 1; |
| 921 | /* advance to one character past the next ; */ |
| 922 | do { |
| 923 | ++buffer; |
| 924 | --remain; |
| 925 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 926 | while (remain && *(buffer - 1) != ';'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 929 | kfree(cmd); |
| 930 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 931 | ret = get_video_status(dev, &video_out); |
| 932 | if (!ret) { |
Harvey Harrison | 9e113e0 | 2008-09-22 14:37:29 -0700 | [diff] [blame] | 933 | unsigned int new_video_out = video_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | if (lcd_out != -1) |
| 935 | _set_bit(&new_video_out, HCI_VIDEO_OUT_LCD, lcd_out); |
| 936 | if (crt_out != -1) |
| 937 | _set_bit(&new_video_out, HCI_VIDEO_OUT_CRT, crt_out); |
| 938 | if (tv_out != -1) |
| 939 | _set_bit(&new_video_out, HCI_VIDEO_OUT_TV, tv_out); |
| 940 | /* To avoid unnecessary video disruption, only write the new |
| 941 | * video setting if something changed. */ |
| 942 | if (new_video_out != video_out) |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 943 | ret = write_acpi_int(METHOD_VIDEO_OUT, new_video_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | } |
| 945 | |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 946 | return ret ? ret : count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | } |
| 948 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 949 | static const struct file_operations video_proc_fops = { |
| 950 | .owner = THIS_MODULE, |
| 951 | .open = video_proc_open, |
| 952 | .read = seq_read, |
| 953 | .llseek = seq_lseek, |
| 954 | .release = single_release, |
| 955 | .write = video_proc_write, |
| 956 | }; |
| 957 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 958 | static int get_fan_status(struct toshiba_acpi_dev *dev, u32 *status) |
| 959 | { |
| 960 | u32 hci_result; |
| 961 | |
| 962 | hci_read1(dev, HCI_FAN, status, &hci_result); |
| 963 | return hci_result == HCI_SUCCESS ? 0 : -EIO; |
| 964 | } |
| 965 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 966 | static int fan_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 968 | struct toshiba_acpi_dev *dev = m->private; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 969 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | u32 value; |
| 971 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 972 | ret = get_fan_status(dev, &value); |
| 973 | if (!ret) { |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 974 | seq_printf(m, "running: %d\n", (value > 0)); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 975 | seq_printf(m, "force_on: %d\n", dev->force_fan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
| 977 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 978 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | } |
| 980 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 981 | static int fan_proc_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 983 | return single_open(file, fan_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | static ssize_t fan_proc_write(struct file *file, const char __user *buf, |
| 987 | size_t count, loff_t *pos) |
| 988 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 989 | struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 990 | char cmd[42]; |
| 991 | size_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | int value; |
| 993 | u32 hci_result; |
| 994 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 995 | len = min(count, sizeof(cmd) - 1); |
| 996 | if (copy_from_user(cmd, buf, len)) |
| 997 | return -EFAULT; |
| 998 | cmd[len] = '\0'; |
| 999 | |
| 1000 | if (sscanf(cmd, " force_on : %i", &value) == 1 && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1001 | value >= 0 && value <= 1) { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1002 | hci_write1(dev, HCI_FAN, value, &hci_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | if (hci_result != HCI_SUCCESS) |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 1004 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | else |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1006 | dev->force_fan = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } else { |
| 1008 | return -EINVAL; |
| 1009 | } |
| 1010 | |
| 1011 | return count; |
| 1012 | } |
| 1013 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1014 | static const struct file_operations fan_proc_fops = { |
| 1015 | .owner = THIS_MODULE, |
| 1016 | .open = fan_proc_open, |
| 1017 | .read = seq_read, |
| 1018 | .llseek = seq_lseek, |
| 1019 | .release = single_release, |
| 1020 | .write = fan_proc_write, |
| 1021 | }; |
| 1022 | |
| 1023 | static int keys_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1025 | struct toshiba_acpi_dev *dev = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | u32 hci_result; |
| 1027 | u32 value; |
| 1028 | |
Seth Forshee | 11948b9 | 2011-11-16 17:37:45 -0600 | [diff] [blame] | 1029 | if (!dev->key_event_valid && dev->system_event_supported) { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1030 | hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | if (hci_result == HCI_SUCCESS) { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1032 | dev->key_event_valid = 1; |
| 1033 | dev->last_key_event = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | } else if (hci_result == HCI_EMPTY) { |
| 1035 | /* better luck next time */ |
| 1036 | } else if (hci_result == HCI_NOT_SUPPORTED) { |
| 1037 | /* This is a workaround for an unresolved issue on |
| 1038 | * some machines where system events sporadically |
| 1039 | * become disabled. */ |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1040 | hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result); |
Joe Perches | 7e33460 | 2011-03-29 15:21:52 -0700 | [diff] [blame] | 1041 | pr_notice("Re-enabled hotkeys\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | } else { |
Joe Perches | 7e33460 | 2011-03-29 15:21:52 -0700 | [diff] [blame] | 1043 | pr_err("Error reading hotkey status\n"); |
Seth Forshee | 32bcd5c | 2011-09-20 16:55:50 -0500 | [diff] [blame] | 1044 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
| 1046 | } |
| 1047 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1048 | seq_printf(m, "hotkey_ready: %d\n", dev->key_event_valid); |
| 1049 | seq_printf(m, "hotkey: 0x%04x\n", dev->last_key_event); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1050 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1053 | static int keys_proc_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1055 | return single_open(file, keys_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | static ssize_t keys_proc_write(struct file *file, const char __user *buf, |
| 1059 | size_t count, loff_t *pos) |
| 1060 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1061 | struct toshiba_acpi_dev *dev = PDE_DATA(file_inode(file)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1062 | char cmd[42]; |
| 1063 | size_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | int value; |
| 1065 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1066 | len = min(count, sizeof(cmd) - 1); |
| 1067 | if (copy_from_user(cmd, buf, len)) |
| 1068 | return -EFAULT; |
| 1069 | cmd[len] = '\0'; |
| 1070 | |
| 1071 | if (sscanf(cmd, " hotkey_ready : %i", &value) == 1 && value == 0) { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1072 | dev->key_event_valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | } else { |
| 1074 | return -EINVAL; |
| 1075 | } |
| 1076 | |
| 1077 | return count; |
| 1078 | } |
| 1079 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1080 | static const struct file_operations keys_proc_fops = { |
| 1081 | .owner = THIS_MODULE, |
| 1082 | .open = keys_proc_open, |
| 1083 | .read = seq_read, |
| 1084 | .llseek = seq_lseek, |
| 1085 | .release = single_release, |
| 1086 | .write = keys_proc_write, |
| 1087 | }; |
| 1088 | |
| 1089 | static int version_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | { |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1091 | seq_printf(m, "driver: %s\n", TOSHIBA_ACPI_VERSION); |
| 1092 | seq_printf(m, "proc_interface: %d\n", PROC_INTERFACE_VERSION); |
| 1093 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1096 | static int version_proc_open(struct inode *inode, struct file *file) |
| 1097 | { |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 1098 | return single_open(file, version_proc_show, PDE_DATA(inode)); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | static const struct file_operations version_proc_fops = { |
| 1102 | .owner = THIS_MODULE, |
| 1103 | .open = version_proc_open, |
| 1104 | .read = seq_read, |
| 1105 | .llseek = seq_lseek, |
| 1106 | .release = single_release, |
| 1107 | }; |
| 1108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | /* proc and module init |
| 1110 | */ |
| 1111 | |
| 1112 | #define PROC_TOSHIBA "toshiba" |
| 1113 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1114 | static void create_toshiba_proc_entries(struct toshiba_acpi_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | { |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1116 | if (dev->backlight_dev) |
| 1117 | proc_create_data("lcd", S_IRUGO | S_IWUSR, toshiba_proc_dir, |
| 1118 | &lcd_proc_fops, dev); |
| 1119 | if (dev->video_supported) |
| 1120 | proc_create_data("video", S_IRUGO | S_IWUSR, toshiba_proc_dir, |
| 1121 | &video_proc_fops, dev); |
| 1122 | if (dev->fan_supported) |
| 1123 | proc_create_data("fan", S_IRUGO | S_IWUSR, toshiba_proc_dir, |
| 1124 | &fan_proc_fops, dev); |
| 1125 | if (dev->hotkey_dev) |
| 1126 | proc_create_data("keys", S_IRUGO | S_IWUSR, toshiba_proc_dir, |
| 1127 | &keys_proc_fops, dev); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1128 | proc_create_data("version", S_IRUGO, toshiba_proc_dir, |
| 1129 | &version_proc_fops, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |
| 1131 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1132 | static void remove_toshiba_proc_entries(struct toshiba_acpi_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | { |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1134 | if (dev->backlight_dev) |
| 1135 | remove_proc_entry("lcd", toshiba_proc_dir); |
| 1136 | if (dev->video_supported) |
| 1137 | remove_proc_entry("video", toshiba_proc_dir); |
| 1138 | if (dev->fan_supported) |
| 1139 | remove_proc_entry("fan", toshiba_proc_dir); |
| 1140 | if (dev->hotkey_dev) |
| 1141 | remove_proc_entry("keys", toshiba_proc_dir); |
Alexey Dobriyan | 936c8bc | 2009-12-21 16:20:02 -0800 | [diff] [blame] | 1142 | remove_proc_entry("version", toshiba_proc_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
Lionel Debroux | acc2472 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 1145 | static const struct backlight_ops toshiba_backlight_data = { |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 1146 | .options = BL_CORE_SUSPENDRESUME, |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1147 | .get_brightness = get_lcd_brightness, |
| 1148 | .update_status = set_lcd_status, |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 1149 | }; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1150 | |
| 1151 | /* |
| 1152 | * Sysfs files |
| 1153 | */ |
| 1154 | |
| 1155 | static ssize_t toshiba_kbd_bl_mode_store(struct device *dev, |
| 1156 | struct device_attribute *attr, |
| 1157 | const char *buf, size_t count) |
| 1158 | { |
| 1159 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1160 | int mode = -1; |
| 1161 | int time = -1; |
| 1162 | |
| 1163 | if (sscanf(buf, "%i", &mode) != 1 && (mode != 2 || mode != 1)) |
| 1164 | return -EINVAL; |
| 1165 | |
| 1166 | /* Set the Keyboard Backlight Mode where: |
| 1167 | * Mode - Auto (2) | FN-Z (1) |
| 1168 | * Auto - KBD backlight turns off automatically in given time |
| 1169 | * FN-Z - KBD backlight "toggles" when hotkey pressed |
| 1170 | */ |
| 1171 | if (mode != -1 && toshiba->kbd_mode != mode) { |
| 1172 | time = toshiba->kbd_time << HCI_MISC_SHIFT; |
| 1173 | time = time + toshiba->kbd_mode; |
| 1174 | if (toshiba_kbd_illum_status_set(toshiba, time) < 0) |
| 1175 | return -EIO; |
| 1176 | toshiba->kbd_mode = mode; |
| 1177 | } |
| 1178 | |
| 1179 | return count; |
| 1180 | } |
| 1181 | |
| 1182 | static ssize_t toshiba_kbd_bl_mode_show(struct device *dev, |
| 1183 | struct device_attribute *attr, |
| 1184 | char *buf) |
| 1185 | { |
| 1186 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1187 | u32 time; |
| 1188 | |
| 1189 | if (toshiba_kbd_illum_status_get(toshiba, &time) < 0) |
| 1190 | return -EIO; |
| 1191 | |
| 1192 | return sprintf(buf, "%i\n", time & 0x07); |
| 1193 | } |
| 1194 | |
| 1195 | static ssize_t toshiba_kbd_bl_timeout_store(struct device *dev, |
| 1196 | struct device_attribute *attr, |
| 1197 | const char *buf, size_t count) |
| 1198 | { |
| 1199 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1200 | int time = -1; |
| 1201 | |
| 1202 | if (sscanf(buf, "%i", &time) != 1 && (time < 0 || time > 60)) |
| 1203 | return -EINVAL; |
| 1204 | |
| 1205 | /* Set the Keyboard Backlight Timeout: 0-60 seconds */ |
| 1206 | if (time != -1 && toshiba->kbd_time != time) { |
| 1207 | time = time << HCI_MISC_SHIFT; |
| 1208 | time = (toshiba->kbd_mode == SCI_KBD_MODE_AUTO) ? |
| 1209 | time + 1 : time + 2; |
| 1210 | if (toshiba_kbd_illum_status_set(toshiba, time) < 0) |
| 1211 | return -EIO; |
| 1212 | toshiba->kbd_time = time >> HCI_MISC_SHIFT; |
| 1213 | } |
| 1214 | |
| 1215 | return count; |
| 1216 | } |
| 1217 | |
| 1218 | static ssize_t toshiba_kbd_bl_timeout_show(struct device *dev, |
| 1219 | struct device_attribute *attr, |
| 1220 | char *buf) |
| 1221 | { |
| 1222 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1223 | u32 time; |
| 1224 | |
| 1225 | if (toshiba_kbd_illum_status_get(toshiba, &time) < 0) |
| 1226 | return -EIO; |
| 1227 | |
| 1228 | return sprintf(buf, "%i\n", time >> HCI_MISC_SHIFT); |
| 1229 | } |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 1230 | |
| 1231 | static ssize_t toshiba_touchpad_store(struct device *dev, |
| 1232 | struct device_attribute *attr, |
| 1233 | const char *buf, size_t count) |
| 1234 | { |
| 1235 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1236 | int state; |
| 1237 | |
| 1238 | /* Set the TouchPad on/off, 0 - Disable | 1 - Enable */ |
| 1239 | if (sscanf(buf, "%i", &state) == 1 && (state == 0 || state == 1)) { |
| 1240 | if (toshiba_touchpad_set(toshiba, state) < 0) |
| 1241 | return -EIO; |
| 1242 | } |
| 1243 | |
| 1244 | return count; |
| 1245 | } |
| 1246 | |
| 1247 | static ssize_t toshiba_touchpad_show(struct device *dev, |
| 1248 | struct device_attribute *attr, char *buf) |
| 1249 | { |
| 1250 | struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev); |
| 1251 | u32 state; |
| 1252 | int ret; |
| 1253 | |
| 1254 | ret = toshiba_touchpad_get(toshiba, &state); |
| 1255 | if (ret < 0) |
| 1256 | return ret; |
| 1257 | |
| 1258 | return sprintf(buf, "%i\n", state); |
| 1259 | } |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1260 | |
| 1261 | static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR, |
| 1262 | toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store); |
| 1263 | static DEVICE_ATTR(kbd_backlight_timeout, S_IRUGO | S_IWUSR, |
| 1264 | toshiba_kbd_bl_timeout_show, toshiba_kbd_bl_timeout_store); |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 1265 | static DEVICE_ATTR(touchpad, S_IRUGO | S_IWUSR, |
| 1266 | toshiba_touchpad_show, toshiba_touchpad_store); |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1267 | |
| 1268 | static struct attribute *toshiba_attributes[] = { |
| 1269 | &dev_attr_kbd_backlight_mode.attr, |
| 1270 | &dev_attr_kbd_backlight_timeout.attr, |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 1271 | &dev_attr_touchpad.attr, |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1272 | NULL, |
| 1273 | }; |
| 1274 | |
| 1275 | static umode_t toshiba_sysfs_is_visible(struct kobject *kobj, |
| 1276 | struct attribute *attr, int idx) |
| 1277 | { |
| 1278 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1279 | struct toshiba_acpi_dev *drv = dev_get_drvdata(dev); |
| 1280 | bool exists = true; |
| 1281 | |
| 1282 | if (attr == &dev_attr_kbd_backlight_mode.attr) |
| 1283 | exists = (drv->kbd_illum_supported) ? true : false; |
| 1284 | else if (attr == &dev_attr_kbd_backlight_timeout.attr) |
| 1285 | exists = (drv->kbd_mode == SCI_KBD_MODE_AUTO) ? true : false; |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 1286 | else if (attr == &dev_attr_touchpad.attr) |
| 1287 | exists = (drv->touchpad_supported) ? true : false; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1288 | |
| 1289 | return exists ? attr->mode : 0; |
| 1290 | } |
| 1291 | |
| 1292 | static struct attribute_group toshiba_attr_group = { |
| 1293 | .is_visible = toshiba_sysfs_is_visible, |
| 1294 | .attrs = toshiba_attributes, |
| 1295 | }; |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 1296 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1297 | static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str, |
| 1298 | struct serio *port) |
| 1299 | { |
| 1300 | if (str & 0x20) |
| 1301 | return false; |
| 1302 | |
| 1303 | if (unlikely(data == 0xe0)) |
| 1304 | return false; |
| 1305 | |
| 1306 | if ((data & 0x7f) == TOS1900_FN_SCAN) { |
| 1307 | schedule_work(&toshiba_acpi->hotkey_work); |
| 1308 | return true; |
| 1309 | } |
| 1310 | |
| 1311 | return false; |
| 1312 | } |
| 1313 | |
| 1314 | static void toshiba_acpi_hotkey_work(struct work_struct *work) |
| 1315 | { |
| 1316 | acpi_handle ec_handle = ec_get_handle(); |
| 1317 | acpi_status status; |
| 1318 | |
| 1319 | if (!ec_handle) |
| 1320 | return; |
| 1321 | |
| 1322 | status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL); |
| 1323 | if (ACPI_FAILURE(status)) |
| 1324 | pr_err("ACPI NTFY method execution failed\n"); |
| 1325 | } |
| 1326 | |
| 1327 | /* |
| 1328 | * Returns hotkey scancode, or < 0 on failure. |
| 1329 | */ |
| 1330 | static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev) |
| 1331 | { |
Zhang Rui | 74facaf | 2013-09-03 08:32:15 +0800 | [diff] [blame] | 1332 | unsigned long long value; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1333 | acpi_status status; |
| 1334 | |
Zhang Rui | 74facaf | 2013-09-03 08:32:15 +0800 | [diff] [blame] | 1335 | status = acpi_evaluate_integer(dev->acpi_dev->handle, "INFO", |
| 1336 | NULL, &value); |
| 1337 | if (ACPI_FAILURE(status)) { |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1338 | pr_err("ACPI INFO method execution failed\n"); |
| 1339 | return -EIO; |
| 1340 | } |
| 1341 | |
Zhang Rui | 74facaf | 2013-09-03 08:32:15 +0800 | [diff] [blame] | 1342 | return value; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev, |
| 1346 | int scancode) |
| 1347 | { |
| 1348 | if (scancode == 0x100) |
| 1349 | return; |
| 1350 | |
| 1351 | /* act on key press; ignore key release */ |
| 1352 | if (scancode & 0x80) |
| 1353 | return; |
| 1354 | |
| 1355 | if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true)) |
| 1356 | pr_info("Unknown key %x\n", scancode); |
| 1357 | } |
| 1358 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1359 | static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev) |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1360 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1361 | acpi_status status; |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1362 | acpi_handle ec_handle; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1363 | int error; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1364 | u32 hci_result; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1365 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1366 | dev->hotkey_dev = input_allocate_device(); |
Joe Perches | b222cca | 2013-10-23 12:14:52 -0700 | [diff] [blame] | 1367 | if (!dev->hotkey_dev) |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1368 | return -ENOMEM; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1369 | |
| 1370 | dev->hotkey_dev->name = "Toshiba input device"; |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 1371 | dev->hotkey_dev->phys = "toshiba_acpi/input0"; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1372 | dev->hotkey_dev->id.bustype = BUS_HOST; |
| 1373 | |
| 1374 | error = sparse_keymap_setup(dev->hotkey_dev, toshiba_acpi_keymap, NULL); |
| 1375 | if (error) |
| 1376 | goto err_free_dev; |
| 1377 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1378 | /* |
| 1379 | * For some machines the SCI responsible for providing hotkey |
| 1380 | * notification doesn't fire. We can trigger the notification |
| 1381 | * whenever the Fn key is pressed using the NTFY method, if |
| 1382 | * supported, so if it's present set up an i8042 key filter |
| 1383 | * for this purpose. |
| 1384 | */ |
| 1385 | status = AE_ERROR; |
| 1386 | ec_handle = ec_get_handle(); |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1387 | if (ec_handle && acpi_has_method(ec_handle, "NTFY")) { |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1388 | INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work); |
| 1389 | |
| 1390 | error = i8042_install_filter(toshiba_acpi_i8042_filter); |
| 1391 | if (error) { |
| 1392 | pr_err("Error installing key filter\n"); |
| 1393 | goto err_free_keymap; |
| 1394 | } |
| 1395 | |
| 1396 | dev->ntfy_supported = 1; |
| 1397 | } |
| 1398 | |
| 1399 | /* |
| 1400 | * Determine hotkey query interface. Prefer using the INFO |
| 1401 | * method when it is available. |
| 1402 | */ |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1403 | if (acpi_has_method(dev->acpi_dev->handle, "INFO")) |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1404 | dev->info_supported = 1; |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1405 | else { |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1406 | hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result); |
| 1407 | if (hci_result == HCI_SUCCESS) |
| 1408 | dev->system_event_supported = 1; |
| 1409 | } |
| 1410 | |
| 1411 | if (!dev->info_supported && !dev->system_event_supported) { |
| 1412 | pr_warn("No hotkey query interface found\n"); |
| 1413 | goto err_remove_filter; |
| 1414 | } |
| 1415 | |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 1416 | status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1417 | if (ACPI_FAILURE(status)) { |
| 1418 | pr_info("Unable to enable hotkeys\n"); |
| 1419 | error = -ENODEV; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1420 | goto err_remove_filter; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1421 | } |
| 1422 | |
| 1423 | error = input_register_device(dev->hotkey_dev); |
| 1424 | if (error) { |
| 1425 | pr_info("Unable to register input device\n"); |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1426 | goto err_remove_filter; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1427 | } |
| 1428 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1429 | hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1430 | return 0; |
| 1431 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1432 | err_remove_filter: |
| 1433 | if (dev->ntfy_supported) |
| 1434 | i8042_remove_filter(toshiba_acpi_i8042_filter); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1435 | err_free_keymap: |
| 1436 | sparse_keymap_free(dev->hotkey_dev); |
| 1437 | err_free_dev: |
| 1438 | input_free_device(dev->hotkey_dev); |
| 1439 | dev->hotkey_dev = NULL; |
| 1440 | return error; |
| 1441 | } |
| 1442 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1443 | static int toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev) |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1444 | { |
| 1445 | struct backlight_properties props; |
| 1446 | int brightness; |
| 1447 | int ret; |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 1448 | bool enabled; |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1449 | |
| 1450 | /* |
| 1451 | * Some machines don't support the backlight methods at all, and |
| 1452 | * others support it read-only. Either of these is pretty useless, |
| 1453 | * so only register the backlight device if the backlight method |
| 1454 | * supports both reads and writes. |
| 1455 | */ |
| 1456 | brightness = __get_lcd_brightness(dev); |
| 1457 | if (brightness < 0) |
| 1458 | return 0; |
| 1459 | ret = set_lcd_brightness(dev, brightness); |
| 1460 | if (ret) { |
| 1461 | pr_debug("Backlight method is read-only, disabling backlight support\n"); |
| 1462 | return 0; |
| 1463 | } |
| 1464 | |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 1465 | /* Determine whether or not BIOS supports transflective backlight */ |
| 1466 | ret = get_tr_backlight_status(dev, &enabled); |
| 1467 | dev->tr_backlight_supported = !ret; |
| 1468 | |
Matthew Garrett | 53039f2 | 2012-06-01 11:02:36 -0400 | [diff] [blame] | 1469 | memset(&props, 0, sizeof(props)); |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1470 | props.type = BACKLIGHT_PLATFORM; |
| 1471 | props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1; |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1472 | |
Akio Idehara | 121b7b0 | 2012-04-06 01:46:43 +0900 | [diff] [blame] | 1473 | /* adding an extra level and having 0 change to transflective mode */ |
| 1474 | if (dev->tr_backlight_supported) |
| 1475 | props.max_brightness++; |
| 1476 | |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1477 | dev->backlight_dev = backlight_device_register("toshiba", |
| 1478 | &dev->acpi_dev->dev, |
| 1479 | dev, |
| 1480 | &toshiba_backlight_data, |
| 1481 | &props); |
| 1482 | if (IS_ERR(dev->backlight_dev)) { |
| 1483 | ret = PTR_ERR(dev->backlight_dev); |
| 1484 | pr_err("Could not register toshiba backlight device\n"); |
| 1485 | dev->backlight_dev = NULL; |
| 1486 | return ret; |
| 1487 | } |
| 1488 | |
| 1489 | dev->backlight_dev->props.brightness = brightness; |
| 1490 | return 0; |
| 1491 | } |
| 1492 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1493 | static int toshiba_acpi_remove(struct acpi_device *acpi_dev) |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1494 | { |
| 1495 | struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev); |
| 1496 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1497 | remove_toshiba_proc_entries(dev); |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1498 | |
| 1499 | if (dev->sysfs_created) |
| 1500 | sysfs_remove_group(&dev->acpi_dev->dev.kobj, |
| 1501 | &toshiba_attr_group); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1502 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1503 | if (dev->ntfy_supported) { |
| 1504 | i8042_remove_filter(toshiba_acpi_i8042_filter); |
| 1505 | cancel_work_sync(&dev->hotkey_work); |
| 1506 | } |
| 1507 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1508 | if (dev->hotkey_dev) { |
| 1509 | input_unregister_device(dev->hotkey_dev); |
| 1510 | sparse_keymap_free(dev->hotkey_dev); |
| 1511 | } |
| 1512 | |
| 1513 | if (dev->bt_rfk) { |
| 1514 | rfkill_unregister(dev->bt_rfk); |
| 1515 | rfkill_destroy(dev->bt_rfk); |
| 1516 | } |
| 1517 | |
| 1518 | if (dev->backlight_dev) |
| 1519 | backlight_device_unregister(dev->backlight_dev); |
| 1520 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1521 | if (dev->illumination_supported) |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1522 | led_classdev_unregister(&dev->led_dev); |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1523 | |
| 1524 | if (dev->kbd_led_registered) |
| 1525 | led_classdev_unregister(&dev->kbd_led); |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 1526 | |
| 1527 | if (dev->eco_supported) |
| 1528 | led_classdev_unregister(&dev->eco_led); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1529 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1530 | if (toshiba_acpi) |
| 1531 | toshiba_acpi = NULL; |
| 1532 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1533 | kfree(dev); |
| 1534 | |
| 1535 | return 0; |
| 1536 | } |
| 1537 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1538 | static const char *find_hci_method(acpi_handle handle) |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1539 | { |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1540 | if (acpi_has_method(handle, "GHCI")) |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1541 | return "GHCI"; |
| 1542 | |
Zhang Rui | e2e1960 | 2013-09-03 08:32:06 +0800 | [diff] [blame] | 1543 | if (acpi_has_method(handle, "SPFC")) |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1544 | return "SPFC"; |
| 1545 | |
| 1546 | return NULL; |
| 1547 | } |
| 1548 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1549 | static int toshiba_acpi_add(struct acpi_device *acpi_dev) |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1550 | { |
| 1551 | struct toshiba_acpi_dev *dev; |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1552 | const char *hci_method; |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1553 | u32 dummy; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1554 | bool bt_present; |
| 1555 | int ret = 0; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1556 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1557 | if (toshiba_acpi) |
| 1558 | return -EBUSY; |
| 1559 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1560 | pr_info("Toshiba Laptop ACPI Extras version %s\n", |
| 1561 | TOSHIBA_ACPI_VERSION); |
| 1562 | |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1563 | hci_method = find_hci_method(acpi_dev->handle); |
| 1564 | if (!hci_method) { |
| 1565 | pr_err("HCI interface not found\n"); |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 1566 | return -ENODEV; |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1567 | } |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 1568 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1569 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| 1570 | if (!dev) |
| 1571 | return -ENOMEM; |
| 1572 | dev->acpi_dev = acpi_dev; |
Seth Forshee | a540d6b | 2011-09-20 16:55:52 -0500 | [diff] [blame] | 1573 | dev->method_hci = hci_method; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1574 | acpi_dev->driver_data = dev; |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1575 | dev_set_drvdata(&acpi_dev->dev, dev); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1576 | |
Seth Forshee | 6e02cc7 | 2011-09-20 16:55:51 -0500 | [diff] [blame] | 1577 | if (toshiba_acpi_setup_keyboard(dev)) |
| 1578 | pr_info("Unable to activate hotkeys\n"); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1579 | |
| 1580 | mutex_init(&dev->mutex); |
| 1581 | |
Seth Forshee | 62cce75 | 2012-04-19 11:23:50 -0500 | [diff] [blame] | 1582 | ret = toshiba_acpi_setup_backlight(dev); |
| 1583 | if (ret) |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1584 | goto error; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1585 | |
| 1586 | /* Register rfkill switch for Bluetooth */ |
| 1587 | if (hci_get_bt_present(dev, &bt_present) == HCI_SUCCESS && bt_present) { |
| 1588 | dev->bt_rfk = rfkill_alloc("Toshiba Bluetooth", |
| 1589 | &acpi_dev->dev, |
| 1590 | RFKILL_TYPE_BLUETOOTH, |
| 1591 | &toshiba_rfk_ops, |
| 1592 | dev); |
| 1593 | if (!dev->bt_rfk) { |
| 1594 | pr_err("unable to allocate rfkill device\n"); |
| 1595 | ret = -ENOMEM; |
| 1596 | goto error; |
| 1597 | } |
| 1598 | |
| 1599 | ret = rfkill_register(dev->bt_rfk); |
| 1600 | if (ret) { |
| 1601 | pr_err("unable to register rfkill device\n"); |
| 1602 | rfkill_destroy(dev->bt_rfk); |
| 1603 | goto error; |
| 1604 | } |
| 1605 | } |
| 1606 | |
| 1607 | if (toshiba_illumination_available(dev)) { |
| 1608 | dev->led_dev.name = "toshiba::illumination"; |
| 1609 | dev->led_dev.max_brightness = 1; |
| 1610 | dev->led_dev.brightness_set = toshiba_illumination_set; |
| 1611 | dev->led_dev.brightness_get = toshiba_illumination_get; |
| 1612 | if (!led_classdev_register(&acpi_dev->dev, &dev->led_dev)) |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1613 | dev->illumination_supported = 1; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1614 | } |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1615 | |
Azael Avalos | def6c4e | 2014-03-25 20:38:33 -0600 | [diff] [blame^] | 1616 | if (toshiba_eco_mode_available(dev)) { |
| 1617 | dev->eco_led.name = "toshiba::eco_mode"; |
| 1618 | dev->eco_led.max_brightness = 1; |
| 1619 | dev->eco_led.brightness_set = toshiba_eco_mode_set_status; |
| 1620 | dev->eco_led.brightness_get = toshiba_eco_mode_get_status; |
| 1621 | if (!led_classdev_register(&dev->acpi_dev->dev, &dev->eco_led)) |
| 1622 | dev->eco_supported = 1; |
| 1623 | } |
| 1624 | |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1625 | ret = toshiba_kbd_illum_status_get(dev, &dummy); |
| 1626 | if (!ret) { |
| 1627 | dev->kbd_time = dummy >> HCI_MISC_SHIFT; |
| 1628 | dev->kbd_mode = dummy & 0x07; |
| 1629 | } |
| 1630 | dev->kbd_illum_supported = !ret; |
| 1631 | /* |
| 1632 | * Only register the LED if KBD illumination is supported |
| 1633 | * and the keyboard backlight operation mode is set to FN-Z |
| 1634 | */ |
| 1635 | if (dev->kbd_illum_supported && dev->kbd_mode == SCI_KBD_MODE_FNZ) { |
| 1636 | dev->kbd_led.name = "toshiba::kbd_backlight"; |
| 1637 | dev->kbd_led.max_brightness = 1; |
| 1638 | dev->kbd_led.brightness_set = toshiba_kbd_backlight_set; |
| 1639 | dev->kbd_led.brightness_get = toshiba_kbd_backlight_get; |
| 1640 | if (!led_classdev_register(&dev->acpi_dev->dev, &dev->kbd_led)) |
| 1641 | dev->kbd_led_registered = 1; |
| 1642 | } |
Azael Avalos | 9d8658a | 2014-03-25 20:38:32 -0600 | [diff] [blame] | 1643 | |
| 1644 | ret = toshiba_touchpad_get(dev, &dummy); |
| 1645 | dev->touchpad_supported = !ret; |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1646 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1647 | /* Determine whether or not BIOS supports fan and video interfaces */ |
| 1648 | |
| 1649 | ret = get_video_status(dev, &dummy); |
| 1650 | dev->video_supported = !ret; |
| 1651 | |
| 1652 | ret = get_fan_status(dev, &dummy); |
| 1653 | dev->fan_supported = !ret; |
| 1654 | |
Azael Avalos | 360f0f3 | 2014-03-25 20:38:31 -0600 | [diff] [blame] | 1655 | ret = sysfs_create_group(&dev->acpi_dev->dev.kobj, |
| 1656 | &toshiba_attr_group); |
| 1657 | if (ret) { |
| 1658 | dev->sysfs_created = 0; |
| 1659 | goto error; |
| 1660 | } |
| 1661 | dev->sysfs_created = !ret; |
| 1662 | |
Seth Forshee | 36d03f9 | 2011-09-20 16:55:53 -0500 | [diff] [blame] | 1663 | create_toshiba_proc_entries(dev); |
| 1664 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1665 | toshiba_acpi = dev; |
| 1666 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1667 | return 0; |
| 1668 | |
| 1669 | error: |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1670 | toshiba_acpi_remove(acpi_dev); |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1671 | return ret; |
| 1672 | } |
| 1673 | |
| 1674 | static void toshiba_acpi_notify(struct acpi_device *acpi_dev, u32 event) |
| 1675 | { |
| 1676 | struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev); |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1677 | u32 hci_result, value; |
Seth Forshee | 11948b9 | 2011-11-16 17:37:45 -0600 | [diff] [blame] | 1678 | int retries = 3; |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1679 | int scancode; |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1680 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1681 | if (event != 0x80) |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1682 | return; |
Seth Forshee | 11948b9 | 2011-11-16 17:37:45 -0600 | [diff] [blame] | 1683 | |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1684 | if (dev->info_supported) { |
| 1685 | scancode = toshiba_acpi_query_hotkey(dev); |
| 1686 | if (scancode < 0) |
| 1687 | pr_err("Failed to query hotkey event\n"); |
| 1688 | else if (scancode != 0) |
| 1689 | toshiba_acpi_report_hotkey(dev, scancode); |
| 1690 | } else if (dev->system_event_supported) { |
| 1691 | do { |
| 1692 | hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result); |
| 1693 | switch (hci_result) { |
| 1694 | case HCI_SUCCESS: |
| 1695 | toshiba_acpi_report_hotkey(dev, (int)value); |
| 1696 | break; |
| 1697 | case HCI_NOT_SUPPORTED: |
| 1698 | /* |
| 1699 | * This is a workaround for an unresolved |
| 1700 | * issue on some machines where system events |
| 1701 | * sporadically become disabled. |
| 1702 | */ |
| 1703 | hci_write1(dev, HCI_SYSTEM_EVENT, 1, |
| 1704 | &hci_result); |
| 1705 | pr_notice("Re-enabled hotkeys\n"); |
| 1706 | /* fall through */ |
| 1707 | default: |
| 1708 | retries--; |
| 1709 | break; |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1710 | } |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1711 | } while (retries && hci_result != HCI_EMPTY); |
| 1712 | } |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1713 | } |
| 1714 | |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 1715 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1716 | static int toshiba_acpi_suspend(struct device *device) |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1717 | { |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1718 | struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device)); |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1719 | u32 result; |
| 1720 | |
| 1721 | if (dev->hotkey_dev) |
| 1722 | hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result); |
| 1723 | |
| 1724 | return 0; |
| 1725 | } |
| 1726 | |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1727 | static int toshiba_acpi_resume(struct device *device) |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1728 | { |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1729 | struct toshiba_acpi_dev *dev = acpi_driver_data(to_acpi_device(device)); |
Seth Forshee | 29cd293 | 2012-01-18 13:44:09 -0600 | [diff] [blame] | 1730 | u32 result; |
| 1731 | |
| 1732 | if (dev->hotkey_dev) |
| 1733 | hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result); |
| 1734 | |
| 1735 | return 0; |
| 1736 | } |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 1737 | #endif |
Matthew Garrett | 6335e4d | 2010-02-25 15:20:54 -0500 | [diff] [blame] | 1738 | |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1739 | static SIMPLE_DEV_PM_OPS(toshiba_acpi_pm, |
| 1740 | toshiba_acpi_suspend, toshiba_acpi_resume); |
| 1741 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1742 | static struct acpi_driver toshiba_acpi_driver = { |
| 1743 | .name = "Toshiba ACPI driver", |
| 1744 | .owner = THIS_MODULE, |
| 1745 | .ids = toshiba_device_ids, |
| 1746 | .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS, |
| 1747 | .ops = { |
| 1748 | .add = toshiba_acpi_add, |
| 1749 | .remove = toshiba_acpi_remove, |
| 1750 | .notify = toshiba_acpi_notify, |
| 1751 | }, |
Rafael J. Wysocki | 43d2fd3 | 2012-06-27 23:27:16 +0200 | [diff] [blame] | 1752 | .drv.pm = &toshiba_acpi_pm, |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1753 | }; |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 1754 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1755 | static int __init toshiba_acpi_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1757 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | |
Seth Forshee | f11f999 | 2012-01-18 13:44:11 -0600 | [diff] [blame] | 1759 | /* |
| 1760 | * Machines with this WMI guid aren't supported due to bugs in |
| 1761 | * their AML. This check relies on wmi initializing before |
| 1762 | * toshiba_acpi to guarantee guids have been identified. |
| 1763 | */ |
| 1764 | if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) |
| 1765 | return -ENODEV; |
| 1766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir); |
| 1768 | if (!toshiba_proc_dir) { |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1769 | pr_err("Unable to create proc dir " PROC_TOSHIBA "\n"); |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 1770 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | } |
| 1772 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1773 | ret = acpi_bus_register_driver(&toshiba_acpi_driver); |
| 1774 | if (ret) { |
| 1775 | pr_err("Failed to register ACPI driver: %d\n", ret); |
| 1776 | remove_proc_entry(PROC_TOSHIBA, acpi_root_dir); |
Holger Macht | c926355 | 2006-10-20 14:30:29 -0700 | [diff] [blame] | 1777 | } |
| 1778 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1779 | return ret; |
| 1780 | } |
philipl@overt.org | c41a40c | 2008-08-30 11:57:39 -0400 | [diff] [blame] | 1781 | |
Seth Forshee | 135740d | 2011-09-20 16:55:49 -0500 | [diff] [blame] | 1782 | static void __exit toshiba_acpi_exit(void) |
| 1783 | { |
| 1784 | acpi_bus_unregister_driver(&toshiba_acpi_driver); |
| 1785 | if (toshiba_proc_dir) |
| 1786 | remove_proc_entry(PROC_TOSHIBA, acpi_root_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | } |
| 1788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | module_init(toshiba_acpi_init); |
| 1790 | module_exit(toshiba_acpi_exit); |