Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1 | /*-*-linux-c-*-*/ |
| 2 | |
| 3 | /* |
Jonathan Woithe | 409a3e9 | 2012-03-27 13:01:01 +1030 | [diff] [blame] | 4 | Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@just42.net> |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 5 | Copyright (C) 2008 Peter Gruber <nokos@gmx.net> |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 6 | Copyright (C) 2008 Tony Vroon <tony@linx.net> |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 7 | Based on earlier work: |
| 8 | Copyright (C) 2003 Shane Spencer <shane@bogomip.com> |
| 9 | Adrian Yee <brewt-fujitsu@brewt.org> |
| 10 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 11 | Templated from msi-laptop.c and thinkpad_acpi.c which is copyright |
| 12 | by its respective authors. |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 13 | |
| 14 | This program is free software; you can redistribute it and/or modify |
| 15 | it under the terms of the GNU General Public License as published by |
| 16 | the Free Software Foundation; either version 2 of the License, or |
| 17 | (at your option) any later version. |
| 18 | |
| 19 | This program is distributed in the hope that it will be useful, but |
| 20 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 22 | General Public License for more details. |
| 23 | |
| 24 | You should have received a copy of the GNU General Public License |
| 25 | along with this program; if not, write to the Free Software |
| 26 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 27 | 02110-1301, USA. |
| 28 | */ |
| 29 | |
| 30 | /* |
| 31 | * fujitsu-laptop.c - Fujitsu laptop support, providing access to additional |
| 32 | * features made available on a range of Fujitsu laptops including the |
| 33 | * P2xxx/P5xxx/S6xxx/S7xxx series. |
| 34 | * |
| 35 | * This driver exports a few files in /sys/devices/platform/fujitsu-laptop/; |
| 36 | * others may be added at a later date. |
| 37 | * |
| 38 | * lcd_level - Screen brightness: contains a single integer in the |
| 39 | * range 0..7. (rw) |
| 40 | * |
| 41 | * In addition to these platform device attributes the driver |
| 42 | * registers itself in the Linux backlight control subsystem and is |
| 43 | * available to userspace under /sys/class/backlight/fujitsu-laptop/. |
| 44 | * |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 45 | * Hotkeys present on certain Fujitsu laptops (eg: the S6xxx series) are |
| 46 | * also supported by this driver. |
| 47 | * |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 48 | * This driver has been tested on a Fujitsu Lifebook S6410, S7020 and |
| 49 | * P8010. It should work on most P-series and S-series Lifebooks, but |
| 50 | * YMMV. |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 51 | * |
| 52 | * The module parameter use_alt_lcd_levels switches between different ACPI |
| 53 | * brightness controls which are used by different Fujitsu laptops. In most |
| 54 | * cases the correct method is automatically detected. "use_alt_lcd_levels=1" |
| 55 | * is applicable for a Fujitsu Lifebook S6410 if autodetection fails. |
| 56 | * |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 57 | */ |
| 58 | |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 59 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 60 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 61 | #include <linux/module.h> |
| 62 | #include <linux/kernel.h> |
| 63 | #include <linux/init.h> |
| 64 | #include <linux/acpi.h> |
| 65 | #include <linux/dmi.h> |
| 66 | #include <linux/backlight.h> |
Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 67 | #include <linux/fb.h> |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 68 | #include <linux/input.h> |
| 69 | #include <linux/kfifo.h> |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 70 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 71 | #include <linux/slab.h> |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 72 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 73 | #include <linux/leds.h> |
| 74 | #endif |
Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 75 | #include <acpi/video.h> |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 76 | |
Jonathan Woithe | 84a6ce2 | 2009-07-31 18:16:59 +0930 | [diff] [blame] | 77 | #define FUJITSU_DRIVER_VERSION "0.6.0" |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 78 | |
| 79 | #define FUJITSU_LCD_N_LEVELS 8 |
| 80 | |
| 81 | #define ACPI_FUJITSU_CLASS "fujitsu" |
| 82 | #define ACPI_FUJITSU_HID "FUJ02B1" |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 83 | #define ACPI_FUJITSU_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver" |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 84 | #define ACPI_FUJITSU_DEVICE_NAME "Fujitsu FUJ02B1" |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 85 | #define ACPI_FUJITSU_HOTKEY_HID "FUJ02E3" |
| 86 | #define ACPI_FUJITSU_HOTKEY_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver" |
| 87 | #define ACPI_FUJITSU_HOTKEY_DEVICE_NAME "Fujitsu FUJ02E3" |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 88 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 89 | #define ACPI_FUJITSU_NOTIFY_CODE1 0x80 |
| 90 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 91 | /* FUNC interface - command values */ |
| 92 | #define FUNC_RFKILL 0x1000 |
| 93 | #define FUNC_LEDS 0x1001 |
| 94 | #define FUNC_BUTTONS 0x1002 |
| 95 | #define FUNC_BACKLIGHT 0x1004 |
| 96 | |
| 97 | /* FUNC interface - responses */ |
| 98 | #define UNSUPPORTED_CMD 0x80000000 |
| 99 | |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 100 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 101 | /* FUNC interface - LED control */ |
| 102 | #define FUNC_LED_OFF 0x1 |
| 103 | #define FUNC_LED_ON 0x30001 |
| 104 | #define KEYBOARD_LAMPS 0x100 |
| 105 | #define LOGOLAMP_POWERON 0x2000 |
| 106 | #define LOGOLAMP_ALWAYS 0x4000 |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 107 | #define RADIO_LED_ON 0x20 |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 108 | #define ECO_LED 0x10000 |
| 109 | #define ECO_LED_ON 0x80000 |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 110 | #endif |
| 111 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 112 | /* Hotkey details */ |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 113 | #define KEY1_CODE 0x410 /* codes for the keys in the GIRB register */ |
| 114 | #define KEY2_CODE 0x411 |
| 115 | #define KEY3_CODE 0x412 |
| 116 | #define KEY4_CODE 0x413 |
Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 117 | #define KEY5_CODE 0x420 |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 118 | |
| 119 | #define MAX_HOTKEY_RINGBUFFER_SIZE 100 |
| 120 | #define RINGBUFFERSIZE 40 |
| 121 | |
| 122 | /* Debugging */ |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 123 | #define FUJLAPTOP_DBG_ERROR 0x0001 |
| 124 | #define FUJLAPTOP_DBG_WARN 0x0002 |
| 125 | #define FUJLAPTOP_DBG_INFO 0x0004 |
| 126 | #define FUJLAPTOP_DBG_TRACE 0x0008 |
| 127 | |
Jean Delvare | c4960cf | 2014-06-16 11:55:13 +0200 | [diff] [blame] | 128 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 129 | #define vdbg_printk(a_dbg_level, format, arg...) \ |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 130 | do { if (dbg_level & a_dbg_level) \ |
Michał Kępień | 98020a4 | 2016-06-23 12:02:47 +0200 | [diff] [blame] | 131 | printk(KERN_DEBUG pr_fmt("%s: " format), __func__, ## arg); \ |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 132 | } while (0) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 133 | #else |
Jean Delvare | c4960cf | 2014-06-16 11:55:13 +0200 | [diff] [blame] | 134 | #define vdbg_printk(a_dbg_level, format, arg...) \ |
| 135 | do { } while (0) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 136 | #endif |
| 137 | |
| 138 | /* Device controlling the backlight and associated keys */ |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 139 | struct fujitsu_t { |
| 140 | acpi_handle acpi_handle; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 141 | struct acpi_device *dev; |
| 142 | struct input_dev *input; |
| 143 | char phys[32]; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 144 | struct backlight_device *bl_device; |
| 145 | struct platform_device *pf_device; |
Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 146 | int keycode1, keycode2, keycode3, keycode4, keycode5; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 147 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 148 | unsigned int max_brightness; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 149 | unsigned int brightness_changed; |
| 150 | unsigned int brightness_level; |
| 151 | }; |
| 152 | |
| 153 | static struct fujitsu_t *fujitsu; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 154 | static int use_alt_lcd_levels = -1; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 155 | static int disable_brightness_adjust = -1; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 156 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 157 | /* Device used to access other hotkeys on the laptop */ |
| 158 | struct fujitsu_hotkey_t { |
| 159 | acpi_handle acpi_handle; |
| 160 | struct acpi_device *dev; |
| 161 | struct input_dev *input; |
| 162 | char phys[32]; |
| 163 | struct platform_device *pf_device; |
Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 164 | struct kfifo fifo; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 165 | spinlock_t fifo_lock; |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 166 | int rfkill_supported; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 167 | int rfkill_state; |
| 168 | int logolamp_registered; |
| 169 | int kblamps_registered; |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 170 | int radio_led_registered; |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 171 | int eco_led_registered; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | static struct fujitsu_hotkey_t *fujitsu_hotkey; |
| 175 | |
Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 176 | static void acpi_fujitsu_hotkey_notify(struct acpi_device *device, u32 event); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 177 | |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 178 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 179 | static enum led_brightness logolamp_get(struct led_classdev *cdev); |
| 180 | static void logolamp_set(struct led_classdev *cdev, |
| 181 | enum led_brightness brightness); |
| 182 | |
Axel Lin | 67af711 | 2010-07-20 15:19:45 -0700 | [diff] [blame] | 183 | static struct led_classdev logolamp_led = { |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 184 | .name = "fujitsu::logolamp", |
| 185 | .brightness_get = logolamp_get, |
| 186 | .brightness_set = logolamp_set |
| 187 | }; |
| 188 | |
| 189 | static enum led_brightness kblamps_get(struct led_classdev *cdev); |
| 190 | static void kblamps_set(struct led_classdev *cdev, |
| 191 | enum led_brightness brightness); |
| 192 | |
Axel Lin | 67af711 | 2010-07-20 15:19:45 -0700 | [diff] [blame] | 193 | static struct led_classdev kblamps_led = { |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 194 | .name = "fujitsu::kblamps", |
| 195 | .brightness_get = kblamps_get, |
| 196 | .brightness_set = kblamps_set |
| 197 | }; |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 198 | |
| 199 | static enum led_brightness radio_led_get(struct led_classdev *cdev); |
| 200 | static void radio_led_set(struct led_classdev *cdev, |
| 201 | enum led_brightness brightness); |
| 202 | |
| 203 | static struct led_classdev radio_led = { |
| 204 | .name = "fujitsu::radio_led", |
| 205 | .brightness_get = radio_led_get, |
| 206 | .brightness_set = radio_led_set |
| 207 | }; |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 208 | |
| 209 | static enum led_brightness eco_led_get(struct led_classdev *cdev); |
| 210 | static void eco_led_set(struct led_classdev *cdev, |
| 211 | enum led_brightness brightness); |
| 212 | |
| 213 | static struct led_classdev eco_led = { |
| 214 | .name = "fujitsu::eco_led", |
| 215 | .max_brightness = 1, |
| 216 | .brightness_get = eco_led_get, |
| 217 | .brightness_set = eco_led_set |
| 218 | }; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 219 | #endif |
| 220 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 221 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 222 | static u32 dbg_level = 0x03; |
| 223 | #endif |
| 224 | |
Bjorn Helgaas | 700b672 | 2009-04-07 15:37:16 +0000 | [diff] [blame] | 225 | static void acpi_fujitsu_notify(struct acpi_device *device, u32 event); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 226 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 227 | /* Fujitsu ACPI interface function */ |
| 228 | |
| 229 | static int call_fext_func(int cmd, int arg0, int arg1, int arg2) |
| 230 | { |
| 231 | acpi_status status = AE_OK; |
| 232 | union acpi_object params[4] = { |
| 233 | { .type = ACPI_TYPE_INTEGER }, |
| 234 | { .type = ACPI_TYPE_INTEGER }, |
| 235 | { .type = ACPI_TYPE_INTEGER }, |
| 236 | { .type = ACPI_TYPE_INTEGER } |
| 237 | }; |
| 238 | struct acpi_object_list arg_list = { 4, ¶ms[0] }; |
Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 239 | unsigned long long value; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 240 | acpi_handle handle = NULL; |
| 241 | |
| 242 | status = acpi_get_handle(fujitsu_hotkey->acpi_handle, "FUNC", &handle); |
| 243 | if (ACPI_FAILURE(status)) { |
| 244 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 245 | "FUNC interface is not present\n"); |
| 246 | return -ENODEV; |
| 247 | } |
| 248 | |
| 249 | params[0].integer.value = cmd; |
| 250 | params[1].integer.value = arg0; |
| 251 | params[2].integer.value = arg1; |
| 252 | params[3].integer.value = arg2; |
| 253 | |
Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 254 | status = acpi_evaluate_integer(handle, NULL, &arg_list, &value); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 255 | if (ACPI_FAILURE(status)) { |
| 256 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 257 | "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n", |
| 258 | cmd, arg0, arg1, arg2); |
| 259 | return -ENODEV; |
| 260 | } |
| 261 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 262 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 263 | "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n", |
Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 264 | cmd, arg0, arg1, arg2, (int)value); |
| 265 | return value; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 268 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 269 | /* LED class callbacks */ |
| 270 | |
| 271 | static void logolamp_set(struct led_classdev *cdev, |
| 272 | enum led_brightness brightness) |
| 273 | { |
| 274 | if (brightness >= LED_FULL) { |
| 275 | call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_ON); |
| 276 | call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, FUNC_LED_ON); |
| 277 | } else if (brightness >= LED_HALF) { |
| 278 | call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_ON); |
| 279 | call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, FUNC_LED_OFF); |
| 280 | } else { |
| 281 | call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_OFF); |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | static void kblamps_set(struct led_classdev *cdev, |
| 286 | enum led_brightness brightness) |
| 287 | { |
| 288 | if (brightness >= LED_FULL) |
| 289 | call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_ON); |
| 290 | else |
| 291 | call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_OFF); |
| 292 | } |
| 293 | |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 294 | static void radio_led_set(struct led_classdev *cdev, |
| 295 | enum led_brightness brightness) |
| 296 | { |
| 297 | if (brightness >= LED_FULL) |
| 298 | call_fext_func(FUNC_RFKILL, 0x5, RADIO_LED_ON, RADIO_LED_ON); |
| 299 | else |
| 300 | call_fext_func(FUNC_RFKILL, 0x5, RADIO_LED_ON, 0x0); |
| 301 | } |
| 302 | |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 303 | static void eco_led_set(struct led_classdev *cdev, |
| 304 | enum led_brightness brightness) |
| 305 | { |
| 306 | int curr; |
| 307 | |
| 308 | curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0); |
| 309 | if (brightness) |
| 310 | call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr | ECO_LED_ON); |
| 311 | else |
| 312 | call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr & ~ECO_LED_ON); |
| 313 | } |
| 314 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 315 | static enum led_brightness logolamp_get(struct led_classdev *cdev) |
| 316 | { |
| 317 | enum led_brightness brightness = LED_OFF; |
| 318 | int poweron, always; |
| 319 | |
| 320 | poweron = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0); |
| 321 | if (poweron == FUNC_LED_ON) { |
| 322 | brightness = LED_HALF; |
| 323 | always = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0); |
| 324 | if (always == FUNC_LED_ON) |
| 325 | brightness = LED_FULL; |
| 326 | } |
| 327 | return brightness; |
| 328 | } |
| 329 | |
| 330 | static enum led_brightness kblamps_get(struct led_classdev *cdev) |
| 331 | { |
| 332 | enum led_brightness brightness = LED_OFF; |
| 333 | |
| 334 | if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON) |
| 335 | brightness = LED_FULL; |
| 336 | |
| 337 | return brightness; |
| 338 | } |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 339 | |
| 340 | static enum led_brightness radio_led_get(struct led_classdev *cdev) |
| 341 | { |
| 342 | enum led_brightness brightness = LED_OFF; |
| 343 | |
| 344 | if (call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0) & RADIO_LED_ON) |
| 345 | brightness = LED_FULL; |
| 346 | |
| 347 | return brightness; |
| 348 | } |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 349 | |
| 350 | static enum led_brightness eco_led_get(struct led_classdev *cdev) |
| 351 | { |
| 352 | enum led_brightness brightness = LED_OFF; |
| 353 | |
| 354 | if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON) |
| 355 | brightness = cdev->max_brightness; |
| 356 | |
| 357 | return brightness; |
| 358 | } |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 359 | #endif |
| 360 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 361 | /* Hardware access for LCD brightness control */ |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 362 | |
| 363 | static int set_lcd_level(int level) |
| 364 | { |
| 365 | acpi_status status = AE_OK; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 366 | acpi_handle handle = NULL; |
| 367 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 368 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBLL [%d]\n", |
| 369 | level); |
| 370 | |
| 371 | if (level < 0 || level >= fujitsu->max_brightness) |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 372 | return -EINVAL; |
| 373 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 374 | status = acpi_get_handle(fujitsu->acpi_handle, "SBLL", &handle); |
| 375 | if (ACPI_FAILURE(status)) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 376 | vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBLL not present\n"); |
| 377 | return -ENODEV; |
| 378 | } |
| 379 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 380 | |
Zhang Rui | 6c7fe47a | 2013-09-03 08:31:52 +0800 | [diff] [blame] | 381 | status = acpi_execute_simple_method(handle, NULL, level); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 382 | if (ACPI_FAILURE(status)) |
| 383 | return -ENODEV; |
| 384 | |
| 385 | return 0; |
| 386 | } |
| 387 | |
| 388 | static int set_lcd_level_alt(int level) |
| 389 | { |
| 390 | acpi_status status = AE_OK; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 391 | acpi_handle handle = NULL; |
| 392 | |
| 393 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBL2 [%d]\n", |
| 394 | level); |
| 395 | |
| 396 | if (level < 0 || level >= fujitsu->max_brightness) |
| 397 | return -EINVAL; |
| 398 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 399 | status = acpi_get_handle(fujitsu->acpi_handle, "SBL2", &handle); |
| 400 | if (ACPI_FAILURE(status)) { |
| 401 | vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBL2 not present\n"); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 402 | return -ENODEV; |
| 403 | } |
| 404 | |
Zhang Rui | 6c7fe47a | 2013-09-03 08:31:52 +0800 | [diff] [blame] | 405 | status = acpi_execute_simple_method(handle, NULL, level); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 406 | if (ACPI_FAILURE(status)) |
| 407 | return -ENODEV; |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | static int get_lcd_level(void) |
| 413 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 414 | unsigned long long state = 0; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 415 | acpi_status status = AE_OK; |
| 416 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 417 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "get lcd level via GBLL\n"); |
| 418 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 419 | status = |
| 420 | acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); |
Jonathan Woithe | 3b1c37c | 2009-12-23 09:19:42 +1030 | [diff] [blame] | 421 | if (ACPI_FAILURE(status)) |
| 422 | return 0; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 423 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 424 | fujitsu->brightness_level = state & 0x0fffffff; |
| 425 | |
| 426 | if (state & 0x80000000) |
| 427 | fujitsu->brightness_changed = 1; |
| 428 | else |
| 429 | fujitsu->brightness_changed = 0; |
| 430 | |
| 431 | return fujitsu->brightness_level; |
| 432 | } |
| 433 | |
| 434 | static int get_max_brightness(void) |
| 435 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 436 | unsigned long long state = 0; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 437 | acpi_status status = AE_OK; |
| 438 | |
| 439 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "get max lcd level via RBLL\n"); |
| 440 | |
| 441 | status = |
| 442 | acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); |
Jonathan Woithe | 3b1c37c | 2009-12-23 09:19:42 +1030 | [diff] [blame] | 443 | if (ACPI_FAILURE(status)) |
| 444 | return -1; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 445 | |
| 446 | fujitsu->max_brightness = state; |
| 447 | |
| 448 | return fujitsu->max_brightness; |
| 449 | } |
| 450 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 451 | /* Backlight device stuff */ |
| 452 | |
| 453 | static int bl_get_brightness(struct backlight_device *b) |
| 454 | { |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 455 | return get_lcd_level(); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | static int bl_update_status(struct backlight_device *b) |
| 459 | { |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 460 | int ret; |
Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 461 | if (b->props.power == FB_BLANK_POWERDOWN) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 462 | ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 463 | else |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 464 | ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0); |
| 465 | if (ret != 0) |
| 466 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 467 | "Unable to adjust backlight power, error code %i\n", |
| 468 | ret); |
| 469 | |
| 470 | if (use_alt_lcd_levels) |
| 471 | ret = set_lcd_level_alt(b->props.brightness); |
| 472 | else |
| 473 | ret = set_lcd_level(b->props.brightness); |
| 474 | if (ret != 0) |
| 475 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 476 | "Unable to adjust LCD brightness, error code %i\n", |
| 477 | ret); |
| 478 | return ret; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 479 | } |
| 480 | |
Lionel Debroux | acc2472 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 481 | static const struct backlight_ops fujitsubl_ops = { |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 482 | .get_brightness = bl_get_brightness, |
| 483 | .update_status = bl_update_status, |
| 484 | }; |
| 485 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 486 | /* Platform LCD brightness device */ |
| 487 | |
| 488 | static ssize_t |
| 489 | show_max_brightness(struct device *dev, |
| 490 | struct device_attribute *attr, char *buf) |
| 491 | { |
| 492 | |
| 493 | int ret; |
| 494 | |
| 495 | ret = get_max_brightness(); |
| 496 | if (ret < 0) |
| 497 | return ret; |
| 498 | |
| 499 | return sprintf(buf, "%i\n", ret); |
| 500 | } |
| 501 | |
| 502 | static ssize_t |
| 503 | show_brightness_changed(struct device *dev, |
| 504 | struct device_attribute *attr, char *buf) |
| 505 | { |
| 506 | |
| 507 | int ret; |
| 508 | |
| 509 | ret = fujitsu->brightness_changed; |
| 510 | if (ret < 0) |
| 511 | return ret; |
| 512 | |
| 513 | return sprintf(buf, "%i\n", ret); |
| 514 | } |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 515 | |
| 516 | static ssize_t show_lcd_level(struct device *dev, |
| 517 | struct device_attribute *attr, char *buf) |
| 518 | { |
| 519 | |
| 520 | int ret; |
| 521 | |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 522 | ret = get_lcd_level(); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 523 | if (ret < 0) |
| 524 | return ret; |
| 525 | |
| 526 | return sprintf(buf, "%i\n", ret); |
| 527 | } |
| 528 | |
| 529 | static ssize_t store_lcd_level(struct device *dev, |
| 530 | struct device_attribute *attr, const char *buf, |
| 531 | size_t count) |
| 532 | { |
| 533 | |
| 534 | int level, ret; |
| 535 | |
| 536 | if (sscanf(buf, "%i", &level) != 1 |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 537 | || (level < 0 || level >= fujitsu->max_brightness)) |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 538 | return -EINVAL; |
| 539 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 540 | if (use_alt_lcd_levels) |
| 541 | ret = set_lcd_level_alt(level); |
| 542 | else |
| 543 | ret = set_lcd_level(level); |
| 544 | if (ret < 0) |
| 545 | return ret; |
| 546 | |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 547 | ret = get_lcd_level(); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 548 | if (ret < 0) |
| 549 | return ret; |
| 550 | |
| 551 | return count; |
| 552 | } |
| 553 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 554 | static ssize_t |
| 555 | ignore_store(struct device *dev, |
| 556 | struct device_attribute *attr, const char *buf, size_t count) |
| 557 | { |
| 558 | return count; |
| 559 | } |
| 560 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 561 | static ssize_t |
| 562 | show_lid_state(struct device *dev, |
| 563 | struct device_attribute *attr, char *buf) |
| 564 | { |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 565 | if (!(fujitsu_hotkey->rfkill_supported & 0x100)) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 566 | return sprintf(buf, "unknown\n"); |
| 567 | if (fujitsu_hotkey->rfkill_state & 0x100) |
| 568 | return sprintf(buf, "open\n"); |
| 569 | else |
| 570 | return sprintf(buf, "closed\n"); |
| 571 | } |
| 572 | |
| 573 | static ssize_t |
| 574 | show_dock_state(struct device *dev, |
| 575 | struct device_attribute *attr, char *buf) |
| 576 | { |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 577 | if (!(fujitsu_hotkey->rfkill_supported & 0x200)) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 578 | return sprintf(buf, "unknown\n"); |
| 579 | if (fujitsu_hotkey->rfkill_state & 0x200) |
| 580 | return sprintf(buf, "docked\n"); |
| 581 | else |
| 582 | return sprintf(buf, "undocked\n"); |
| 583 | } |
| 584 | |
| 585 | static ssize_t |
| 586 | show_radios_state(struct device *dev, |
| 587 | struct device_attribute *attr, char *buf) |
| 588 | { |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 589 | if (!(fujitsu_hotkey->rfkill_supported & 0x20)) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 590 | return sprintf(buf, "unknown\n"); |
| 591 | if (fujitsu_hotkey->rfkill_state & 0x20) |
| 592 | return sprintf(buf, "on\n"); |
| 593 | else |
| 594 | return sprintf(buf, "killed\n"); |
| 595 | } |
| 596 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 597 | static DEVICE_ATTR(max_brightness, 0444, show_max_brightness, ignore_store); |
| 598 | static DEVICE_ATTR(brightness_changed, 0444, show_brightness_changed, |
| 599 | ignore_store); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 600 | static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 601 | static DEVICE_ATTR(lid, 0444, show_lid_state, ignore_store); |
| 602 | static DEVICE_ATTR(dock, 0444, show_dock_state, ignore_store); |
| 603 | static DEVICE_ATTR(radios, 0444, show_radios_state, ignore_store); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 604 | |
| 605 | static struct attribute *fujitsupf_attributes[] = { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 606 | &dev_attr_brightness_changed.attr, |
| 607 | &dev_attr_max_brightness.attr, |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 608 | &dev_attr_lcd_level.attr, |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 609 | &dev_attr_lid.attr, |
| 610 | &dev_attr_dock.attr, |
| 611 | &dev_attr_radios.attr, |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 612 | NULL |
| 613 | }; |
| 614 | |
| 615 | static struct attribute_group fujitsupf_attribute_group = { |
| 616 | .attrs = fujitsupf_attributes |
| 617 | }; |
| 618 | |
| 619 | static struct platform_driver fujitsupf_driver = { |
| 620 | .driver = { |
| 621 | .name = "fujitsu-laptop", |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 622 | } |
| 623 | }; |
| 624 | |
Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 625 | static void __init dmi_check_cb_common(const struct dmi_system_id *id) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 626 | { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 627 | pr_info("Identified laptop model '%s'\n", id->ident); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 628 | if (use_alt_lcd_levels == -1) { |
Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 629 | if (acpi_has_method(NULL, |
| 630 | "\\_SB.PCI0.LPCB.FJEX.SBL2")) |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 631 | use_alt_lcd_levels = 1; |
| 632 | else |
| 633 | use_alt_lcd_levels = 0; |
| 634 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "auto-detected usealt as " |
| 635 | "%i\n", use_alt_lcd_levels); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 636 | } |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 637 | } |
| 638 | |
Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 639 | static int __init dmi_check_cb_s6410(const struct dmi_system_id *id) |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 640 | { |
| 641 | dmi_check_cb_common(id); |
| 642 | fujitsu->keycode1 = KEY_SCREENLOCK; /* "Lock" */ |
| 643 | fujitsu->keycode2 = KEY_HELP; /* "Mobility Center" */ |
Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 644 | return 1; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 645 | } |
| 646 | |
Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 647 | static int __init dmi_check_cb_s6420(const struct dmi_system_id *id) |
Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 648 | { |
| 649 | dmi_check_cb_common(id); |
| 650 | fujitsu->keycode1 = KEY_SCREENLOCK; /* "Lock" */ |
| 651 | fujitsu->keycode2 = KEY_HELP; /* "Mobility Center" */ |
Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 652 | return 1; |
Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 655 | static int __init dmi_check_cb_p8010(const struct dmi_system_id *id) |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 656 | { |
| 657 | dmi_check_cb_common(id); |
| 658 | fujitsu->keycode1 = KEY_HELP; /* "Support" */ |
| 659 | fujitsu->keycode3 = KEY_SWITCHVIDEOMODE; /* "Presentation" */ |
| 660 | fujitsu->keycode4 = KEY_WWW; /* "Internet" */ |
Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 661 | return 1; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 662 | } |
| 663 | |
Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 664 | static const struct dmi_system_id fujitsu_dmi_table[] __initconst = { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 665 | { |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 666 | .ident = "Fujitsu Siemens S6410", |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 667 | .matches = { |
| 668 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 669 | DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"), |
| 670 | }, |
| 671 | .callback = dmi_check_cb_s6410}, |
Jonathan Woithe | d8196a9 | 2008-08-29 11:06:21 +0930 | [diff] [blame] | 672 | { |
Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 673 | .ident = "Fujitsu Siemens S6420", |
| 674 | .matches = { |
| 675 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 676 | DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"), |
| 677 | }, |
| 678 | .callback = dmi_check_cb_s6420}, |
| 679 | { |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 680 | .ident = "Fujitsu LifeBook P8010", |
Jonathan Woithe | d8196a9 | 2008-08-29 11:06:21 +0930 | [diff] [blame] | 681 | .matches = { |
| 682 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), |
| 683 | DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"), |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 684 | }, |
| 685 | .callback = dmi_check_cb_p8010}, |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 686 | {} |
| 687 | }; |
| 688 | |
| 689 | /* ACPI device for LCD brightness control */ |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 690 | |
Adrian Bunk | b6f03ae | 2007-10-24 18:23:16 +0200 | [diff] [blame] | 691 | static int acpi_fujitsu_add(struct acpi_device *device) |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 692 | { |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 693 | int state = 0; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 694 | struct input_dev *input; |
| 695 | int error; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 696 | |
| 697 | if (!device) |
| 698 | return -EINVAL; |
| 699 | |
| 700 | fujitsu->acpi_handle = device->handle; |
| 701 | sprintf(acpi_device_name(device), "%s", ACPI_FUJITSU_DEVICE_NAME); |
| 702 | sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 703 | device->driver_data = fujitsu; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 704 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 705 | fujitsu->input = input = input_allocate_device(); |
| 706 | if (!input) { |
| 707 | error = -ENOMEM; |
Bjorn Helgaas | 700b672 | 2009-04-07 15:37:16 +0000 | [diff] [blame] | 708 | goto err_stop; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | snprintf(fujitsu->phys, sizeof(fujitsu->phys), |
| 712 | "%s/video/input0", acpi_device_hid(device)); |
| 713 | |
| 714 | input->name = acpi_device_name(device); |
| 715 | input->phys = fujitsu->phys; |
| 716 | input->id.bustype = BUS_HOST; |
| 717 | input->id.product = 0x06; |
| 718 | input->dev.parent = &device->dev; |
| 719 | input->evbit[0] = BIT(EV_KEY); |
| 720 | set_bit(KEY_BRIGHTNESSUP, input->keybit); |
| 721 | set_bit(KEY_BRIGHTNESSDOWN, input->keybit); |
| 722 | set_bit(KEY_UNKNOWN, input->keybit); |
| 723 | |
| 724 | error = input_register_device(input); |
| 725 | if (error) |
| 726 | goto err_free_input_dev; |
| 727 | |
Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 728 | error = acpi_bus_update_power(fujitsu->acpi_handle, &state); |
| 729 | if (error) { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 730 | pr_err("Error reading power state\n"); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 731 | goto err_unregister_input_dev; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 732 | } |
| 733 | |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 734 | pr_info("ACPI: %s [%s] (%s)\n", |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 735 | acpi_device_name(device), acpi_device_bid(device), |
| 736 | !device->power.state ? "on" : "off"); |
| 737 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 738 | fujitsu->dev = device; |
| 739 | |
Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 740 | if (acpi_has_method(device->handle, METHOD_NAME__INI)) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 741 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n"); |
| 742 | if (ACPI_FAILURE |
| 743 | (acpi_evaluate_object |
| 744 | (device->handle, METHOD_NAME__INI, NULL, NULL))) |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 745 | pr_err("_INI Method failed\n"); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | /* do config (detect defaults) */ |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 749 | use_alt_lcd_levels = use_alt_lcd_levels == 1 ? 1 : 0; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 750 | disable_brightness_adjust = disable_brightness_adjust == 1 ? 1 : 0; |
| 751 | vdbg_printk(FUJLAPTOP_DBG_INFO, |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 752 | "config: [alt interface: %d], [adjust disable: %d]\n", |
| 753 | use_alt_lcd_levels, disable_brightness_adjust); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 754 | |
| 755 | if (get_max_brightness() <= 0) |
| 756 | fujitsu->max_brightness = FUJITSU_LCD_N_LEVELS; |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 757 | get_lcd_level(); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 758 | |
Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 759 | return 0; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 760 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 761 | err_unregister_input_dev: |
| 762 | input_unregister_device(input); |
Axel Lin | 8e4e2ef | 2010-07-20 15:19:34 -0700 | [diff] [blame] | 763 | input = NULL; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 764 | err_free_input_dev: |
| 765 | input_free_device(input); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 766 | err_stop: |
Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 767 | return error; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 768 | } |
| 769 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 770 | static int acpi_fujitsu_remove(struct acpi_device *device) |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 771 | { |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 772 | struct fujitsu_t *fujitsu = acpi_driver_data(device); |
| 773 | struct input_dev *input = fujitsu->input; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 774 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 775 | input_unregister_device(input); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 776 | |
Al Viro | 5cf83b9 | 2008-03-29 03:07:48 +0000 | [diff] [blame] | 777 | fujitsu->acpi_handle = NULL; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 778 | |
| 779 | return 0; |
| 780 | } |
| 781 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 782 | /* Brightness notify */ |
| 783 | |
Bjorn Helgaas | 700b672 | 2009-04-07 15:37:16 +0000 | [diff] [blame] | 784 | static void acpi_fujitsu_notify(struct acpi_device *device, u32 event) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 785 | { |
| 786 | struct input_dev *input; |
| 787 | int keycode; |
| 788 | int oldb, newb; |
| 789 | |
| 790 | input = fujitsu->input; |
| 791 | |
| 792 | switch (event) { |
| 793 | case ACPI_FUJITSU_NOTIFY_CODE1: |
| 794 | keycode = 0; |
| 795 | oldb = fujitsu->brightness_level; |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 796 | get_lcd_level(); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 797 | newb = fujitsu->brightness_level; |
| 798 | |
| 799 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 800 | "brightness button event [%i -> %i (%i)]\n", |
| 801 | oldb, newb, fujitsu->brightness_changed); |
| 802 | |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 803 | if (oldb < newb) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 804 | if (disable_brightness_adjust != 1) { |
| 805 | if (use_alt_lcd_levels) |
| 806 | set_lcd_level_alt(newb); |
| 807 | else |
| 808 | set_lcd_level(newb); |
| 809 | } |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 810 | keycode = KEY_BRIGHTNESSUP; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 811 | } else if (oldb > newb) { |
| 812 | if (disable_brightness_adjust != 1) { |
| 813 | if (use_alt_lcd_levels) |
| 814 | set_lcd_level_alt(newb); |
| 815 | else |
| 816 | set_lcd_level(newb); |
| 817 | } |
Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 818 | keycode = KEY_BRIGHTNESSDOWN; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 819 | } |
| 820 | break; |
| 821 | default: |
| 822 | keycode = KEY_UNKNOWN; |
| 823 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 824 | "unsupported event [0x%x]\n", event); |
| 825 | break; |
| 826 | } |
| 827 | |
| 828 | if (keycode != 0) { |
| 829 | input_report_key(input, keycode, 1); |
| 830 | input_sync(input); |
| 831 | input_report_key(input, keycode, 0); |
| 832 | input_sync(input); |
| 833 | } |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | /* ACPI device for hotkey handling */ |
| 837 | |
| 838 | static int acpi_fujitsu_hotkey_add(struct acpi_device *device) |
| 839 | { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 840 | int result = 0; |
| 841 | int state = 0; |
| 842 | struct input_dev *input; |
| 843 | int error; |
| 844 | int i; |
| 845 | |
| 846 | if (!device) |
| 847 | return -EINVAL; |
| 848 | |
| 849 | fujitsu_hotkey->acpi_handle = device->handle; |
| 850 | sprintf(acpi_device_name(device), "%s", |
| 851 | ACPI_FUJITSU_HOTKEY_DEVICE_NAME); |
| 852 | sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 853 | device->driver_data = fujitsu_hotkey; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 854 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 855 | /* kfifo */ |
| 856 | spin_lock_init(&fujitsu_hotkey->fifo_lock); |
Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 857 | error = kfifo_alloc(&fujitsu_hotkey->fifo, RINGBUFFERSIZE * sizeof(int), |
Stefani Seibold | c1e13f2 | 2009-12-21 14:37:27 -0800 | [diff] [blame] | 858 | GFP_KERNEL); |
Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 859 | if (error) { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 860 | pr_err("kfifo_alloc failed\n"); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 861 | goto err_stop; |
| 862 | } |
| 863 | |
| 864 | fujitsu_hotkey->input = input = input_allocate_device(); |
| 865 | if (!input) { |
| 866 | error = -ENOMEM; |
Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 867 | goto err_free_fifo; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | snprintf(fujitsu_hotkey->phys, sizeof(fujitsu_hotkey->phys), |
| 871 | "%s/video/input0", acpi_device_hid(device)); |
| 872 | |
| 873 | input->name = acpi_device_name(device); |
| 874 | input->phys = fujitsu_hotkey->phys; |
| 875 | input->id.bustype = BUS_HOST; |
| 876 | input->id.product = 0x06; |
| 877 | input->dev.parent = &device->dev; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 878 | |
| 879 | set_bit(EV_KEY, input->evbit); |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 880 | set_bit(fujitsu->keycode1, input->keybit); |
| 881 | set_bit(fujitsu->keycode2, input->keybit); |
| 882 | set_bit(fujitsu->keycode3, input->keybit); |
| 883 | set_bit(fujitsu->keycode4, input->keybit); |
Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 884 | set_bit(fujitsu->keycode5, input->keybit); |
Michał Kępień | 1879e69 | 2016-06-28 09:25:50 +0200 | [diff] [blame] | 885 | set_bit(KEY_TOUCHPAD_TOGGLE, input->keybit); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 886 | set_bit(KEY_UNKNOWN, input->keybit); |
| 887 | |
| 888 | error = input_register_device(input); |
| 889 | if (error) |
| 890 | goto err_free_input_dev; |
| 891 | |
Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 892 | error = acpi_bus_update_power(fujitsu_hotkey->acpi_handle, &state); |
| 893 | if (error) { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 894 | pr_err("Error reading power state\n"); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 895 | goto err_unregister_input_dev; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 896 | } |
| 897 | |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 898 | pr_info("ACPI: %s [%s] (%s)\n", |
| 899 | acpi_device_name(device), acpi_device_bid(device), |
| 900 | !device->power.state ? "on" : "off"); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 901 | |
| 902 | fujitsu_hotkey->dev = device; |
| 903 | |
Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 904 | if (acpi_has_method(device->handle, METHOD_NAME__INI)) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 905 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n"); |
| 906 | if (ACPI_FAILURE |
| 907 | (acpi_evaluate_object |
| 908 | (device->handle, METHOD_NAME__INI, NULL, NULL))) |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 909 | pr_err("_INI Method failed\n"); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 910 | } |
| 911 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 912 | i = 0; |
| 913 | while (call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0) != 0 |
| 914 | && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) |
| 915 | ; /* No action, result is discarded */ |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 916 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Discarded %i ringbuffer entries\n", i); |
| 917 | |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 918 | fujitsu_hotkey->rfkill_supported = |
| 919 | call_fext_func(FUNC_RFKILL, 0x0, 0x0, 0x0); |
| 920 | |
| 921 | /* Make sure our bitmask of supported functions is cleared if the |
| 922 | RFKILL function block is not implemented, like on the S7020. */ |
| 923 | if (fujitsu_hotkey->rfkill_supported == UNSUPPORTED_CMD) |
| 924 | fujitsu_hotkey->rfkill_supported = 0; |
| 925 | |
| 926 | if (fujitsu_hotkey->rfkill_supported) |
| 927 | fujitsu_hotkey->rfkill_state = |
| 928 | call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 929 | |
| 930 | /* Suspect this is a keymap of the application panel, print it */ |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 931 | pr_info("BTNI: [0x%x]\n", call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0)); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 932 | |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 933 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 934 | if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) { |
| 935 | result = led_classdev_register(&fujitsu->pf_device->dev, |
| 936 | &logolamp_led); |
| 937 | if (result == 0) { |
| 938 | fujitsu_hotkey->logolamp_registered = 1; |
| 939 | } else { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 940 | pr_err("Could not register LED handler for logo lamp, error %i\n", |
| 941 | result); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 942 | } |
| 943 | } |
| 944 | |
| 945 | if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) && |
| 946 | (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) { |
| 947 | result = led_classdev_register(&fujitsu->pf_device->dev, |
| 948 | &kblamps_led); |
| 949 | if (result == 0) { |
| 950 | fujitsu_hotkey->kblamps_registered = 1; |
| 951 | } else { |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 952 | pr_err("Could not register LED handler for keyboard lamps, error %i\n", |
| 953 | result); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 954 | } |
| 955 | } |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 956 | |
| 957 | /* |
| 958 | * BTNI bit 24 seems to indicate the presence of a radio toggle |
| 959 | * button in place of a slide switch, and all such machines appear |
| 960 | * to also have an RF LED. Therefore use bit 24 as an indicator |
| 961 | * that an RF LED is present. |
| 962 | */ |
| 963 | if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) { |
| 964 | result = led_classdev_register(&fujitsu->pf_device->dev, |
| 965 | &radio_led); |
| 966 | if (result == 0) { |
| 967 | fujitsu_hotkey->radio_led_registered = 1; |
| 968 | } else { |
| 969 | pr_err("Could not register LED handler for radio LED, error %i\n", |
| 970 | result); |
| 971 | } |
| 972 | } |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 973 | |
| 974 | /* Support for eco led is not always signaled in bit corresponding |
| 975 | * to the bit used to control the led. According to the DSDT table, |
| 976 | * bit 14 seems to indicate presence of said led as well. |
| 977 | * Confirm by testing the status. |
| 978 | */ |
| 979 | if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) && |
| 980 | (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) { |
| 981 | result = led_classdev_register(&fujitsu->pf_device->dev, |
| 982 | &eco_led); |
| 983 | if (result == 0) { |
| 984 | fujitsu_hotkey->eco_led_registered = 1; |
| 985 | } else { |
| 986 | pr_err("Could not register LED handler for eco LED, error %i\n", |
| 987 | result); |
| 988 | } |
| 989 | } |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 990 | #endif |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 991 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 992 | return result; |
| 993 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 994 | err_unregister_input_dev: |
| 995 | input_unregister_device(input); |
Axel Lin | 8e4e2ef | 2010-07-20 15:19:34 -0700 | [diff] [blame] | 996 | input = NULL; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 997 | err_free_input_dev: |
| 998 | input_free_device(input); |
Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 999 | err_free_fifo: |
Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 1000 | kfifo_free(&fujitsu_hotkey->fifo); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1001 | err_stop: |
Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 1002 | return error; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1003 | } |
| 1004 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1005 | static int acpi_fujitsu_hotkey_remove(struct acpi_device *device) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1006 | { |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1007 | struct fujitsu_hotkey_t *fujitsu_hotkey = acpi_driver_data(device); |
| 1008 | struct input_dev *input = fujitsu_hotkey->input; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1009 | |
Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 1010 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1011 | if (fujitsu_hotkey->logolamp_registered) |
| 1012 | led_classdev_unregister(&logolamp_led); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1013 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1014 | if (fujitsu_hotkey->kblamps_registered) |
| 1015 | led_classdev_unregister(&kblamps_led); |
Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 1016 | |
| 1017 | if (fujitsu_hotkey->radio_led_registered) |
| 1018 | led_classdev_unregister(&radio_led); |
Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame^] | 1019 | |
| 1020 | if (fujitsu_hotkey->eco_led_registered) |
| 1021 | led_classdev_unregister(&eco_led); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1022 | #endif |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1023 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1024 | input_unregister_device(input); |
| 1025 | |
Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 1026 | kfifo_free(&fujitsu_hotkey->fifo); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1027 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1028 | fujitsu_hotkey->acpi_handle = NULL; |
| 1029 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1030 | return 0; |
| 1031 | } |
| 1032 | |
Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 1033 | static void acpi_fujitsu_hotkey_notify(struct acpi_device *device, u32 event) |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1034 | { |
| 1035 | struct input_dev *input; |
| 1036 | int keycode, keycode_r; |
| 1037 | unsigned int irb = 1; |
| 1038 | int i, status; |
| 1039 | |
| 1040 | input = fujitsu_hotkey->input; |
| 1041 | |
Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 1042 | if (fujitsu_hotkey->rfkill_supported) |
| 1043 | fujitsu_hotkey->rfkill_state = |
| 1044 | call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1045 | |
| 1046 | switch (event) { |
| 1047 | case ACPI_FUJITSU_NOTIFY_CODE1: |
| 1048 | i = 0; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1049 | while ((irb = |
| 1050 | call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0 |
| 1051 | && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1052 | switch (irb & 0x4ff) { |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1053 | case KEY1_CODE: |
| 1054 | keycode = fujitsu->keycode1; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1055 | break; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1056 | case KEY2_CODE: |
| 1057 | keycode = fujitsu->keycode2; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1058 | break; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1059 | case KEY3_CODE: |
| 1060 | keycode = fujitsu->keycode3; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1061 | break; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1062 | case KEY4_CODE: |
| 1063 | keycode = fujitsu->keycode4; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1064 | break; |
Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 1065 | case KEY5_CODE: |
| 1066 | keycode = fujitsu->keycode5; |
| 1067 | break; |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1068 | case 0: |
| 1069 | keycode = 0; |
| 1070 | break; |
| 1071 | default: |
| 1072 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1073 | "Unknown GIRB result [%x]\n", irb); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1074 | keycode = -1; |
| 1075 | break; |
| 1076 | } |
| 1077 | if (keycode > 0) { |
| 1078 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 1079 | "Push keycode into ringbuffer [%d]\n", |
| 1080 | keycode); |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 1081 | status = kfifo_in_locked(&fujitsu_hotkey->fifo, |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1082 | (unsigned char *)&keycode, |
Stefani Seibold | c1e13f2 | 2009-12-21 14:37:27 -0800 | [diff] [blame] | 1083 | sizeof(keycode), |
| 1084 | &fujitsu_hotkey->fifo_lock); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1085 | if (status != sizeof(keycode)) { |
| 1086 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1087 | "Could not push keycode [0x%x]\n", |
| 1088 | keycode); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1089 | } else { |
| 1090 | input_report_key(input, keycode, 1); |
| 1091 | input_sync(input); |
| 1092 | } |
| 1093 | } else if (keycode == 0) { |
| 1094 | while ((status = |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 1095 | kfifo_out_locked( |
Stefani Seibold | c1e13f2 | 2009-12-21 14:37:27 -0800 | [diff] [blame] | 1096 | &fujitsu_hotkey->fifo, |
| 1097 | (unsigned char *) &keycode_r, |
| 1098 | sizeof(keycode_r), |
| 1099 | &fujitsu_hotkey->fifo_lock)) |
| 1100 | == sizeof(keycode_r)) { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1101 | input_report_key(input, keycode_r, 0); |
| 1102 | input_sync(input); |
| 1103 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1104 | "Pop keycode from ringbuffer [%d]\n", |
| 1105 | keycode_r); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | } |
| 1109 | |
Michał Kępień | 1879e69 | 2016-06-28 09:25:50 +0200 | [diff] [blame] | 1110 | /* On some models (first seen on the Skylake-based Lifebook |
| 1111 | * E736/E746/E756), the touchpad toggle hotkey (Fn+F4) is |
| 1112 | * handled in software; its state is queried using FUNC_RFKILL |
| 1113 | */ |
| 1114 | if ((fujitsu_hotkey->rfkill_supported & BIT(26)) && |
| 1115 | (call_fext_func(FUNC_RFKILL, 0x1, 0x0, 0x0) & BIT(26))) { |
| 1116 | keycode = KEY_TOUCHPAD_TOGGLE; |
| 1117 | input_report_key(input, keycode, 1); |
| 1118 | input_sync(input); |
| 1119 | input_report_key(input, keycode, 0); |
| 1120 | input_sync(input); |
| 1121 | } |
| 1122 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1123 | break; |
| 1124 | default: |
| 1125 | keycode = KEY_UNKNOWN; |
| 1126 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 1127 | "Unsupported event [0x%x]\n", event); |
| 1128 | input_report_key(input, keycode, 1); |
| 1129 | input_sync(input); |
| 1130 | input_report_key(input, keycode, 0); |
| 1131 | input_sync(input); |
| 1132 | break; |
| 1133 | } |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | /* Initialization */ |
| 1137 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1138 | static const struct acpi_device_id fujitsu_device_ids[] = { |
| 1139 | {ACPI_FUJITSU_HID, 0}, |
| 1140 | {"", 0}, |
| 1141 | }; |
| 1142 | |
| 1143 | static struct acpi_driver acpi_fujitsu_driver = { |
| 1144 | .name = ACPI_FUJITSU_DRIVER_NAME, |
| 1145 | .class = ACPI_FUJITSU_CLASS, |
| 1146 | .ids = fujitsu_device_ids, |
| 1147 | .ops = { |
| 1148 | .add = acpi_fujitsu_add, |
| 1149 | .remove = acpi_fujitsu_remove, |
Bjorn Helgaas | 700b672 | 2009-04-07 15:37:16 +0000 | [diff] [blame] | 1150 | .notify = acpi_fujitsu_notify, |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1151 | }, |
| 1152 | }; |
| 1153 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1154 | static const struct acpi_device_id fujitsu_hotkey_device_ids[] = { |
| 1155 | {ACPI_FUJITSU_HOTKEY_HID, 0}, |
| 1156 | {"", 0}, |
| 1157 | }; |
| 1158 | |
| 1159 | static struct acpi_driver acpi_fujitsu_hotkey_driver = { |
| 1160 | .name = ACPI_FUJITSU_HOTKEY_DRIVER_NAME, |
| 1161 | .class = ACPI_FUJITSU_CLASS, |
| 1162 | .ids = fujitsu_hotkey_device_ids, |
| 1163 | .ops = { |
| 1164 | .add = acpi_fujitsu_hotkey_add, |
| 1165 | .remove = acpi_fujitsu_hotkey_remove, |
Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 1166 | .notify = acpi_fujitsu_hotkey_notify, |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1167 | }, |
| 1168 | }; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1169 | |
Zhang Rui | 4990141 | 2014-09-09 00:21:59 +0200 | [diff] [blame] | 1170 | static const struct acpi_device_id fujitsu_ids[] __used = { |
| 1171 | {ACPI_FUJITSU_HID, 0}, |
| 1172 | {ACPI_FUJITSU_HOTKEY_HID, 0}, |
| 1173 | {"", 0} |
| 1174 | }; |
| 1175 | MODULE_DEVICE_TABLE(acpi, fujitsu_ids); |
| 1176 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1177 | static int __init fujitsu_init(void) |
| 1178 | { |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1179 | int ret, result, max_brightness; |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1180 | |
| 1181 | if (acpi_disabled) |
| 1182 | return -ENODEV; |
| 1183 | |
Julia Lawall | 6c75dd0 | 2010-05-13 22:06:20 +0200 | [diff] [blame] | 1184 | fujitsu = kzalloc(sizeof(struct fujitsu_t), GFP_KERNEL); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1185 | if (!fujitsu) |
| 1186 | return -ENOMEM; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1187 | fujitsu->keycode1 = KEY_PROG1; |
| 1188 | fujitsu->keycode2 = KEY_PROG2; |
| 1189 | fujitsu->keycode3 = KEY_PROG3; |
| 1190 | fujitsu->keycode4 = KEY_PROG4; |
Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 1191 | fujitsu->keycode5 = KEY_RFKILL; |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1192 | dmi_check_system(fujitsu_dmi_table); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1193 | |
| 1194 | result = acpi_bus_register_driver(&acpi_fujitsu_driver); |
| 1195 | if (result < 0) { |
| 1196 | ret = -ENODEV; |
| 1197 | goto fail_acpi; |
| 1198 | } |
| 1199 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1200 | /* Register platform stuff */ |
| 1201 | |
| 1202 | fujitsu->pf_device = platform_device_alloc("fujitsu-laptop", -1); |
| 1203 | if (!fujitsu->pf_device) { |
| 1204 | ret = -ENOMEM; |
| 1205 | goto fail_platform_driver; |
| 1206 | } |
| 1207 | |
| 1208 | ret = platform_device_add(fujitsu->pf_device); |
| 1209 | if (ret) |
| 1210 | goto fail_platform_device1; |
| 1211 | |
| 1212 | ret = |
| 1213 | sysfs_create_group(&fujitsu->pf_device->dev.kobj, |
| 1214 | &fujitsupf_attribute_group); |
| 1215 | if (ret) |
| 1216 | goto fail_platform_device2; |
| 1217 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1218 | /* Register backlight stuff */ |
| 1219 | |
Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 1220 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1221 | struct backlight_properties props; |
| 1222 | |
| 1223 | memset(&props, 0, sizeof(struct backlight_properties)); |
| 1224 | max_brightness = fujitsu->max_brightness; |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 1225 | props.type = BACKLIGHT_PLATFORM; |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1226 | props.max_brightness = max_brightness - 1; |
| 1227 | fujitsu->bl_device = backlight_device_register("fujitsu-laptop", |
| 1228 | NULL, NULL, |
| 1229 | &fujitsubl_ops, |
| 1230 | &props); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1231 | if (IS_ERR(fujitsu->bl_device)) { |
| 1232 | ret = PTR_ERR(fujitsu->bl_device); |
| 1233 | fujitsu->bl_device = NULL; |
| 1234 | goto fail_sysfs_group; |
| 1235 | } |
Thomas Renninger | 7d5c89a | 2008-08-01 17:38:00 +0200 | [diff] [blame] | 1236 | fujitsu->bl_device->props.brightness = fujitsu->brightness_level; |
| 1237 | } |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1238 | |
| 1239 | ret = platform_driver_register(&fujitsupf_driver); |
| 1240 | if (ret) |
| 1241 | goto fail_backlight; |
| 1242 | |
| 1243 | /* Register hotkey driver */ |
| 1244 | |
Julia Lawall | 6c75dd0 | 2010-05-13 22:06:20 +0200 | [diff] [blame] | 1245 | fujitsu_hotkey = kzalloc(sizeof(struct fujitsu_hotkey_t), GFP_KERNEL); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1246 | if (!fujitsu_hotkey) { |
| 1247 | ret = -ENOMEM; |
| 1248 | goto fail_hotkey; |
| 1249 | } |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1250 | |
| 1251 | result = acpi_bus_register_driver(&acpi_fujitsu_hotkey_driver); |
| 1252 | if (result < 0) { |
| 1253 | ret = -ENODEV; |
| 1254 | goto fail_hotkey1; |
| 1255 | } |
| 1256 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1257 | /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */ |
Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 1258 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1259 | if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3) |
Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 1260 | fujitsu->bl_device->props.power = FB_BLANK_POWERDOWN; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1261 | else |
Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 1262 | fujitsu->bl_device->props.power = FB_BLANK_UNBLANK; |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1263 | } |
| 1264 | |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 1265 | pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n"); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1266 | |
| 1267 | return 0; |
| 1268 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1269 | fail_hotkey1: |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1270 | kfree(fujitsu_hotkey); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1271 | fail_hotkey: |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1272 | platform_driver_unregister(&fujitsupf_driver); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1273 | fail_backlight: |
Markus Elfring | 0098181 | 2014-11-24 20:30:29 +0100 | [diff] [blame] | 1274 | backlight_device_unregister(fujitsu->bl_device); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1275 | fail_sysfs_group: |
| 1276 | sysfs_remove_group(&fujitsu->pf_device->dev.kobj, |
| 1277 | &fujitsupf_attribute_group); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1278 | fail_platform_device2: |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1279 | platform_device_del(fujitsu->pf_device); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1280 | fail_platform_device1: |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1281 | platform_device_put(fujitsu->pf_device); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1282 | fail_platform_driver: |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1283 | acpi_bus_unregister_driver(&acpi_fujitsu_driver); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1284 | fail_acpi: |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1285 | kfree(fujitsu); |
| 1286 | |
| 1287 | return ret; |
| 1288 | } |
| 1289 | |
| 1290 | static void __exit fujitsu_cleanup(void) |
| 1291 | { |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1292 | acpi_bus_unregister_driver(&acpi_fujitsu_hotkey_driver); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1293 | |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1294 | kfree(fujitsu_hotkey); |
| 1295 | |
| 1296 | platform_driver_unregister(&fujitsupf_driver); |
| 1297 | |
Markus Elfring | 0098181 | 2014-11-24 20:30:29 +0100 | [diff] [blame] | 1298 | backlight_device_unregister(fujitsu->bl_device); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1299 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1300 | sysfs_remove_group(&fujitsu->pf_device->dev.kobj, |
| 1301 | &fujitsupf_attribute_group); |
Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1302 | |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1303 | platform_device_unregister(fujitsu->pf_device); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1304 | |
| 1305 | acpi_bus_unregister_driver(&acpi_fujitsu_driver); |
| 1306 | |
| 1307 | kfree(fujitsu); |
| 1308 | |
Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 1309 | pr_info("driver unloaded\n"); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | module_init(fujitsu_init); |
| 1313 | module_exit(fujitsu_cleanup); |
| 1314 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1315 | module_param(use_alt_lcd_levels, uint, 0644); |
| 1316 | MODULE_PARM_DESC(use_alt_lcd_levels, |
| 1317 | "Use alternative interface for lcd_levels (needed for Lifebook s6410)."); |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1318 | module_param(disable_brightness_adjust, uint, 0644); |
| 1319 | MODULE_PARM_DESC(disable_brightness_adjust, "Disable brightness adjustment ."); |
| 1320 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 1321 | module_param_named(debug, dbg_level, uint, 0644); |
| 1322 | MODULE_PARM_DESC(debug, "Sets debug level bit-mask"); |
| 1323 | #endif |
| 1324 | |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1325 | MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon"); |
Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1326 | MODULE_DESCRIPTION("Fujitsu laptop extras support"); |
| 1327 | MODULE_VERSION(FUJITSU_DRIVER_VERSION); |
| 1328 | MODULE_LICENSE("GPL"); |
Dan Williams | a361a82 | 2008-06-05 22:46:08 -0700 | [diff] [blame] | 1329 | |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1330 | MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1D3:*:cvrS6410:*"); |
Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1331 | MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1E6:*:cvrS6420:*"); |
Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1332 | MODULE_ALIAS("dmi:*:svnFUJITSU:*:pvr:rvnFUJITSU:rnFJNB19C:*:cvrS7020:*"); |